Hacker News new | ask | show | jobs
by dotnwat 2020 days ago
Noah here, developer at Vectorized. Happy to answer any questions.
2 comments

What kind of gaps are there currently between Kafka and RedPanda? Particularly in the "Enterprise" world (e.g. security, etc).
In progress right now are transactions and ACLs. A preliminary form of ACLs with SCRAM will be available later this month. Transactions will come early next year. Those are probably the most visible differences.
That's great! Would it be correct to assume that KSQL works?
Having not tried, I would expect ksql to not work until transaction support lands. That said, perhaps there are some ways to configure it to avoid dependencies on those underlying APIs.
The article called out 500usec as an upper bound for compute. How do you handle heavier compute operations (TlS, encoding / decoding, ...)
on seastar, you yield a lot. so loops go from

    for( ... : collection) {}
to

   return seastar::do_for_each(collection, callback);