scylla-cdc-rust
scylla-cdc-rust copied to clipboard
I installed the tutorial with checkpoint_saver turned on and then tried to turn off the service, during which the table changed and the service ran again No change notification was...
Updates scylla to use version 0.11.1, and updates other outdated dependencies. Additionally adds `resolver = "2"` to the workspace config.
I have some use cases where I would like to send JSON in a CDC consumer. Right now, the consumer only accepts Cql, and extracting/processing the `CqlRow` can be a...
As shown in a Slack discussion, there indeed is some interest in this library among the community. Let's update the driver's version in the library, so that those who are...
Initial support of CDC with tablets was introduced in https://github.com/scylladb/scylla-cdc-rust/pull/136. The implementation assumes that when CDC streams of a table are changed, then all the streams are replaced at once...
Welcome to [Renovate](https://redirect.github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request. To disable...
The StreamID struct is defined like this: ```rust /// A struct representing a stream ID. #[derive(Debug, Clone, Eq, PartialEq, Hash, Ord, PartialOrd)] pub struct StreamID { pub(crate) id: Vec, }...