In Azure Eventhub reciever giving “Encountered error while fetching the list of EventHub PartitionIds” error

后端 未结 3 1248
[愿得一人]
[愿得一人] 2021-01-15 00:28

I am trying to implement the receiver part as per the tutorial

https://azure.microsoft.com/en-us/documentation/articles/event-hubs-java-ephjava-getstarted/

3条回答
  •  长发绾君心
    2021-01-15 00:53

    Ideally - EPH should work with "Listen"-only Claims. Right now we have a bug in EventProcessorHost client-code as a result of which - it needs "Manage" claims. We are working on it.

    The error "Encountered error while fetching the list of EventHub PartitionIds" is generic and Thrown at PartitionManager, while querying for Partitions. You ran into one of the exceptions in the below catch block. Please indicate inner-exception for completeness (SEO) & faster resolution.

    catch(XPathExpressionException|ParserConfigurationException|IOException|InvalidKeyException|NoSuchAlgorithmException|URISyntaxException|SAXException exception)
    {
        throw new EPHConfigurationException("Encountered error while fetching the list of EventHub PartitionIds", exception);
    }
    

    EDIT:

    this issue is fixed in version 0.7.7.

提交回复
热议问题