I have a long running query. The query just copies data from 1 table into another table.
So no data is actually transferred to the client and no data is being sent besides the initial query.
This can take longer than 5 minutes.
This works fine in the normal builtin cpp clickhouse-client and finishes after ~10-20mins
But in this client that makes use of the http API I cannot get past 5 minutes.
In Statement.php line 190:
[ClickHouseDB\Exception\QueryException (28)]
Operation timed out after 300000 milliseconds with 0 bytes received
I have set every setting imaginable on the client.
I have a long running query. The query just copies data from 1 table into another table. So no data is actually transferred to the client and no data is being sent besides the initial query.
This can take longer than 5 minutes. This works fine in the normal builtin cpp clickhouse-client and finishes after ~10-20mins
But in this client that makes use of the http API I cannot get past 5 minutes.
I have set every setting imaginable on the client.
Is there something I'm missing? Maybe some hard limit somewhere?