Search code examples
azureazure-data-factoryazureservicebusazure-data-lakeazure-eventhub

Is it possible to send messages to an Azure Service Bus Queue or Event Hub from a U-SQL script?


Is it possible for an Azure U-SQL script to put messages on an Azure Service Bus Queue or an Azure Event Hub? Please cite some documentation, if you can find it (since I can't find it).


Solution

  • As stated, this is not allowed.

    A possible workaround would be to have the u-sql script output a file with messages to blob storage and have an azure function pick those up and send them to an Azure Service Bus Queue or an Azure Event Hub.