Answer by stimms for azure stream analytics to cosmos db
I had this problem also. Although it isn't clear in the UI only the SQL API for CosmosDB is currently supported. I switched over to that and everything worked fantastically.
View ArticleAnswer by Manimaran Samuthirapandi for azure stream analytics to cosmos db
Try with SELECT concat(deviceId, cloudtagId) as telemetryid, value as temperature, id, deviceId, 'asd' as 'pk', deviceId as PartitionKey INTO [TableApiCosmosDb] From [devicesMessages] The Special char...
View ArticleAnswer by Jean-Sébastien for azure stream analytics to cosmos db
Unfortunately the Table API from CosmosDB is not supported yet as output sink for ASA. If want to use Table as output, you can use the one under Storage Account. Sorry for the inconvenience. We will...
View Articleazure stream analytics to cosmos db
I have a trouble saving telemetry that are coming from Azure IoT hub to Cosmos DB. I have the following setup: IoT Hub - for events aggregation Azure Stream Analytics - for event stream processing...
View Article