-
Notifications
You must be signed in to change notification settings - Fork 7
Remove Cassandra dependencies from universal/scalardl module #232
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
Remove Cassandra dependencies from universal/scalardl module #232
Conversation
Oh, you've done this in the story !!! |
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.
LGTM!
scalardl_image_name = var.scalardl_image_name | ||
scalardl_image_tag = var.scalardl_image_tag | ||
internal_domain = var.internal_domain | ||
database_contact_points = "cassandra-lb.${var.internal_domain}" # TODO: add to variables |
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.
If it's going to be done in another PR, can you create a story not to forget?
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.
Yes, the variable is going to be added later.
Created as a subtask https://scalar-labs.atlassian.net/browse/DLT-7605
For database_contact_port variable: https://scalar-labs.atlassian.net/browse/DLT-7524
Overall looking good. 👍 Also need to update README. |
@tei-k Thanks! Updated two README files. |
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.
LGTM!
https://scalar-labs.atlassian.net/browse/DLT-7405
The following works have been done to remove dependencies on Cassandra from the universal/scalardl module.
(But there is no option to switch the database other than Cassandra yet.)
cassandra_username
andcassandra_password
have been renamed todatabase_username
anddatabase_password
.replication_factor
has been renamed tocassandra_replication_factor
since it's going to be a Cassandra-specific option.database_contact_points
has been added to universal/scalardl module, butcassandra-lb
is still hardcoded in the aws/azure modules.database_contact_port
is going to be needed but has not been added yet.The base branch of this PR is
dynamodb
. I plan to open subsequent PRs toward this branch.