Blog

Keep up to date with product updates and announcements from the AlgoX2 team.

Company

AlgoX2 Raises $3.5M Seed Round to Redefine Data Streaming for the AI Era

AlgoX2 has raised $3.5 million in seed funding, led by Bessemer Venture Partners, to build a new standard of fast, scalable, and durable data streaming infrastructure for an AI-native world.

AlgoX2 Raises $3.5M Seed Round to Redefine Data Streaming for the AI Era

We're thrilled to share that AlgoX2 has raised $3.5 million in seed funding, led by Bessemer Venture Partners, to build a new standard of fast, scalable, and durable data streaming infrastructure for an AI-native world.

AlgoX2 is a clean-sheet approach, designed by the team behind the New York Stock Exchange's trading technology. It is Kafka-API compatible with native support for Redis, NATS, and MQTT—delivering up to 10X higher throughput and up to 90% lower TCO than legacy stacks, without compromising latency.


Why now

Enterprise data infrastructure both enables new products and adapts to every technological shift. Today, it is undergoing a generational transition driven by AI and the move to interoperable lakehouses in the Data 3.0 era. A growing share of enterprise data is in motion, with real-time use cases spanning AI assistants, personalization, fraud detection, and observability.

Streaming has moved from a supporting tool to a foundation: the speed, quality, and governance of data flows now determine AI-native outcomes. Kafka-era stacks shaped the last decade but were built for a different world. Under modern workloads, they struggle with performance, cost, and latency. The market needs a new streaming backbone built for Data 3.0.


Bessemer's perspective

Bessemer is proud to back founders building foundational infrastructure for the next wave of real-time innovation. In sectors like AI and finance, where speed is critical, AlgoX2 arms organizations with a purpose-built streaming backbone—helping them move fast, scale with confidence, and deliver dependable performance for tomorrow's data-driven world. In a future that runs on real-time experiences, Alexei, Vlad, and George are redefining what streaming should be: faster, leaner, and truly built for what's next.

Janelle Teng
Partner at Bessemer Venture Partners

Founders' perspective

Data streaming platforms transform fragmented data into the reliable flows that distributed applications depend on. We see a deep need for a solution that scales effortlessly, without endless tuning. Legacy streaming tools are built like straws; AlgoX2 is built like a firehose. It's engineered to handle the exponential data growth of generative AI, embrace existing protocols, and cut TCO by 10X — radically simplifying streaming for every enterprise.

Alexei Lebedev
CEO and Co-Founder

Hardware has raced ahead with SSDs, NVMe, 100 GbE, and GPU-scale AI, but data software hasn't kept up. To fully use modern networks, storage, and CPUs, streaming needs a new architecture. AlgoX2 is that architecture: built for real-time efficiency and scale. No matter the setup, we maximize performance on off-the-shelf hardware and Bring Your Own Cloud (BYOC).

Vlad Parizhskiy
CTO and Co-Founder

AlgoX2 can serve as the distributed layer for any streaming protocol, but we're starting with Kafka as the logical entry point. We offer full Kafka API compatibility and zero-code integration—teams can redirect data to our engine and immediately achieve up to 90% lower costs and 10 times higher throughput, while retaining the rich Kafka ecosystem of connectors and tools, without vendor lock-in.

George Levin
CBO and Co-Founder

Key Differentiators

  • Compute–storage separation, policy-driven tiering. Scale CPU and I/O independently; place hot data on NVMe and cold on object storage without reshuffling.

  • Kafka-compatible with inline processing. Keep your producers/consumers; add built-in transforms and enrichment for a shorter data path and lower tail latency.

  • AI-ready data plane. Compute features in-stream and land the same feed to Iceberg/Delta/Hudi with lineage and replay—keeping training and serving in sync.


What's next

We're working with major enterprises as design partners to bring AlgoX2 into production. With Bessemer's support, we're on a mission to make streaming the default backbone for AI-driven data infrastructure—fast, scalable, and affordable.

👉 Request a demo of AlgoX2 today

Engineering

Evolution of Middleware

AlgoX2 introduces a groundbreaking streaming data platform that sets new industry standards

Evolution of Middleware

What is Middleware?

Middleware is a system for transmission and temporary storage of data. Essentially it's the embodiment of a communication algorithm. Middleware is everywhere:

  • In programming languages, the call stack is middleware
  • In physical networks, the network switch is middleware
  • E-mail is middleware too

Middleware sends messages between endpoints over transport using temporary storage. There are many combinations of the above, which means that the design space is very large. We'll briefly visit some interesting points in this space which correspond to successful designs.

Synchronous Middleware

Synchronous Middleware connects endpoints, attempting to hide messages and transport. The classic function call is synchronous middleware and RPC (Remote Procedure Call) are examples. RPC tries to make the request-response hidden and transparent to the application. NFS, SunRPC, CORBA, and gRPC are examples. The request-response can be explicit, as with REST, curl.

