-
Notifications
You must be signed in to change notification settings - Fork 763
fix bug #8470 citus_activate_node with secondary nodes is not activate #8535
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
Open
akalend
wants to merge
9
commits into
citusdata:main
Choose a base branch
from
akalend:akalend/activate_secondary_node
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+157
−0
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3673e7e
fix bug #8470 citus_activate_node with secondary nodes is not activate
akalend e96b13d
codestyle
fd60e7c
fix codestyle
akalend d43b4d3
codestyle
akalend a19ce52
codestyle
akalend 2115d83
codestyle
akalend 0ce4ac5
codestyle
akalend dc6545c
fixed the code and tests
akalend 959fb73
Merge branch 'main' into akalend/activate_secondary_node
ihalatci File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
98 changes: 98 additions & 0 deletions
98
src/test/regress/expected/check_activate_secondary_node.out
This file contains hidden or 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,98 @@ | ||
| \c - - - :master_port | ||
| -- prepare testing | ||
| SELECT citus_set_coordinator_host('localhost', :master_port); | ||
| citus_set_coordinator_host | ||
| --------------------------------------------------------------------- | ||
|
|
||
| (1 row) | ||
|
|
||
| SET citus.metadata_sync_mode TO 'transactional'; | ||
| -- add inactive secondary node | ||
| SELECT 1 FROM citus_add_secondary_node('localhost', :follower_worker_2_port, 'localhost', :worker_2_port); | ||
| ?column? | ||
| --------------------------------------------------------------------- | ||
| 1 | ||
| (1 row) | ||
|
|
||
| SELECT 1 FROM citus_disable_node('localhost', :follower_worker_2_port); | ||
| ?column? | ||
| --------------------------------------------------------------------- | ||
| 1 | ||
| (1 row) | ||
|
|
||
| -- check inactive node | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND NOT isactive; | ||
| count | ||
| --------------------------------------------------------------------- | ||
| 1 | ||
| (1 row) | ||
|
|
||
| SELECT start_metadata_sync_to_all_nodes(); | ||
| start_metadata_sync_to_all_nodes | ||
| --------------------------------------------------------------------- | ||
| t | ||
| (1 row) | ||
|
|
||
| -- error because the node does not exist | ||
| SELECT 1 FROM citus_activate_node('localhost', 7777); | ||
| ERROR: node at "localhost:xxxxx" does not exist | ||
| \c - - - :worker_2_port | ||
| -- check inactive node on worker | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND NOT isactive; | ||
| count | ||
| --------------------------------------------------------------------- | ||
| 1 | ||
| (1 row) | ||
|
|
||
| \c - - - :master_port | ||
| -- main test: activate secondary node | ||
| SELECT 1 FROM citus_activate_node('localhost', :follower_worker_2_port); | ||
| ?column? | ||
| --------------------------------------------------------------------- | ||
| 1 | ||
| (1 row) | ||
|
|
||
| -- check is active node | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND isactive; | ||
| count | ||
| --------------------------------------------------------------------- | ||
| 1 | ||
| (1 row) | ||
|
|
||
| \c - - - :worker_2_port | ||
| -- check is active node | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND isactive; | ||
| count | ||
| --------------------------------------------------------------------- | ||
| 1 | ||
| (1 row) | ||
|
|
||
| \c - - - :worker_1_port | ||
| -- check active node | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND isactive; | ||
| count | ||
| --------------------------------------------------------------------- | ||
| 1 | ||
| (1 row) | ||
|
|
||
| \c - - - :master_port | ||
| SET citus.metadata_sync_mode TO 'nontransactional'; | ||
| -- error this operation cannot be completed in nontransactional metadata sync mode | ||
| -- if the GUC citus.metadata_sync_mode set to 'nontransactional' | ||
| SELECT 1 FROM citus_activate_node('localhost', :follower_worker_2_port); | ||
| ERROR: this operation cannot be completed in nontransactional metadata sync mode | ||
| HINT: SET citus.metadata_sync_mode to 'transactional' | ||
| -- remove checked nodes | ||
| SET citus.metadata_sync_mode TO 'transactional'; | ||
| SELECT citus_remove_node('localhost', :follower_worker_2_port); | ||
| citus_remove_node | ||
| --------------------------------------------------------------------- | ||
|
|
||
| (1 row) | ||
|
|
||
| SELECT citus_remove_node('localhost', :master_port); | ||
| citus_remove_node | ||
| --------------------------------------------------------------------- | ||
|
|
||
| (1 row) | ||
|
|
This file contains hidden or 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 hidden or 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,52 @@ | ||
| \c - - - :master_port | ||
|
|
||
| -- prepare testing | ||
| SELECT citus_set_coordinator_host('localhost', :master_port); | ||
|
|
||
| SET citus.metadata_sync_mode TO 'transactional'; | ||
|
|
||
| -- add inactive secondary node | ||
| SELECT 1 FROM citus_add_secondary_node('localhost', :follower_worker_2_port, 'localhost', :worker_2_port); | ||
| SELECT 1 FROM citus_disable_node('localhost', :follower_worker_2_port); | ||
|
|
||
| -- check inactive node | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND NOT isactive; | ||
| SELECT start_metadata_sync_to_all_nodes(); | ||
|
|
||
| -- error because the node does not exist | ||
| SELECT 1 FROM citus_activate_node('localhost', 7777); | ||
|
|
||
|
|
||
| \c - - - :worker_2_port | ||
| -- check inactive node on worker | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND NOT isactive; | ||
|
|
||
| \c - - - :master_port | ||
|
|
||
| -- main test: activate secondary node | ||
| SELECT 1 FROM citus_activate_node('localhost', :follower_worker_2_port); | ||
|
|
||
|
|
||
| -- check is active node | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND isactive; | ||
|
|
||
| \c - - - :worker_2_port | ||
| -- check is active node | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND isactive; | ||
|
|
||
| \c - - - :worker_1_port | ||
| -- check active node | ||
| SELECT count(*) FROM pg_dist_node WHERE nodeport=:follower_worker_2_port AND nodename='localhost' AND isactive; | ||
|
|
||
| \c - - - :master_port | ||
| SET citus.metadata_sync_mode TO 'nontransactional'; | ||
|
|
||
| -- error this operation cannot be completed in nontransactional metadata sync mode | ||
| -- if the GUC citus.metadata_sync_mode set to 'nontransactional' | ||
| SELECT 1 FROM citus_activate_node('localhost', :follower_worker_2_port); | ||
|
|
||
|
|
||
| -- remove checked nodes | ||
| SET citus.metadata_sync_mode TO 'transactional'; | ||
| SELECT citus_remove_node('localhost', :follower_worker_2_port); | ||
| SELECT citus_remove_node('localhost', :master_port); | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test adds a secondary node and activates it but doesn't clean up. Consider adding cleanup at the end to avoid polluting state for any future tests that might be added after this one in the schedule:
May be:
-- cleanup
SELECT citus_remove_node('localhost', :follower_worker_2_port);