-- rebalance_table_shards uses the shard rebalancer's C UDF functions to rebalance -- shards of the given relation. -- DROP FUNCTION pg_catalog.rebalance_table_shards; CREATE OR REPLACE FUNCTION pg_catalog.rebalance_table_shards( relation regclass default NULL, threshold float4 default NULL, max_shard_moves int default 1000000, excluded_shard_list bigint[] default '{}', shard_transfer_mode citus.shard_transfer_mode default 'auto', drain_only boolean default false, rebalance_strategy name default NULL ) RETURNS VOID AS 'MODULE_PATHNAME' LANGUAGE C VOLATILE; COMMENT ON FUNCTION pg_catalog.rebalance_table_shards(regclass, float4, int, bigint[], citus.shard_transfer_mode, boolean, name) IS 'rebalance the shards of the given table across the worker nodes (including colocated shards of other tables)';