VOOZH about

URL: https://thenewstack.io/confluent-kafka-a2a-agents/

⇱ Confluent adds A2A support, anomaly detection, and Queues for Kafka in major platform update - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2026-03-03 10:21:51
Confluent adds A2A support, anomaly detection, and Queues for Kafka in major platform update
AI / AI Agents / Data Streaming / Developer tools / Frontend Development / Software Development

Confluent adds A2A support, anomaly detection, and Queues for Kafka in major platform update

Confluent adds support for the Agent2Agent protocol, using Apache Kafka to orchestrate inter-agent communication among streaming agents and for anomaly detection.
Mar 3rd, 2026 10:21am by Jelani Harper
👁 Featued image for: Confluent adds A2A support, anomaly detection, and Queues for Kafka in major platform update

Confluent recently unveiled support for the Agent2Agent (A2A) protocol, an open standard for inter-agent communication. The platform’s implementation of the popular protocol allows users to employ Apache Kafka to orchestrate inter-agent communication via A2A.

With this paradigm, agent calls can trigger event-based actions using Confluent’s Streaming Agents, a collection of capabilities for designing and deploying agents that instantly respond to changes in data’s state. Kafka also stores — in real-time — inter-agent communication for auditability and traceability.

“If you’ve already invested in agents somewhere else, then this can be a facilitator if you want to turn that agent into an event-driven agent.”

Sean Falconer, the Head of AI at Confluent, tells The New Stack that one of the chief advantages of this approach — which was announced on February 26 — is that it democratizes the real-time capacity of Streaming Agents for agents devised outside of Confluent.

“If you’ve already invested in agents somewhere else, then this can be a facilitator if you want to turn that agent into an event-driven agent,” Falconer says.

These possibilities are enhanced by the addition of Confluent’s multivariate anomaly detection, which leverages machine learning techniques to analyze cross-variable patterns and identify patterns relevant to operations or business goals. According to Falconer, Kafka — which users can now use for messaging queues with a new Kafka Improvement Proposal (KIP), Queues for Kafka — underlies both capabilities and their synthesis.

“Whether that’s clickstream data or IoT data, as soon as it’s manifested, it’s in Kafka,” Falconer says. “When you combine that with things like anomaly detection and Streaming Agents, you can understand these key moments in the business that are happening, where you’d want to be able to apply AI in a way to create a personalized product or do root cause analysis.”

With Confluent’s A2A implementation, AI can involve any agent.

How Kafka powers asynchronous A2A communication

A2A has both synchronous and asynchronous protocols; Confluent supports the latter. According to Falconer, with this option, agents immediately respond to requests with their identification and can answer questions about whether they’ve completed a task. Because inter-agent communication is provided through Kafka, users gain numerous advantages, including the ability to have a plethora of subscribers to that communication via Kafka topics. “You want to have it be able to go to your observability tools, your analytics tools, and Kafka’s a really good medium to do that,” Falconer says.

System tables give agents a built-in audit trail

Kafka’s usefulness for inter-agent communication among multiple independent consumers revolves around its storage capabilities as much as its publisher/subscriber model via topics. Every decision a Streaming Agent makes is written in real time into a system table, which is essentially a Kafka topic with a specific schema for logging that information. Subsequently, “As the agent interacts, it’ll write everything down there,” Falconer explained. Systems tables are imperative for developers building, testing, and perfecting agents, and they also provide observability, traceability, and some explainability in regulated industries. Plus, with Kafka, “You can consume that down into your Open Telemetry system or analytics database,” Falconer says.

Multivariate anomaly detection runs in the stream, not in a batch

The observability use case is bolstered by Confluent’s multivariate anomaly detection, which enables organizations to assess multiple factors and their relationships to determine whether occurrences are aberrational. According to Falconer, the sundry machine learning techniques that detect anomalous behavior are equally applicable to any data-driven event, including stock market changes. There are techniques that use time series analysis, such as Autoregressive Integrated Moving Average (ARIMA), as well as those that assess variability in the data, such as Median Absolute Deviation (MAD). Other measures take into account seasonality.

A significant benefit of utilizing these approaches is that “It’s not like you have to go and batch-train these,” Falconer says. “They start learning as soon as you turn them on in your streams.”

Additionally, because they rely on traditional statistical machine learning approaches — as opposed to deep neural networks at the scale of language models — Falconer says that “you can run many, many of these for low cost and they’re very high speed, which is great for doing things like monitoring IoT data.”

Queues for Kafka: pub/sub and message queues in a single topic

Queues for Kafka (KIP: 932) extends Kafka’s scope to messaging queues, as opposed to its traditional publisher/subscriber methodology. One of the reasons this construct was devised was to simplify the architecture and technological stack for employing formal messaging queues with Kafka, which conventionally required additional infrastructure.

According to Falconer, “What Queues for Kafka might do is take the same topic that you used for log-based pub/sub and allow it to act as a queue. The topic will act like a single source of truth, and then you materialize it to serve whatever your data needs are.”

Although there is some overlap between log-based publisher/subscriber models and messaging queues, they ultimately require distinct semantics. Falconer clarified the difference between the two by likening them to two waiters in a restaurant, each assigned to work a separate set of tables.

“It’s an important protocol, especially for the future where enterprise agents are going, where businesses are going to be running hundreds or thousands of these things across all kinds of enterprise systems.”

For the waiter analogous to the pub/sub model, even if he is late, only that waiter can take orders from that table. “But with queues, the semantics of it is more like a ticket counter at a deli,” Falconer says. “There’s no one who owns a certain number of the tickets. There’s just a ticket number, and whoever’s free comes and takes your order.”

Neither approach is better; they solve separate problems. Adding this functionality makes Kafka more viable for developers to support a burgeoning number of use cases, without unnecessarily adding infrastructure.

Confluent’s support of the A2A protocol is considerably enhanced by the vendor’s ongoing reliance on Kafka. The open source framework makes inter-agent communication instantly accessible and stores it for traceability, data governance, and auditability. With Queues for Kafka, agents can be as viable for queue-based messaging workloads as they are for those involving Kafka’s publisher/subscriber model. Confluent’s multivariate anomaly detection ensures organizations get low-latency insights across metrics, logs, and KPIs, which benefits almost any streaming data application.

Consequently, applying Kafka to A2A workloads for streaming data could become standard practice. “It’s an important protocol, especially for the future where enterprise agents are going, where businesses are going to be running hundreds or thousands of these things across all kinds of enterprise systems,” Falconer reflected.

TRENDING STORIES
Jelani Harper has worked as a research analyst, research lead, information technology editorial consultant, and journalist for over 10 years. During that time he has helped myriad vendors and publications in the data management space strategize, develop, compose, and place...
Read more from Jelani Harper
SHARE THIS STORY
TRENDING STORIES
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.