Replies: 2 comments 8 replies
-
Thanks for you interest, currently we are working on speeding up point query like yours, and hope to release in a few weeks. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a case where I need to monitor the current, voltage of 1 million devices, each device sends data approximately every 1 minute, I want to know the average voltage, average current, maximum voltage,maximum current and other indicators of each device in the 5-30 minute time window .
The data structure of the device is:
I'm doing it now in the following steps:
select * from myview where dev_id=100;
The current running situation is that when I am checking the statistics of a certain device, the query speed is very slow, sometimes reaching nearly 10 minutes. I would like to ask if you have a better solution. Welcome to discuss together, very grateful!
Beta Was this translation helpful? Give feedback.
All reactions