Reputation: 1400
I want to write stream analytics output to Azure Tabale. I wrote below query for it:
Select * into azuretable from datasource;
But I cannot see data in table. Any pointers?
Upvotes: 0
Views: 130
Reputation: 1400
I figured it out. Problem was in the values of partition key and row keys values. These values should be exists in your data model, in my case should be part of input of stream analytics. For example, if we put Row Key = Time and Partition Key = RecordId then Time and RecordId should be valid properties present in input data model.
Upvotes: 2