Viewing profile — lmsp
lmsp
HN member- Joined
- Fri, May 05, 2017, 10:39 PM UTC
- HN karma
- 29
- Public activity
- 21 items
- HN profile
- View on Hacker News ↗
About lmsp
No profile information was provided.
Recent public activity
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
-
comment
Comment #17044254
This is what Apache Pulsar ( https://pulsar.incubator.apache.org/ ) already provides - infinite streaming storage, with simple/flexible messaging streaming API and kafka compatible…
-
comment
Comment #15611932
I do think it is technically possible base on my understanding of pulsar - pulsar provides an failover subscription mode, which seems to be the equivalent of partition rebalancing …
-
comment
Comment #15611856
Kafka streams is great. But it is a processing library. It isn’t an apple-to-apple comparison to a messaging system like Pulsar. First there are already many mature stream processi…
-
comment
Comment #15607012
I think it is beyond partition rebalancing. There is a fact that people didn't realize of making message broker `stateless`. It is actually much better on reacting to failures or s…
-
comment
Comment #15606944
another point added to 'rebalancing' -- when kafka rebalances the partitions, it has to copy all the data for the partitions that are moved around. it might not be a big problem wh…
-
comment
Comment #15605337
actually, pulsar just supports kafka 0.10 api in the recent apache release. it might be worth checking it out as a drop in replacement. https://github.com/apache/incubator-pulsar/r…
-
comment
Comment #15605275
another side note, pulsar supports kafka api since 1.20.0 - https://github.com/apache/incubator-pulsar/releases/tag/v1.2...
-
comment
Comment #15605234
you might want to checkout https://pulsar.apache.org/ a durable low latency pub/sub system. it also has a kafka api client.