Hello everyone,
I’m currently working with InfluxDB 3 and encountering an issue when trying to count the total number of rows in a table.
When I run a simple query like:
SELECT count(filed) FROM my_table;
I get the following error:
query error: error while planning query: External error: Query would exceed file limit of 432 parquet files.
It seems the query is being blocked due to a file number limit when scanning through Parquet files.
My main questions are:
Has anyone faced a similar issue with InfluxDB 3 when performing aggregate queries like COUNT on larger tables? What does this limit mean?
If this method can’t be used to get the total row count, what is the recommended or alternative way to query the total number of records in a table in InfluxDB 3?
Any insights or workarounds would be greatly appreciated!
