0

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?

1 Answer 1

2

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.

Sign up to request clarification or add additional context in comments.

2 Comments

Yes, it should exist. If you would like to skip events that don't have those properties, then you can set output error policy to be true. Events which are bad will be skipped.
Just found an article this stuff clearly !! simple-talk.com/cloud/cloud-data/…

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.