Piotr Jastrzębski
Piotr Jastrzębski
I would have to double check but putting the jar in libs should work. We might need to change some build scripts too but I'm not 100% sure without giving...
It seems that headers in kafka message could be use to distinguish inserts and updates. That would also allow implementation of other operations like partition deletion or range deletion. It...
It's related to all types - not only counters. Difference between inserts and updates in Scylla is described here -> https://stackoverflow.com/questions/17348558/does-an-update-become-an-implied-insert/60075479#60075479 The problem also is that sink connector does not...
No. Reading before writing would be wasteful and non-performant. It just needs to support updates and unset values. In CQL operation each column can be in one of three states:...
Another thing is that even reading before writing won't cut it because it would screw up timestamps of cells. Single CQL operation can have only one timestamp for all affected...
You have examples above. Both `insert into ks.tb(pk, ck, v1) values (1, 2, test3)` and `update ks.tb set v1 = 'test3' where pk = 1 and ck = 2` are...
Is it enough to just link to the blogpost from README @tzach ?
@0xF0D0 did you check that this actually improves the performance? Are you working with @pkgonan ?
Please squash the commits so that in the history you don't fix errors in commits that you've introduced just before.