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...