Could someone clarify me ,whether Azure Service Bus queues cab be accessed using this API or not? Please Suggest the relevant doc
Could someone clarify me ,whether Azure Service Bus queues cab be accessed using this API or not? Please Suggest the relevant doc
Note , I would like to connect to Azure Servicee Bus Queues not EEventhub with a topic
Just to make sure I understand correctly, you are trying to read from Event Hubs using the Spark Streaming API and write to a Service Bus Topic?
No . I just want to read events from Azure Service Bus using structured streaming
Looks like there is no readily available connector likely since Service Bus is not designed with this in mind, unlike Event Hubs. But it should be possible to write your own receiver (like this one).
Another alternative would be to immediately forward messages from Service Bus to a compatible source like Event Hubs using something simple like Azure Functions.
Is it possible to write structured streaming output to Azure Service Bus. If yes, please let me know how to achieve this. Thanks!
anonymous user Like my answer mentions, it should be possible but has to be implemented and a connector is not readily available to just use.
3 people are following this question.