Results 26 comments of TanNgocDo

> IPFS is blockchain based. I am concerned about the high energy usage of any blockchain based system, especially in an era of climate change. > > Should consider if...

Hi @morenol , I'm looking into this with fluvio cli. I saw that there is batch created with at-least-once, and multiple backoff after that: ``` TRACE send{topic=greetings}: fluvio::producer::accumulator: Batch is...

Thanks @morenol , it seems to be relating to this: https://github.com/infinyon/fluvio/issues/2808 ? the throughput of atleastone is not good comparing with atmostonce. Of course, will need to test more.

@morenol , as I debug, the wait() method will go to https://github.com/infinyon/fluvio/blob/0377bae0ae3e1b32bb3e4b823bdfbb1f2e88a5a5/crates/fluvio/src/producer/record.rs#L135 Which is blocked and will be notified by : https://github.com/infinyon/fluvio/blob/0377bae0ae3e1b32bb3e4b823bdfbb1f2e88a5a5/crates/fluvio/src/producer/partition_producer.rs#L247 It means this wait() method can be only...

Thanks @morenol, Wait() is locking point that prevents other record added to a batch.Shoud we do one of these option:? 1) remove wait() : this will prevent us from getting...

I have just added a small draft change(to make sure in the right direction) for stdin(need to refactor to reduce redundant code), and in interactive mode, it seems that we...

Thanks for reporting the bug, I will check it

Hi @Onefox Could you please show me the full code that you encode/decode and register data type ?

Sorry for my late reply. This problem maybe relating to **stateful** problem of codec. Due to dynamic typing feature of JS. You can not know the exactly the type you...