Martin Kleppmann

Results 172 comments of Martin Kleppmann

Another consideration would be integration with [Kafka Connect](http://kafka.apache.org/documentation.html#connect), for which we'll want to map the Avro data model into the [Kafka Connect data model](http://docs.confluent.io/2.0.0/connect/javadocs/org/apache/kafka/connect/data/SchemaBuilder.html). However, Kafka Connect doesn't define any...

@ewencp Thanks for your comments, and for pointing out the logical types! I had missed those. Bottled Water does have support for passing in options, so it would be possible...

Stuart Bishop has created packages for Ubuntu: https://launchpad.net/~stub/+archive/ubuntu/bottledwater

Yes, this would be a good feature to add to Bottled Water. I think we'd have to do it in the Bottled Water extension. Pull requests welcome :)

@bchazalet Would be great if you want to try making a patch. For snapshot: yes, `get_table_list` is the place to go. It already has rudimentary filtering support via the `table_pattern`...

I don't know the codebase well so I'm not really in a position to comment. Just a question: is it really desirable to be fetching the entire text every time...

@okdistribute Looks like for the first two code examples you reference, what you actually want is the characters at specific indexes, not the entire document text. Would `doc.get(textObj, index)` do...

Hi @luleyleo, this is something we've been thinking about, and we have published algorithms for [reordering lists](https://martin.kleppmann.com/2020/04/27/papoc-list-move.html) and [moving objects around the tree](https://martin.kleppmann.com/2021/10/07/crdt-tree-move-operation.html), but so far not yet had a...

Good question. An all-or-nothing (atomic) approach might be easiest to understand: that is, if an error occurs anywhere, the function should return an error and leave the document unmodified, like...

@choxi and I put some initial exploration on the [changesets branch](/inkandswitch/ampl/tree/changesets). It looks like this should work. Related idea: from the point of view of giving subscribers a meaningful event...