mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 10:33:27 +08:00
Remove multinode related GUC
Leftover GUC `ts_guc_max_insert_batch_size` from multinode removal.
This commit is contained in:
parent
1dc3efe17f
commit
a4bd6f171b
18
src/guc.c
18
src/guc.c
@ -87,7 +87,6 @@ char *ts_telemetry_cloud = NULL;
|
||||
TSDLLEXPORT char *ts_guc_license = TS_LICENSE_DEFAULT;
|
||||
char *ts_last_tune_time = NULL;
|
||||
char *ts_last_tune_version = NULL;
|
||||
TSDLLEXPORT int ts_guc_max_insert_batch_size = 1000;
|
||||
|
||||
bool ts_guc_debug_require_batch_sorted_merge = false;
|
||||
|
||||
@ -450,23 +449,6 @@ _guc_init(void)
|
||||
NULL,
|
||||
NULL);
|
||||
|
||||
DefineCustomIntVariable("timescaledb.max_insert_batch_size",
|
||||
"The max number of tuples to batch before sending to a data node",
|
||||
"When acting as a access node, TimescaleDB splits batches of "
|
||||
"inserted tuples across multiple data nodes. It will batch up to the "
|
||||
"configured batch size tuples per data node before flushing. "
|
||||
"Setting this to 0 disables batching, reverting to tuple-by-tuple "
|
||||
"inserts",
|
||||
&ts_guc_max_insert_batch_size,
|
||||
1000,
|
||||
0,
|
||||
65536,
|
||||
PGC_USERSET,
|
||||
0,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL);
|
||||
|
||||
DefineCustomBoolVariable("timescaledb.enable_async_append",
|
||||
"Enable async query execution on data nodes",
|
||||
"Enable optimization that runs remote queries asynchronously"
|
||||
|
@ -56,7 +56,6 @@ extern TSDLLEXPORT char *ts_guc_license;
|
||||
extern char *ts_last_tune_time;
|
||||
extern char *ts_last_tune_version;
|
||||
extern TSDLLEXPORT bool ts_guc_enable_2pc;
|
||||
extern TSDLLEXPORT int ts_guc_max_insert_batch_size;
|
||||
extern TSDLLEXPORT bool ts_guc_enable_compression_indexscan;
|
||||
extern TSDLLEXPORT bool ts_guc_enable_bulk_decompression;
|
||||
extern TSDLLEXPORT int ts_guc_bgw_log_level;
|
||||
|
Loading…
x
Reference in New Issue
Block a user