tison

Results 964 comments of tison

@MichaelScofield OpenDAL has a `ThrottleLayer` we can leverage. But here are some issues: 1. It supports throttle writes, not reads. Is it desired for our case? 2. How should we...

A general solution for handling rate limit errors is letting clients backoff waiting.

It seems exposed in the upstream - https://github.com/facebook/rocksdb/issues/12091#issuecomment-1823937793

@zaidoon1 do you pick up this issue? Or are you open to review a patch that export these types and functions?

> Aren't the existing workarounds good enough? I'm coming for upstream here to share my request is because I assume this is under the domain of React Route and thus...

I can see that the load balance policy is supported at `0.3.2-patch11`. But the patch version isn't published to the maven central. Shall I wait for a 0.3.3 release or...

@zhicwu Thank you! This is exactly the case.

@zhicwu I made a patch to upgrade the dependency for Pulsar ClickHouse Connector https://github.com/apache/pulsar/pull/18774. I'll appreciate if you can also check if the upgrade is correct and transparent to users.

@zhicwu cool! Do you have an estimate for 0.4.0 (the next feature release)?

Does `sendfile` support send part of a file? Kafka uses this syscall to implement its zero-copy record transferring: ```java // PlaintextTransportLayer.java fileChannel.transferTo(position, count, socketChannel); ``` .. and I suppose one...