When I have a query that requests millions of series, I sometimes want to see only several samples out of the series. According to the document, the limit() function is supposed to be used for that purpose. However, the implementation seems different from what I expected. I do not want to send such a large number of queries to Cassandra to get only several samples. Can we optimize the limit() function's implementation a little bit?
When I have a query that requests millions of series, I sometimes want to see only several samples out of the series. According to the document, the
limit()function is supposed to be used for that purpose. However, the implementation seems different from what I expected. I do not want to send such a large number of queries to Cassandra to get only several samples. Can we optimize thelimit()function's implementation a little bit?