Piotr Grabowski
Piotr Grabowski
If you want to configure the connector to insert the data with TTL, you must also configure mapping by adding the following property to configuration: Property key: ``` topic.topic2.test.topic2.mapping ```...
The cause of this issue could be the same as https://github.com/scylladb/scylladb/issues/16709. However, reproducing the issue is very tough (@sylwiaszunejko managed to reproduce it once every 1h or less often). @kbr-scylla...
Reopening the issue since there still might a problem for multi-node clusters
There is no support for `INET` data type. Sink Connector supports the following data types: - `ASCII` - `BIGINT` - `BLOB` - `BOOLEAN` - `DATE` - `DECIMAL` - `DOUBLE` -...
You should try to improve the performance by: - Setting higher `tasks.max` (higher parallelism for connector) - Higher number of partitions of source topic (should be higher than `tasks.max`)
Could you provide some more details about the node size of your Scylla cluster? What is the number of shards/vCPUs in that cluster, was `smp` configuration modified? What is the...
Created a Pull Request #36, that improves the way we insert rows to Scylla. I believe it will help the performance and scalability in this issue.
What installation method of Scylla did you use in the beginning? (For example in: https://www.scylladb.com/download/#server, we have installers for specific Linux distributions, Docker and Unified Installer) Could you post the...
What are the contents of your `/etc/scylla.d/cpuset.conf` file? Did you manually change it or run `scylla_cpuset_setup`? Also your `systemctl status scylla-server.service` screenshot is truncated (e.g. full command line options are...
So `/etc/scylla.d/cpuset.conf` file with `--cpuset 0-1` causes this problem. Scylla tries to launch only on cores 0, 1 - not utilizing all other cores. A temporary fix would be to...