Aaron Dwi

Results 3 issues of Aaron Dwi

As a followup for [this question](https://github.com/confluentinc/confluent-kafka-python/issues/842), I want to set `transaction.state.log.replication.factor` to 1, so I can test around the transaction API in my local env (without needing to use lots...

Hi Looking at the [txn source](https://github.com/kelindar/column/blob/main/txn.go), it seems that [Commit](https://github.com/kelindar/column/blob/main/txn.go#L357) is not holding the table lock for the entire apply duration, but instead on per `delete/update/insert` basis. This means that...

As the title suggests, using semaphore would make the code much clearer to read. The channel buffering makes sense, but need some time to make sense of. Are there any...