Hello @Bexy Morgan ,
adding tags is done right at the moment of ingestion (although appending this, later on, is also possible but a bit harder).
Here is an example. I do it in two steps:
The first run:
.ingest inline into table t1 with (tags = '["run:1"]') <|
2010-01-01,NY,Flight,Premium
2010-01-02,Boston,Train,Economy
2010-01-02,NY,Flight,Business
2010-01-02,Boston,Bus,Business
The second run:
.ingest inline into table t1 with (tags = '["run:2"]') <|
2010-01-01T00:00:00Z,SF,Cruise,Premium
Two extents are created, the same way you have experienced it.
You can check for the tags with either 'contains':
Or you can check it individual ones with 'has':
Now you have control over the tags during creation of records.
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.