mirror of https://github.com/citusdata/citus.git
32 lines
967 B
PL/PgSQL
32 lines
967 B
PL/PgSQL
CREATE SCHEMA upgrade_rebalance_strategy;
|
|
SET search_path TO upgrade_rebalance_strategy, public;
|
|
|
|
-- The following function signatures should always keep working
|
|
CREATE FUNCTION shard_cost_2(bigint)
|
|
RETURNS float4 AS $$ SELECT 2.0::float4 $$ LANGUAGE sql;
|
|
|
|
CREATE FUNCTION capacity_high_worker_1(nodeidarg int)
|
|
RETURNS real AS $$
|
|
SELECT
|
|
(CASE WHEN nodeport = 57637 THEN 1000 ELSE 1 END)::real
|
|
FROM pg_dist_node where nodeid = nodeidarg
|
|
$$ LANGUAGE sql;
|
|
|
|
CREATE FUNCTION only_worker_2(shardid bigint, nodeidarg int)
|
|
RETURNS boolean AS $$
|
|
SELECT
|
|
(CASE WHEN nodeport = 57638 THEN TRUE ELSE FALSE END)
|
|
FROM pg_dist_node where nodeid = nodeidarg
|
|
$$ LANGUAGE sql;
|
|
|
|
SELECT citus_add_rebalance_strategy(
|
|
'custom_strategy',
|
|
'shard_cost_2',
|
|
'capacity_high_worker_1',
|
|
'only_worker_2',
|
|
0.5,
|
|
0.2,
|
|
0.3
|
|
);
|
|
SELECT citus_set_default_rebalance_strategy('custom_strategy');
|