An Azure data analytics service for real-time analysis on large volumes of data streaming from sources including applications, websites, and internet of things devices.
Hello @Bexy Morgan ,
Extents (aka data shards) are a fundamental part of ADX, it tells you how data is stored for fast retrieval.
Please read this overview which is written in a pretty clear way.
One of the most important abilities of extents we use in our projects is 'tags'.
If we ingest batches of data (like files), we tag all records in this batch with the same unique tag (like the filename)
.ingest ... with @'{"tags":"["filename:abc123"]"}'
Now we can check if ingestion was successful because we can check for the tag.
We can also use tags to prevent double ingestion of the same data:
.set-or-append arraytestTarget with (ingestIfNotExists = '["onlyonce1"]', tags = '["ingest-by:onlyonce1"]') <| arraytest | where d == 'dev2'
I hope this gives some pointers on how to use extents. Please take some time to check the documentation.
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.