-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Add scylladb #8002
base: main
Are you sure you want to change the base?
Add scylladb #8002
Conversation
ca6c8ff
to
ff3b42c
Compare
ff3b42c
to
86ed2cb
Compare
Thanks @mkorolyov , interested in this as well |
I wish there was a way NOT to provide your own scylla.yaml, but merge your defaults with the default scylla.yaml - the end result is that you might be missing some new defaults if you bring your own scylla.yaml. |
fix typos in docs Co-authored-by: Yaniv Kaul <[email protected]>
This looks like a separate feature for merging config files. Usually what I used to see in a majority of the applications is that you are using the default config file and overriding it with ENVs or flags or providing your own config file. Providing own config file which will still be merged with some default looks like implicit behavior which in my opinion will confuse users. WDYT? |
Any updates on merging this? |
Yes, my ask is exactly this - let's use the default Scylla YAML that comes with Scylla, and allow overriding values in it. |
this.enableJmxReporting = false; | ||
|
||
withEnv("CASSANDRA_SNITCH", "GossipingPropertyFileSnitch"); | ||
withEnv("JVM_OPTS", "-Dcassandra.skip_wait_for_gossip_to_settle=0 -Dcassandra.initial_token=0"); |
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.
those are not relevant to scylla, you need commandline option for skip_wait_for_gossip_to_settle
addExposedPort(CQL_PORT); | ||
this.enableJmxReporting = false; | ||
|
||
withEnv("CASSANDRA_SNITCH", "GossipingPropertyFileSnitch"); |
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 think this needs to be checked, scylla docker doesn't use this variable
Hello folks. Any updates on this one ? ;) |
Hi, I'll review the PR once the other comments have been addressed. It is great seeing Scylla team reviewing the PR. |
hopefully it won't be dragged like it's counterpart: |
@fruch LMK once this is ready to review and will do it as soon as possible. I still see some comments that hasn't been resolved. So, that's the reason why I haven't reviewed yet. |
Hi, I know this is still in progress because I see some comments unresolved. But, JFTR it would be nice to add an integration test enabling ssl and add it to the docs. |
I'm updating the PR based on testcontainers/testcontainers-go#2919 |
ScyllaDB is an open-source distributed NoSQL wide-column data store. It gains wide popularity as a drop-in replacement for Cassandra but a significantly faster one.
This PR adds the ScyllaDB module.