Failure when registering EventProcessorHost

984 Views Asked by At

I am trying to use EventProcessorHost to consume messages from eventhub in JAVA. Followed steps which are given here1 and here2 but when I run code I am getting below error..

Registering host named <name>

Failure while registering: java.util.concurrent.ExecutionException: com.microsoft.azure.storage.StorageException: The client could not finish the operation within specified maximum execution timeout.
    Press enter to stop

More details:

  1. Created new storage account as mentioned in blog and also created blob.

  2. EventProcessor class and ErrorNotificationHandler class are exactly as mentioned on Microsoft docs.

  3. Code which calls register is as below...

    final String consumerGroupName = "test";
    final String namespaceName = "--namespace--";
    final String eventHubName = "--eventhub name --";
    final String sasKeyName = "--saskey name--";
    final String sasKey = "--sas-key";
    final String containerName = "--container name --";
    final String storageAccountName = "--storage account name --";
    final String storageAccountKey = "--storage -- account key--";
    final String connectionString = "--eventhub connection string copied from azure portal --";
    final String storageConString = "--storage connection string copied from azure portal --";
    
        EventProcessorHost host = new EventProcessorHost(
        namespaceName, // Also tried with full name <namespace name>.servicebus.windows.net
        eventHubName,
        consumerGroupName,
        connectionString,
        storageConString,
        containerName
        //        "<blobprefix>" Also tried with blob prefix
        );
    
        System.out.println("Registering host named " + host.getHostName());
        EventProcessorOptions options = new EventProcessorOptions();
        options.setReceiveTimeOut(Duration.ofMinutes(12 L));
        options.setExceptionNotification(new ErrorNotificationHandler());
    
        try {
    
        host.registerEventProcessor(EventProcessor.class, options).get(15, TimeUnit.MINUTES);
    
        } catch (Exception e) {
        System.out.print("Failure while registering: ");
        if (e instanceof ExecutionException) {
        Throwable inner = e.getCause();
        System.out.println(inner.toString());
        } else {
        System.out.println(e.toString());
        }
        }

Note: Blog has deprecated constructor for EventProcessorHost.

Searched for error online and what I could find is to increase the timeout for storage but not sure how can I prove specific timeout for storage in EventProcessorHost. Any help appreciated.

1

There are 1 best solutions below

3
On

I followed the official document to receive messages from event hub and it works well for me.

enter image description here

Messages were stored into Azure Blob Storage which I configured.

enter image description here

According to your description , the timeout Exception still occurred even though you set the ReceiveTimeOut to 12 mins in EventProcessorOptions. Per my experience , even if messages are received one by one, it can't take 12 minutes to do so long. And it's usually impossible for us to set the timeout so long in our application. So I think error is no longer from SDK level. It may be the network environment issue.

As I know , the Event Hub message send client uses the HTTP protocol and is won't be blocked by the firewall. The EPH message receive client uses the AMQP protocol which is essentially TCP protocol and is will restricted by proxy server settings or firewall. I assume your Eph client has no connection to Event hub.

I do not know your actual network environment,so I suggest you check your proxy settings or firewall white list to troubleshoot issues with the network environment.

Any concern , please let me know.