IF EXISTS t; DROP TABLE IF EXISTS t_mv; create table t (a UInt64) Engine = Null; create materialized view t_mv Engine = Null AS select now() as ts, max(a) from t group by ts; insert into t select * from numbers_mt(3000000000) settings max_threads = 16, max_insert_threads=...
Hello, sorry but how can I configure the max_insert_threads option. From what I have been able to look with this library there is no option to put this option.Collaborator den-crane commented Nov 8, 2021 see #704 (comment) Author Lucgarg commented Nov 10, 2021 Thanks Lucgarg closed...
Alias for max_delayed_threads. Don't start more than this number of threads to handle INSERT DELAYED statements. If set to zero INSERT DELAYED will be not used In 10.6 ES, 10.6 CS, 10.5 ES, 10.5 CS, 10.4 ES, 10.4 CS, 10.3 ES, 10.3 CS, 10.2 ES, 10.2 CS: Don't start more than...