-
Notifications
You must be signed in to change notification settings - Fork 8
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
Set transaction isolation to strict serializable #657
Conversation
@@ -48,6 +48,7 @@ services: | |||
- --system-parameter-default=max_clusters=100 | |||
- --system-parameter-default=max_sources=100 | |||
- --system-parameter-default=max_aws_privatelink_connections=10 | |||
- --system-parameter-default=transaction_isolation=serializable |
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.
Setting the transaction isolation level to serializable for the second region, that way we will make sure that even if the default value is not set to strict serializable, everything will still work as the provider will explicitly set the level to strict serializable.
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.
Smart!
f42fe85
to
7cd4722
Compare
7cd4722
to
637ac94
Compare
Thanks for your help! |
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.
Nice!
Explicitly set the transaction isolation level to 'strict serializable' for each db client.
Fixes #656