Closed amunra closed 7 months ago
The default for auto_flush_rows was incorrectly set to 600 (instead of 75000) when connecing over HTTPS (and not HTTP which was correct).
auto_flush_rows
This caused performance issues since small requests in HTTP are not very efficient.
This PR fixes the default and restores good performance using default settings when using HTTPs and auto-flushing.
A workaround in v2.0.1 before this PR is to set the auto_flush_rows setting to 75000 explicitly in the config string.
The default for
auto_flush_rows
was incorrectly set to 600 (instead of 75000) when connecing over HTTPS (and not HTTP which was correct).This caused performance issues since small requests in HTTP are not very efficient.
This PR fixes the default and restores good performance using default settings when using HTTPs and auto-flushing.
A workaround in v2.0.1 before this PR is to set the
auto_flush_rows
setting to 75000 explicitly in the config string.