You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fallback to the blocks queryable if vertical sharding is enabled (#6764)
* Fallback to the blocks queryable if vertical sharding is enabled
Signed-off-by: alanprot <alanprot@gmail.com>
* update parquet common
Signed-off-by: alanprot <alanprot@gmail.com>
* Opening parquet files in parallel
Signed-off-by: alanprot <alanprot@gmail.com>
* pulling parquet common again
Signed-off-by: alanprot <alanprot@gmail.com>
* comments
Signed-off-by: alanprot <alanprot@gmail.com>
* enable opmistic readers
Signed-off-by: alanprot <alanprot@gmail.com>
* creating the base converter options only 1 time
Signed-off-by: alanprot <alanprot@gmail.com>
* Removing fallback test when vertical sharding is enable for get labels and values
Signed-off-by: alanprot <alanprot@gmail.com>
* lint
Signed-off-by: alanprot <alanprot@gmail.com>
* update parquet common once again
Signed-off-by: alanprot <alanprot@gmail.com>
---------
Signed-off-by: alanprot <alanprot@gmail.com>
f.StringVar(&cfg.DataDir, "parquet-converter.data-dir", "./data", "Data directory in which to cache blocks and process conversions.")
87
93
f.IntVar(&cfg.MetaSyncConcurrency, "parquet-converter.meta-sync-concurrency", 20, "Number of Go routines to use when syncing block meta files from the long term storage.")
94
+
f.IntVar(&cfg.MaxRowsPerRowGroup, "parquet-converter.max-rows-per-row-group", 1e6, "Max number of rows per parquet row group.")
88
95
f.DurationVar(&cfg.ConversionInterval, "parquet-converter.conversion-interval", time.Minute, "The frequency at which the conversion job runs.")
96
+
f.BoolVar(&cfg.FileBufferEnabled, "parquet-converter.file-buffer-enabled", true, "Whether to enable buffering the writes in disk to reduce memory utilization.")
0 commit comments