Search code examples
azureazure-data-factoryazure-queues

Moving Messages from Azure Queues to Database


I'm a newbie to Azure . So far been successful in developing a couple of functions that has been able to do the following

  1. Trigger a function when a message arrives in Queue
  2. Response received by function stored in a Queue

Now I know that I can read these messages from the queue with a programming SDK like with Python or .net . However I'd like to figure out if it is possible to do an ETL with Azure Data Factory to directly consume the messages instead of another function scanning through the queue ?


Solution

  • Data Factory doesn't support Queue(Storage queue or Service Bus Queue) as Data store for now. Please ref: Azure Data Factory connector overview

    That means that we can not copy the Queue message directly with Data Factory.

    Hope this helps.