mirror of https://github.com/citusdata/citus.git
565 lines
22 KiB
Plaintext
565 lines
22 KiB
Plaintext
--
|
|
-- MULTI CITUS TOOLS
|
|
--
|
|
-- tests UDFs created for citus tools
|
|
--
|
|
ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 1240000;
|
|
ALTER SEQUENCE pg_catalog.pg_dist_jobid_seq RESTART 1240000;
|
|
-- test with invalid port, prevent OS dependent warning from being displayed
|
|
SET client_min_messages to ERROR;
|
|
-- PG 9.5 does not show context for plpgsql raise
|
|
-- message whereas PG 9.6 shows. disabling it
|
|
-- for this test only to have consistent behavior
|
|
-- b/w PG 9.6+ and PG 9.5.
|
|
\set SHOW_CONTEXT never
|
|
SELECT * FROM master_run_on_worker(ARRAY['localhost']::text[], ARRAY['666']::int[],
|
|
ARRAY['select count(*) from pg_dist_shard']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------------------------------
|
|
localhost | 666 | f | failed to connect to localhost:666
|
|
(1 row)
|
|
|
|
SELECT * FROM master_run_on_worker(ARRAY['localhost']::text[], ARRAY['666']::int[],
|
|
ARRAY['select count(*) from pg_dist_shard']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------------------------------
|
|
localhost | 666 | f | failed to connect to localhost:666
|
|
(1 row)
|
|
|
|
RESET client_min_messages;
|
|
-- store worker node name and port
|
|
SELECT quote_literal(node_name) as node_name, node_port as node_port
|
|
FROM master_get_active_worker_nodes()
|
|
ORDER BY node_port
|
|
LIMIT 1 \gset
|
|
-- connect to the first worker and ask for shard count, should return 0
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select count(*) from pg_dist_shard']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------
|
|
localhost | 57637 | t | 0
|
|
(1 row)
|
|
|
|
-- connect to the first worker and ask for shards, should fail with
|
|
-- expecting a single column error
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select * from pg_dist_shard']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------------------------------------
|
|
localhost | 57637 | f | expected a single column in query target
|
|
(1 row)
|
|
|
|
-- query result may only contain a single row
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select a from generate_series(1,2) a']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+---------------------------------------
|
|
localhost | 57637 | f | expected a single row in query result
|
|
(1 row)
|
|
|
|
|
|
-- send multiple queries
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name, :node_name]::text[],
|
|
ARRAY[:node_port, :node_port]::int[],
|
|
ARRAY['select a from generate_series(1,1) a',
|
|
'select a from generate_series(2,2) a']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------
|
|
localhost | 57637 | t | 1
|
|
localhost | 57637 | t | 2
|
|
(2 rows)
|
|
|
|
-- send multiple queries, one fails
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name, :node_name]::text[],
|
|
ARRAY[:node_port, :node_port]::int[],
|
|
ARRAY['select a from generate_series(1,1) a',
|
|
'select a from generate_series(1,2) a']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+---------------------------------------
|
|
localhost | 57637 | t | 1
|
|
localhost | 57637 | f | expected a single row in query result
|
|
(2 rows)
|
|
|
|
-- send multiple queries, both fail
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name, :node_name]::text[],
|
|
ARRAY[:node_port, :node_port]::int[],
|
|
ARRAY['select a from generate_series(1,2) a',
|
|
'select a from generate_series(1,2) a']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+---------------------------------------
|
|
localhost | 57637 | f | expected a single row in query result
|
|
localhost | 57637 | f | expected a single row in query result
|
|
(2 rows)
|
|
|
|
-- can create tables at worker
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name, :node_name]::text[],
|
|
ARRAY[:node_port, :node_port]::int[],
|
|
ARRAY['create table first_table(a int, b int)',
|
|
'create table second_table(a int, b int)']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------------
|
|
localhost | 57637 | t | CREATE TABLE
|
|
localhost | 57637 | t | CREATE TABLE
|
|
(2 rows)
|
|
|
|
-- can insert into table
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['insert into first_table select a,a from generate_series(1,20) a']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+-------------
|
|
localhost | 57637 | t | INSERT 0 20
|
|
(1 row)
|
|
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select count(*) from first_table']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------
|
|
localhost | 57637 | t | 20
|
|
(1 row)
|
|
|
|
-- insert into second table twice
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['insert into second_table select * from first_table']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+-------------
|
|
localhost | 57637 | t | INSERT 0 20
|
|
(1 row)
|
|
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['insert into second_table select * from first_table']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+-------------
|
|
localhost | 57637 | t | INSERT 0 20
|
|
(1 row)
|
|
|
|
-- check inserted values at second table
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select count(*) from second_table']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------
|
|
localhost | 57637 | t | 40
|
|
(1 row)
|
|
|
|
-- store worker node name and port again
|
|
-- previously set variables become unusable after some number of uses
|
|
SELECT quote_literal(node_name) as node_name, node_port as node_port
|
|
FROM master_get_active_worker_nodes()
|
|
ORDER BY node_port
|
|
LIMIT 1 \gset
|
|
-- create index on tables
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['create index first_table_index on first_table(a)']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------------
|
|
localhost | 57637 | t | CREATE INDEX
|
|
(1 row)
|
|
|
|
-- drop created tables
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['drop table first_table']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------
|
|
localhost | 57637 | t | DROP TABLE
|
|
(1 row)
|
|
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['drop table second_table']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------
|
|
localhost | 57637 | t | DROP TABLE
|
|
(1 row)
|
|
|
|
|
|
-- verify table is dropped
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select count(*) from second_table']::text[],
|
|
false);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------------------------------------------
|
|
localhost | 57637 | f | ERROR: relation "second_table" does not exist
|
|
(1 row)
|
|
|
|
--
|
|
-- Run the same tests in parallel
|
|
--
|
|
-- connect to the first worker and ask for shard count, should return 0
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select count(*) from pg_dist_shard']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------
|
|
localhost | 57637 | t | 0
|
|
(1 row)
|
|
|
|
-- connect to the first worker and ask for shards, should fail with
|
|
-- expecting a single column error
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select * from pg_dist_shard']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------------------------------------
|
|
localhost | 57637 | f | expected a single column in query target
|
|
(1 row)
|
|
|
|
-- query result may only contain a single row
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select a from generate_series(1,2) a']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+---------------------------------------
|
|
localhost | 57637 | f | expected a single row in query result
|
|
(1 row)
|
|
|
|
|
|
-- send multiple queries
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name, :node_name]::text[],
|
|
ARRAY[:node_port, :node_port]::int[],
|
|
ARRAY['select a from generate_series(1,1) a',
|
|
'select a from generate_series(2,2) a']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------
|
|
localhost | 57637 | t | 1
|
|
localhost | 57637 | t | 2
|
|
(2 rows)
|
|
|
|
-- send multiple queries, one fails
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name, :node_name]::text[],
|
|
ARRAY[:node_port, :node_port]::int[],
|
|
ARRAY['select a from generate_series(1,1) a',
|
|
'select a from generate_series(1,2) a']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+---------------------------------------
|
|
localhost | 57637 | t | 1
|
|
localhost | 57637 | f | expected a single row in query result
|
|
(2 rows)
|
|
|
|
-- send multiple queries, both fail
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name, :node_name]::text[],
|
|
ARRAY[:node_port, :node_port]::int[],
|
|
ARRAY['select a from generate_series(1,2) a',
|
|
'select a from generate_series(1,2) a']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+---------------------------------------
|
|
localhost | 57637 | f | expected a single row in query result
|
|
localhost | 57637 | f | expected a single row in query result
|
|
(2 rows)
|
|
|
|
-- can create tables at worker
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name, :node_name]::text[],
|
|
ARRAY[:node_port, :node_port]::int[],
|
|
ARRAY['create table first_table(a int, b int)',
|
|
'create table second_table(a int, b int)']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------------
|
|
localhost | 57637 | t | CREATE TABLE
|
|
localhost | 57637 | t | CREATE TABLE
|
|
(2 rows)
|
|
|
|
-- store worker node name and port again
|
|
-- previously set variables become unusable after some number of uses
|
|
SELECT quote_literal(node_name) as node_name, node_port as node_port
|
|
FROM master_get_active_worker_nodes()
|
|
ORDER BY node_port
|
|
LIMIT 1 \gset
|
|
-- can insert into table
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['insert into first_table select a,a from generate_series(1,20) a']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+-------------
|
|
localhost | 57637 | t | INSERT 0 20
|
|
(1 row)
|
|
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select count(*) from first_table']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------
|
|
localhost | 57637 | t | 20
|
|
(1 row)
|
|
|
|
-- insert into second table twice
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['insert into second_table select * from first_table']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+-------------
|
|
localhost | 57637 | t | INSERT 0 20
|
|
(1 row)
|
|
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['insert into second_table select * from first_table']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+-------------
|
|
localhost | 57637 | t | INSERT 0 20
|
|
(1 row)
|
|
|
|
-- check inserted values at second table
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select count(*) from second_table']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------
|
|
localhost | 57637 | t | 40
|
|
(1 row)
|
|
|
|
-- create index on tables
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['create index first_table_index on first_table(a)']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+--------------
|
|
localhost | 57637 | t | CREATE INDEX
|
|
(1 row)
|
|
|
|
-- drop created tables
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['drop table first_table']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------
|
|
localhost | 57637 | t | DROP TABLE
|
|
(1 row)
|
|
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['drop table second_table']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------
|
|
localhost | 57637 | t | DROP TABLE
|
|
(1 row)
|
|
|
|
-- verify table is dropped
|
|
SELECT * FROM master_run_on_worker(ARRAY[:node_name]::text[], ARRAY[:node_port]::int[],
|
|
ARRAY['select count(*) from second_table']::text[],
|
|
true);
|
|
node_name | node_port | success | result
|
|
-----------+-----------+---------+------------------------------------------------
|
|
localhost | 57637 | f | ERROR: relation "second_table" does not exist
|
|
(1 row)
|
|
|
|
-- run_command_on_XXX tests
|
|
SELECT * FROM run_command_on_workers('select 1') ORDER BY 2 ASC;
|
|
nodename | nodeport | success | result
|
|
-----------+----------+---------+--------
|
|
localhost | 57637 | t | 1
|
|
localhost | 57638 | t | 1
|
|
(2 rows)
|
|
|
|
SELECT * FROM run_command_on_workers('select count(*) from pg_dist_partition') ORDER BY 2 ASC;
|
|
nodename | nodeport | success | result
|
|
-----------+----------+---------+--------
|
|
localhost | 57637 | t | 0
|
|
localhost | 57638 | t | 0
|
|
(2 rows)
|
|
|
|
-- make sure run_on_all_placements respects shardstate
|
|
CREATE TABLE check_placements (key int);
|
|
SELECT master_create_distributed_table('check_placements', 'key', 'hash');
|
|
master_create_distributed_table
|
|
---------------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT master_create_worker_shards('check_placements', 5, 2);
|
|
master_create_worker_shards
|
|
-----------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT * FROM run_command_on_placements('check_placements', 'select 1');
|
|
nodename | nodeport | shardid | success | result
|
|
-----------+----------+---------+---------+--------
|
|
localhost | 57637 | 1240000 | t | 1
|
|
localhost | 57638 | 1240000 | t | 1
|
|
localhost | 57637 | 1240001 | t | 1
|
|
localhost | 57638 | 1240001 | t | 1
|
|
localhost | 57637 | 1240002 | t | 1
|
|
localhost | 57638 | 1240002 | t | 1
|
|
localhost | 57637 | 1240003 | t | 1
|
|
localhost | 57638 | 1240003 | t | 1
|
|
localhost | 57637 | 1240004 | t | 1
|
|
localhost | 57638 | 1240004 | t | 1
|
|
(10 rows)
|
|
|
|
UPDATE pg_dist_shard_placement SET shardstate = 3
|
|
WHERE shardid % 2 = 0 AND nodeport = :worker_1_port;
|
|
SELECT * FROM run_command_on_placements('check_placements', 'select 1');
|
|
nodename | nodeport | shardid | success | result
|
|
-----------+----------+---------+---------+--------
|
|
localhost | 57638 | 1240000 | t | 1
|
|
localhost | 57637 | 1240001 | t | 1
|
|
localhost | 57638 | 1240001 | t | 1
|
|
localhost | 57638 | 1240002 | t | 1
|
|
localhost | 57637 | 1240003 | t | 1
|
|
localhost | 57638 | 1240003 | t | 1
|
|
localhost | 57638 | 1240004 | t | 1
|
|
(7 rows)
|
|
|
|
DROP TABLE check_placements CASCADE;
|
|
-- make sure run_on_all_colocated_placements correctly detects colocation
|
|
CREATE TABLE check_colocated (key int);
|
|
SELECT master_create_distributed_table('check_colocated', 'key', 'hash');
|
|
master_create_distributed_table
|
|
---------------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT master_create_worker_shards('check_colocated', 5, 2);
|
|
master_create_worker_shards
|
|
-----------------------------
|
|
|
|
(1 row)
|
|
|
|
CREATE TABLE second_table (key int);
|
|
SELECT master_create_distributed_table('second_table', 'key', 'hash');
|
|
master_create_distributed_table
|
|
---------------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT master_create_worker_shards('second_table', 4, 2);
|
|
master_create_worker_shards
|
|
-----------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT * FROM run_command_on_colocated_placements('check_colocated', 'second_table',
|
|
'select 1');
|
|
ERROR: tables check_colocated and second_table are not co-located
|
|
-- even when the difference is in replication factor, an error is thrown
|
|
SELECT master_drop_all_shards('second_table'::regclass, current_schema(), 'second_table');
|
|
master_drop_all_shards
|
|
------------------------
|
|
4
|
|
(1 row)
|
|
|
|
SELECT master_create_worker_shards('second_table', 5, 1);
|
|
master_create_worker_shards
|
|
-----------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT * FROM run_command_on_colocated_placements('check_colocated', 'second_table',
|
|
'select 1');
|
|
ERROR: tables check_colocated and second_table are not co-located
|
|
-- when everything matches, the command is run!
|
|
SELECT master_drop_all_shards('second_table'::regclass, current_schema(), 'second_table');
|
|
master_drop_all_shards
|
|
------------------------
|
|
5
|
|
(1 row)
|
|
|
|
SELECT master_create_worker_shards('second_table', 5, 2);
|
|
master_create_worker_shards
|
|
-----------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT * FROM run_command_on_colocated_placements('check_colocated', 'second_table',
|
|
'select 1');
|
|
nodename | nodeport | shardid1 | shardid2 | success | result
|
|
-----------+----------+----------+----------+---------+--------
|
|
localhost | 57637 | 1240005 | 1240019 | t | 1
|
|
localhost | 57638 | 1240005 | 1240019 | t | 1
|
|
localhost | 57637 | 1240006 | 1240020 | t | 1
|
|
localhost | 57638 | 1240006 | 1240020 | t | 1
|
|
localhost | 57637 | 1240007 | 1240021 | t | 1
|
|
localhost | 57638 | 1240007 | 1240021 | t | 1
|
|
localhost | 57637 | 1240008 | 1240022 | t | 1
|
|
localhost | 57638 | 1240008 | 1240022 | t | 1
|
|
localhost | 57637 | 1240009 | 1240023 | t | 1
|
|
localhost | 57638 | 1240009 | 1240023 | t | 1
|
|
(10 rows)
|
|
|
|
-- when a placement is invalid considers the tables to not be colocated
|
|
UPDATE pg_dist_shard_placement SET shardstate = 3 WHERE shardid = (
|
|
SELECT shardid FROM pg_dist_shard
|
|
WHERE nodeport = :worker_1_port AND logicalrelid = 'second_table'::regclass
|
|
ORDER BY 1 ASC LIMIT 1
|
|
);
|
|
SELECT * FROM run_command_on_colocated_placements('check_colocated', 'second_table',
|
|
'select 1');
|
|
ERROR: tables check_colocated and second_table are not co-located
|
|
-- when matching placement is also invalid, considers the tables to be colocated
|
|
UPDATE pg_dist_shard_placement SET shardstate = 3 WHERE shardid = (
|
|
SELECT shardid FROM pg_dist_shard
|
|
WHERE nodeport = :worker_1_port AND logicalrelid = 'check_colocated'::regclass
|
|
ORDER BY 1 ASC LIMIT 1
|
|
);
|
|
SELECT * FROM run_command_on_colocated_placements('check_colocated', 'second_table',
|
|
'select 1');
|
|
nodename | nodeport | shardid1 | shardid2 | success | result
|
|
-----------+----------+----------+----------+---------+--------
|
|
localhost | 57638 | 1240005 | 1240019 | t | 1
|
|
localhost | 57637 | 1240006 | 1240020 | t | 1
|
|
localhost | 57638 | 1240006 | 1240020 | t | 1
|
|
localhost | 57637 | 1240007 | 1240021 | t | 1
|
|
localhost | 57638 | 1240007 | 1240021 | t | 1
|
|
localhost | 57637 | 1240008 | 1240022 | t | 1
|
|
localhost | 57638 | 1240008 | 1240022 | t | 1
|
|
localhost | 57637 | 1240009 | 1240023 | t | 1
|
|
localhost | 57638 | 1240009 | 1240023 | t | 1
|
|
(9 rows)
|
|
|
|
DROP TABLE check_colocated CASCADE;
|
|
DROP TABLE second_table CASCADE;
|
|
-- runs on all shards
|
|
CREATE TABLE check_shards (key int);
|
|
SELECT master_create_distributed_table('check_shards', 'key', 'hash');
|
|
master_create_distributed_table
|
|
---------------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT master_create_worker_shards('check_shards', 5, 2);
|
|
master_create_worker_shards
|
|
-----------------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT * FROM run_command_on_shards('check_shards', 'select 1');
|
|
shardid | success | result
|
|
---------+---------+--------
|
|
1240024 | t | 1
|
|
1240025 | t | 1
|
|
1240026 | t | 1
|
|
1240027 | t | 1
|
|
1240028 | t | 1
|
|
(5 rows)
|
|
|
|
UPDATE pg_dist_shard_placement SET shardstate = 3 WHERE shardid % 2 = 0;
|
|
SELECT * FROM run_command_on_shards('check_shards', 'select 1');
|
|
NOTICE: some shards do not have active placements
|
|
shardid | success | result
|
|
---------+---------+--------
|
|
1240025 | t | 1
|
|
1240027 | t | 1
|
|
(2 rows)
|
|
|
|
DROP TABLE check_shards CASCADE;
|
|
-- set SHOW_CONTEXT back to default
|
|
\set SHOW_CONTEXT errors
|