How Do I Use GeminiDB Influx Hints?
GeminiDB Influx supports hints, improving query performance. Hints can be used only when you need to specify a value for each tag in a query statement. To use hints, add /*+ full_series */ before an SQL statement.
For example:
A common query statement is as follows:
select value from cpu where server_id=1;
If a hint is used, the corresponding syntax is:
select /*+ full_series */ value from cpu where server_id=1;
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.