I have 2 big measurements with 40+ fields. We want to filter based on these fields with approx 20 fields filter at a time. I did not find any good way to achieve this, hence I have created 2 measurements with these attributes as fields.
One measurement has data in milliseconds and another has it in minutes. It’s not possible to join it as there is no left join.
This is very simple with left join and fill previous. I am clueless here.
Hello @Bhoomi_Desai,
Are you still having problems with mass filtering? Have you considered using regex?
As for joining based on different timestamp precision, I believe you can try using aggregateWindow() or window() function to change the precision of your data before using a join.
Here’s an example of converting my cpu data to s precision.
My left-hand side measurement has more data points, I want to do a join by time, and use “previous” values for the missing values of right measurements. Is it possible?