mirror of https://github.com/citusdata/citus.git
22 lines
551 B
Plaintext
22 lines
551 B
Plaintext
ALTER SYSTEM SET citus.enable_metadata_sync TO ON;
|
|
SELECT pg_reload_conf();
|
|
pg_reload_conf
|
|
---------------------------------------------------------------------
|
|
t
|
|
(1 row)
|
|
|
|
SELECT pg_sleep(0.1);
|
|
pg_sleep
|
|
---------------------------------------------------------------------
|
|
|
|
(1 row)
|
|
|
|
SET client_min_messages TO ERROR;
|
|
SELECT start_metadata_sync_to_node(nodename, nodeport) FROM pg_dist_node WHERE isactive = 't' and noderole = 'primary';
|
|
start_metadata_sync_to_node
|
|
---------------------------------------------------------------------
|
|
|
|
|
|
(2 rows)
|
|
|