-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4190 from esl/migration-guide
Update migration guide for version 6.2.0
- Loading branch information
Showing
6 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- Cluster node discovery used by CETS | ||
CREATE TABLE discovery_nodes ( | ||
cluster_name varchar(250) NOT NULL, | ||
node_name varchar(250) NOT NULL, | ||
node_num INT NOT NULL, | ||
address varchar(250) NOT NULL DEFAULT '', -- empty means we should ask DNS | ||
updated_timestamp BIGINT NOT NULL, -- in seconds | ||
PRIMARY KEY (cluster_name, node_name) | ||
); | ||
CREATE UNIQUE INDEX i_discovery_nodes_node_num ON discovery_nodes(cluster_name, node_num); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- Cluster node discovery used by CETS | ||
CREATE TABLE discovery_nodes ( | ||
cluster_name varchar(250) NOT NULL, | ||
node_name varchar(250) NOT NULL, | ||
node_num INT UNSIGNED NOT NULL, | ||
address varchar(250) NOT NULL DEFAULT '', -- empty means we should ask DNS | ||
updated_timestamp BIGINT NOT NULL, -- in seconds | ||
PRIMARY KEY (cluster_name, node_name) | ||
); | ||
CREATE UNIQUE INDEX i_discovery_nodes_node_num USING BTREE ON discovery_nodes(cluster_name, node_num); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- Cluster node discovery used by CETS | ||
CREATE TABLE discovery_nodes ( | ||
cluster_name varchar(250) NOT NULL, | ||
node_name varchar(250) NOT NULL, | ||
node_num INT NOT NULL, | ||
address varchar(250) NOT NULL DEFAULT '', -- empty means we should ask DNS | ||
updated_timestamp BIGINT NOT NULL, -- in seconds | ||
PRIMARY KEY (cluster_name, node_name) | ||
); | ||
CREATE UNIQUE INDEX i_discovery_nodes_node_num ON discovery_nodes USING BTREE(cluster_name, node_num); |