-
Notifications
You must be signed in to change notification settings - Fork 59
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
Bump scylla version to 5.4.6 and use fixed version for all of the nodes #187
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ client_encryption_options: | |
keyfile: /etc/scylla/db.key | ||
truststore: /etc/scylla/ca.crt | ||
require_client_auth: true | ||
# when using 5.4.x we have to specify force_schema_commit_log option | ||
force_schema_commit_log: true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need to explicitly mention this param? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without this the container fails to start. There is an issue about that when using 5.4.x we have to specify that option: scylladb/scylladb#16427 (comment) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sylwiaszunejko , can I ask you to add comment to the file so that we could link this option to the context |
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.
@roydahan , @sylwiaszunejko , WDYT does it work to have somethign like
SCYLLA_TABLET_IMAGE
, instead of hardcoded one?Only problem I see here is that driver-matrix test can use this either
docker-compose.yaml
orintegration.sh
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.
I am not sure, when we have 6.0 we would not need to have different scylla version for tablet/non-tablet tests and then there will be no need for
SCYLLA_TABLET_IMAGE
, we will just bumpSCYLLA_IMAGE
toscylladb/scylla:6.0.0
and use it for all of the nodesThere 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.
Agreed