Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add migrations for shards table in postgres metastore #4119

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
DROP TABLE shards;

DROP TYPE IF EXISTS SHARD_STATE;
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
CREATE TYPE SHARD_STATE AS ENUM ('unspecified', 'open', 'unavailable', 'closed');

CREATE TABLE IF NOT EXISTS shards (
index_uid VARCHAR(282) NOT NULL,
source_id VARCHAR(255) NOT NULL,
shard_id BIGSERIAL,
leader_id VARCHAR(255) NOT NULL,
follower_id VARCHAR(255),
shard_state SHARD_STATE NOT NULL,
publish_position_inclusive VARCHAR(255) NOT NULL,
publish_token VARCHAR(255),
PRIMARY KEY (index_uid, source_id, shard_id),
FOREIGN KEY (index_uid) REFERENCES indexes (index_uid)
);