azure-data-exploreradx

Partition an unpartitioned table in ADX


I have a table where we don't have a partition policy. Data is ordered based on the ingestion time. When I went through this blob post https://yonileibowitz.github.io/blog-posts/data-partitioning.html#backfill-or-unordered-ingestion I realized overriding this policy will solve a lot of problems which I am facing now. In my case i have table lets call it as RAW_INOMING_DATA its fields are T-> Time stamp of the packet, DATA -> Raw data generated at the time T. Now I need to override the partition in this table so that I can make T as the Ingestion_Time. How to achieve that?


Solution