Here, the communication pattern is point-to-point and the application waits until the request completes. This can create big cumulative delays and even deadlocks. Also, the other side may be unavailable, which affects application logic. For correctness, every call site (if you are even aware of it) needs retry logic.

Asynchronous Middleware

Asynchronous middleware is more explicit. Both messages and transport are exposed to the application and the system focuses on routing messages. This approach offers more communication patterns, such as many-to-one and one-to-many. Messages can be routed, copied and stored, and asynchronous systems have much higher throughput and lower latency (due to pipelining).

It's conceptually easier to develop applications using RPC, but asynchronous middleware is more general and capable: you can implement RPC using it, but not the other way around. All of message-oriented middleware systems built over the years are an attempt to explore this part of the design space.

Message-oriented Middleware (MOM)

Message-oriented middleware (MOM) was developed around the 2000s in response to financial companies' needs. The main idea is to publish a message to a Message Queue (MQ) as temporary storage, from where it's delivered to subscribers. Once a message is sent to the subscriber, it's deleted from the queue. These systems have message rates in the ~100K msgs/sec range, with latency in 10s of microseconds. Typically, delivery is not guaranteed, so message queue should be viewed as a message switch. Successful designs were produced by TIBCO, Solace, RabbitMQ, IBM MQ, ActiveMQ, ZeroMQ, AMPS, 29West, the list goes on.

The limitation of MOM designs is usually found in lack of scalability, a single point of failure (the broker which keeps the queues), and in the somewhat unfriendly semantics of message queues which bind publishers and subscribers. This is where Data Streaming Platforms come in.

Data Streaming Platforms

Data Streaming Platforms appeared, in 2010s, developed in response to web-scale companies' needs. The main idea is to create a "dumb" broker that writes messages to append-only journals. The broker is not a "message exchange" and doesn't have "congestion policies". Instead, the data is reliably replicated to several locations, kept there indefinitely, and can be retrieved multiple times, until a retention policy forces its deletion. Such systems have many hosts, no single point of failure, message rates in the 1M-100M msgs/sec range. Latency is typically in single milliseconds to hundreds of milliseconds. The 800lb gorilla of this design pattern is Kafka.

Data Streaming Platforms

A Data Streaming Platform represents in some sense the ultimate middleware because it has no arbitrary limitations, and it's very simple conceptually: it's just a set of append-only files. The simplest data streaming platform is just cat >> filename on the publishing side and tail -f filename on the subscribing side.

The main barrier to the use of data streaming platforms for applications is the complexity of implementation, not the complexity of the concept.

The "Holy Grail" of Data Streaming Platforms

So, what does a "holy grail" data streaming platform look like (other than cat/tail -f)? It has to have:

  • Wire-speed throughput
  • Be fast as a switch (single-digit microseconds)
  • Support millions of topics and thousands of publisher/subscriber pairs in any combination
  • Be available in multiple form factors (appliance, BYOC, container distribution)
  • Support multiple standard protocols to work with existing ecosystems
  • Have minimal knobs to tune
Engineering

AlgoX2: Revolutionizing the World of Streaming Data Processing

AlgoX2 introduces a groundbreaking streaming data platform that sets new industry standards

AlgoX2: Revolutionizing the World of Streaming Data Processing

In an era where data processing speed and efficiency are becoming key success factors, AlgoX2 introduces a revolutionary streaming data platform that promises to change the game in the industry.

Unparalleled Performance

AlgoX2 offers unprecedented performance, delivering latency 100 times lower than traditional solutions like Apache Kafka. Our tests show an impressive result: just 50 microseconds of latency compared to Kafka's 5000 microseconds.

Wide Range of Applications

Our platform is ideal for various application areas, including:

  • Financial platforms
  • AI solution providers
  • Internet of Things (IoT)
  • Real-time analytics

Ease of Integration

AlgoX2 is designed as a drop-in replacement for existing solutions, significantly simplifying the integration process. We support a wide range of protocols, including:

  • Kafka
  • Redis
  • MQTT
  • NATS

This allows you to easily connect AlgoX2 to your existing infrastructure without the need for a complete system rewrite.

Scalability and Flexibility

One of the key advantages of AlgoX2 is the ability to easily scale capacity as needed. Our architecture allows you to add new nodes "on the fly," providing unprecedented flexibility for growing businesses.

Proven Expertise

Behind AlgoX2's development is a team of experts with rich experience in high-performance systems. Our founders previously created the architecture that now handles all equity and options trading volumes on the New York Stock Exchange (NYSE).

The Future is Here

AlgoX2 is not just another improvement on existing technologies. It's a completely new approach to streaming data processing that opens doors for innovation across various industries.

Are you ready to join the data revolution? Contact us to learn how AlgoX2 can transform your business.