TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: UI for Apache Kafka

158 pointsby germanosinover 3 years ago

17 comments

epberryover 3 years ago
Looks pretty nice. The codebase is half typescript and half Java? Guessing that is because Kafka is written in Java.<p>Another question: how might this compare to the Confluent web GUI? Obviously this is open source which is great.
评论 #28718652 未加载
评论 #28718699 未加载
评论 #28718867 未加载
kkcorpsover 3 years ago
<a href="https:&#x2F;&#x2F;lenses.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;lenses.io&#x2F;</a> Kafka UI is pretty solid. Nice to see an open source alternative here.
评论 #28720651 未加载
PhilippGilleover 3 years ago
There are several alternatives posted here already, but after comparing several ones maybe a year ago I found Kowl very nice: Nice UI, backend written in Go (quick startup, low memory usage), viewing and filtering of messages, support for schema registry, comes with a Docker image, usable locally and Helm chart for Kubernetes.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;cloudhut&#x2F;kowl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;cloudhut&#x2F;kowl</a>
评论 #28723773 未加载
评论 #28727493 未加载
评论 #28725802 未加载
daniel-griggover 3 years ago
Neat! Just be wary around licensing, we’ve been using a similar management tool for a couple years <a href="https:&#x2F;&#x2F;github.com&#x2F;yahoo&#x2F;CMAK" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;yahoo&#x2F;CMAK</a> which was originally Kafka manager but they were forced to rename it.
评论 #28722172 未加载
评论 #28746559 未加载
dillonover 3 years ago
Where I work we use Confluent Cloud who has their own proprietary UI. I&#x27;ve always found it to be lacking, hard to use and not very good. We substituted it with AKHQ <a href="https:&#x2F;&#x2F;akhq.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;akhq.io&#x2F;</a> , which is miles ahead of anything I&#x27;ve seen. The main issue with it are the interesting UX decisions that requires learning. For example, a lot of links require a double click, which isn&#x27;t a common behavior in Web Apps. Besides that, it&#x27;s absolutely wonderful and goes beyond just Kafka. We use Kafka Connect very heavily and AKHQ seems to implement the full CRUD for Connect.
评论 #28747140 未加载
spushkarevover 3 years ago
Thanks for posting. Does it support AWS MSK?
评论 #28719562 未加载
chadhqover 3 years ago
I rolled out kPow initially for my team of 10 to help us manage and monitor our clusters.<p>We’ve now rolled it out to our 400+ engineers who use it every day to help them gain visibility and insight to their data and topics, manage offsets, amount other things. It handles HUGE clusters with no issue, and the RBAC features are great.<p>I’ve tried them all. While there are some ok alternatives, I honestly find them toys compared to kPow. Do yourself a favor and check it out!
faxmeyourcodeover 3 years ago
We use Kafdrop for viewing topics&#x2F;messages&#x2F;info and it&#x27;s really nice. It&#x27;s read-only though, so if you need to configure a topic or push a message you have to use something else.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;HomeAdvisor&#x2F;Kafdrop" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;HomeAdvisor&#x2F;Kafdrop</a>
评论 #28721747 未加载
评论 #28725804 未加载
qrpikeover 3 years ago
What is the difference between this and <a href="https:&#x2F;&#x2F;github.com&#x2F;yahoo&#x2F;CMAK" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;yahoo&#x2F;CMAK</a>
评论 #28719637 未加载
评论 #28719586 未加载
prtk25over 3 years ago
The UI looks great. I wanted to try it but am unable to run it in mac with m1 chip. Is there a docker image for arm based processors as well?
评论 #28746568 未加载
dxxviover 3 years ago
I&#x27;m using kafdrop but modify it a bit. Reasons: - the front page is very slow if there are a lot of topics (the kafka cluster I&#x27;m using has 6k topics). It&#x27;s because kafdrop tries to get a lot of information of every topic even though it doesn&#x27;t display them on the screen. I modified it like this: after display 6k topic names, I send ajax requests to get info (# of partitions, start &amp; end offsets of each partition, number of messages in each partition) of 20 topics each. - kafdrop doesn&#x27;t have the feature to send a message to a topic. I added a text area below each topic name so that I can type the mesaage there and send. - If there&#x27;s a new message, kafdrop cannot tell me which partition that new message goes to. So I added this feature: suppose that a topic has 3 partitions with 3, 4 and 5 messages. If there are some new messages coming to that topic, I can refresh that topic in the UI and the UI will show something like partition 2: 3 -&gt; 4 messages. So I know that 1 new message goes to partition 2.<p>I like the multi-cluster management feature of this project. Unfortunately I don&#x27;t know react (angular + typescript is ok with me), so I&#x27;m wondering if I should try this one knowing that I cannot modify it. The reasons I modified kafdrop are also the features I like to see in a new Kafka UI.
评论 #28725042 未加载
评论 #28725812 未加载
db3pt0over 3 years ago
A few pieces of feedback.<p>Positive:<p><pre><code> - Multi-cluster support is a great feature! That&#x27;s the main thing missing from Kowl, in my opinion - The UI feels clean - Message streaming feels smooth, and the search feature is a great addition. Also love the ability to see a message for a given partition&#x2F;offset, and that JSON messages are nicely rendered as JSON! </code></pre> Negative&#x2F;Feature Requests:<p><pre><code> - The CleanupPolicy logic doesn&#x27;t handle &quot;delete,compact&quot; (I see bug number 829 addressed a slightly related issue, maybe that logic could be expanded [1]) - When viewing Cluster -&gt; Topic -&gt; Consumers, it seems like far more is being loaded than just consumer groups for that particular topic. It takes much longer to load than, e.g., Kowl does for pulling the same information - Similar feedback for when clicking on an individual consumer group (example URL path: &quot;&#x2F;ui&#x2F;clusters&#x2F;dev&#x2F;consumer-groups&#x2F;my-group&quot;). It takes a very long time to load - If any permissions issues are encountered while loading the individual consumer group, the entire request fails. That wouldn&#x27;t necessarily be an issue, but it is when you&#x27;re loading all consumer groups, and not just the one requested - I don&#x27;t see any docs on how to access a topic that is secured with certificates (Kowl&#x27;s relevant config [2]) - If a schema registry uses a self-signed certificate (or one signed by a corporation&#x27;s CA), there&#x27;s no way to pass the certificate through a config or skip validation (Kowl&#x27;s relevant config [3]). As it is, you get a 500 error in the API call, but the UI doesn&#x27;t show an error </code></pre> Overall, it seems like a fair bit of thought went into this! But there are a few quirks that make it very tough to use in a corporate environment with (perhaps excessively) large Kafka clusters with hundreds&#x2F;thousands of topics, or secured with internal certificates<p>1. <a href="https:&#x2F;&#x2F;github.com&#x2F;provectus&#x2F;kafka-ui&#x2F;blob&#x2F;master&#x2F;kafka-ui-api&#x2F;src&#x2F;main&#x2F;java&#x2F;com&#x2F;provectus&#x2F;kafka&#x2F;ui&#x2F;model&#x2F;CleanupPolicy.java#L9" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;provectus&#x2F;kafka-ui&#x2F;blob&#x2F;master&#x2F;kafka-ui-a...</a><p>2. <a href="https:&#x2F;&#x2F;github.com&#x2F;cloudhut&#x2F;kowl&#x2F;blob&#x2F;10776b81e45abfa716548d171d7f7e1326bf8553&#x2F;docs&#x2F;config&#x2F;kowl.yaml#L56-L61" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;cloudhut&#x2F;kowl&#x2F;blob&#x2F;10776b81e45abfa716548d...</a><p>3. <a href="https:&#x2F;&#x2F;github.com&#x2F;cloudhut&#x2F;kowl&#x2F;blob&#x2F;10776b81e45abfa716548d171d7f7e1326bf8553&#x2F;docs&#x2F;config&#x2F;kowl.yaml#L68-L73" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;cloudhut&#x2F;kowl&#x2F;blob&#x2F;10776b81e45abfa716548d...</a>
评论 #28747058 未加载
burushaover 3 years ago
Oh, cool! We are already using this tool and happy to it here
d_t_wover 3 years ago
<a href="https:&#x2F;&#x2F;kpow.io" rel="nofollow">https:&#x2F;&#x2F;kpow.io</a> - we build kPow for Apache Kafka, a drop-in replacement for Confluent Control Center + much more.<p><a href="https:&#x2F;&#x2F;kpow.io&#x2F;features" rel="nofollow">https:&#x2F;&#x2F;kpow.io&#x2F;features</a><p>- Multi-Cluster, Multi-Schema, Multi-Connect.<p>- Multi-Tenancy, RBAC, all the Authz - LDAP, SAML, etc.<p>- Very fast streaming multi-topic search (~1M messages &#x2F; minute)<p>- Built in JQ search filters (we implemented a subset of JQ in the browser and JVM)<p>- Live Kafka Streams &#x2F; Consumer Group topology visualisation (including RocksDB metrics for state stores, etc)<p>- Offset management, resetting, scheduled mutations.<p>- Consumer Group read and Topic write freshness &#x2F; n-minutes inactivity metrics.<p>- Heaps of admin functions like Staged Mutations, Temporary RBAC policies, Data Masking for PII, etc.<p>- Prometheus &#x2F; OpenMetrics endpoints.<p>- kREPL (slightly mad programmatic interface to Kafka)<p>- 7k commits, 100k docker pulls, 97.4% Clojure.<p>- Unlimited users, unlimited features.<p>- Commercially supported, annual licenses or available as hourly-metered (0.16c&#x2F;hr) on the AWS Marketplace or Red Hat Marketplace.
评论 #28724673 未加载
评论 #28725556 未加载
评论 #28724690 未加载
评论 #28724931 未加载
评论 #28725792 未加载
marat_galievover 3 years ago
Cool, we&#x27;re using this in a couple projects, awesome tool!
brastickover 3 years ago
Love it, just got on Kafka a few days ago
stillbourneover 3 years ago
I use the vscode plugin. As a matter of fact I seem to be using vscode for more and more admin tasks including kube management.