azure-event-hubs-spark
azure-event-hubs-spark copied to clipboard
Migrating connector to use azure-messaging-eventhubs (new recommended client library from Azure SDK)
Connector is currently using azure client library:
azure-eventhubs
that it seems to be deprecated and should be substituted by:
azure-messaging-eventhubs
according to Microsoft Azure SDK guidelines.
Is there a plan to migrate to the new client library for the connector ?
azure-messaging-eventhubs is for .Net.
For Java (which is the case of this connector), it stills azure-eventhubs https://learn.microsoft.com/en-us/java/api/com.microsoft.azure.eventhubs?view=azure-java-stable
But indeed, your right, It seems that documentation for Java is also not up to date: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/eventhubs/azure-messaging-eventhubs
Just confirming that the new library to use is azure-messaging-eventhubs and the Azure docs can be found here.
The docs for the older library are also still available here, but as evidenced by the Maven repo, it is only receiving critical support.
Is there an indication of whether this migration is planned in the near future?