Hi,
We have a large dataset containing more than 10,000 timeseries, and we are working on creating multiple subscriptions to accommodate them but again that can also be having 10k timeseries in sometime. Currently, we are using metadata with a specific property match as one of our filters, given that this metadata could also apply to 10,000 timeseries. we are considering adding a new filter based on createdTime. This would automatically include timeseries added after a specific time to a new subscription, avoiding the need to create new subscriptions manually.
Here is the filter we attempted to use:
"filter": {
"and": :
{
"equals": {
"property": p"dataSetId"],
"value": "12346576588"
}
},
{
"range": {
"property": b"createdTime"],
"gte": 1719513000000
}
}
]
}
We encountered an internal server error (request ID: b45316a2-07ac-9ec8-986f-75bd66d698e4) .
Tried with creating createdTime as metadata as well, suspect there might be a limitation with the range filter on createdTime if we add in metadata filter.
Could you please advise on the correct way to add a createdTime filter in the subscription, or if you can suggest an alternative method to ensure new timeseries are automatically included in new subscriptions once the 10,000 limit is reached in one subscription?