Anyone using this in production? Any thoughts or tips on how to adapt traditional MongoDB workflows to this?
Thanks is everyone for the tips.
ScyllaDB Open Source 3.0
61–70 of 73 posts
Re: ScyllaDB Open Source 3.0
#62Awesome. Can't wait for the Amazon hosted version.
DynamoDB begat Cassandra which begat ScyllaDB.
Re: ScyllaDB Open Source 3.0
#63Anyone using this in production? Any thoughts or tips on how to adapt traditional MongoDB workflows to this?
As glommer and PeterCorless mentioned, I'd be happy to share thoughts and learnings about it.
Feel free to show up and ask questions mate: you can easily find me on the community Slack channel, freenode IRC or Twitter.
Re: ScyllaDB Open Source 3.0
#64Anyone using this in production? Any thoughts or tips on how to adapt traditional MongoDB workflows to this?
We are (Numberly) running it in production indeed and our use cases keep on increasing! As glommer and PeterCorless mentioned, I'd be happy to share thoughts and learnings about it. Feel free to show up and ask questions mate: you can easily find me on the community Slack channel, freenode IRC or Twitter.
Re: ScyllaDB Open Source 3.0
#65Earlier quoted context omitted.
What's a light weight transaction?
A compare-and-set request. E.g., I can read version 3 of a row, and write version 4 if the current version is still 3 , so that if someone else writes version 4 I don't clobber whatever they just did.
Re: ScyllaDB Open Source 3.0
#66Earlier quoted context omitted.
We are (Numberly) running it in production indeed and our use cases keep on increasing! As glommer and PeterCorless mentioned, I'd be happy to share thoughts and learnings about it. Feel free to show up and ask questions mate: you can easily find me on the community Slack channel, freenode IRC or Twitter.
Which slack channel? I’d love to join.
Re: ScyllaDB Open Source 3.0
#67Re: ScyllaDB Open Source 3.0
#68Anyone using this in production? Any thoughts or tips on how to adapt traditional MongoDB workflows to this?
Re: ScyllaDB Open Source 3.0
#69Earlier quoted context omitted.
This one: https://scylladb-users.slack.com
Is it private? I might be dumb but slack doesn’t seem to give me a signup option.
Re: ScyllaDB Open Source 3.0
#70Earlier quoted context omitted.
A compare-and-set request. E.g., I can read version 3 of a row, and write version 4 if the current version is still 3 , so that if someone else writes version 4 I don't clobber whatever they just did.
That’s a really succinct definition. I like it. Thank you.