Can Azure Stream Analytics Integrate with Azure App Configuration?

Amie Barkes 61 Reputation points
2023-04-11T15:16:20.4933333+00:00

Can Azure Stream Analytics Integrate with Azure App Configuration?

Azure App Configuration
Azure App Configuration
An Azure service that provides hosted, universal storage for Azure app configurations.
214 questions
Azure Stream Analytics
Azure Stream Analytics
An Azure real-time analytics service designed for mission-critical workloads.
342 questions
0 comments No comments
{count} votes

Accepted answer
  1. Fabricio Godoy 2,611 Reputation points
    2023-04-11T16:30:51.2266667+00:00
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Sander van de Velde | MVP 30,866 Reputation points MVP
    2023-04-11T21:53:11.68+00:00

    Hello @Amie Barkes , Azure Stream Analytics outputs events to several kinds of outputs:User's image

    as seen here. You want to integrate with Azure App configuration. I think you want to ingest these events using the controller of your website. This means your controller needs to listen to incoming messages. To do this, you need to ASA messages into something the controller can pick up. I would suggest checking out Azure SignalR or Azure PubSub. This means something like this (with signalR):

    ASA Azure Function output -> Azure Function with SignalR call -> SignalR service <- Web app controller subscribed to SignalR messages 
    

    An older example of this solution can be found here. If the response helped, do "Accept Answer". If it doesn't work, please let us know the progress. All community members with similar issues will benefit by doing so. Your contribution is highly appreciated.

    0 comments No comments