订阅我们的博客

p { margin-bottom: 0.08in; }a:link { }

p { margin-bottom: 0.08in; }a:link { }

We love hearing about organizations that are doing innovative things with Red Hat technologies, which is why we were excited to see this blog post from Twitter's engineering team on how it used Netty, a JBoss Community project, to build a new Java server front-end to its realtime search engine called Blender.

With one of the most heavily trafficked search engines (with more than one billion queries per day, according to Twitter), Twitter set out to build a new search engine that would handle its “ever-growing traffic, improve the end-user latency and availability of our service, and enable rapid development of new search features.” JBoss Netty, a client server framework for the development of highly performable and scalable network applications, turned out to be the answer for Twitter.

Twitter engineering described Blender and how they are using Netty in its blog:

Blender is a Thrift and HTTP service built on Netty, a highly-scalable NIO client server library written in Java that enables the development of a variety of protocol servers and clients quickly and easily. We chose Netty over some of its other competitors, like Mina and Jetty, because it has a cleaner API, better documentation and, more importantly, because several other projects at Twitter are using this framework. To make Netty work with Thrift, we wrote a simple Thrift codec that decodes the incoming Thrift request from Netty’s channel buffer, when it is read from the socket and encodes the outgoing Thrift response, when it is written to the socket.

Netty defines a key abstraction, called a Channel, to encapsulate a connection to a network socket that provides an interface to do a set of I/O operations like read, write, connect, and bind. All channel I/O operations are asynchronous in nature. This means any I/O call returns immediately with a ChannelFuture instance that notifies whether the requested I/O operations succeed, fail, or are canceled.

When a Netty server accepts a new connection, it creates a new channel pipeline to process it. A channel pipeline is nothing but a sequence of channel handlers that implements the business logic needed to process the request. In the next section, we show how Blender maps these pipelines to query processing workflows.

The results?

Following the launch of Blender, our 95th percentile latencies were reduced by 3x from 800ms to 250ms and CPU load on our front-end servers was cut in half. We now have the capacity to serve 10x the number of requests per machine. This means we can support the same number of requests with fewer servers, reducing our front-end service costs.

To learn more about JBoss Netty, visit www.jboss.org/netty. For more on how other organizations are achieving success with Red Hat solutions, visit www.redhat.com/customersuccess.


关于作者

按频道浏览

automation icon

自动化

涵盖技术、团队和环境的最新自动化平台

AI icon

人工智能

平台更新使客户可以在任何地方运行人工智能工作负载

cloud services icon

云服务

有关我们的托管云服务组合的更多信息

security icon

安全防护

有关我们如何跨环境和技术减少风险的最新信息

edge icon

边缘计算

简化边缘运维的平台更新

Infrastructure icon

基础架构

全球领先企业 Linux 平台的最新动态

application development icon

应用领域

我们针对最严峻的应用挑战的解决方案

Original series icon

原创节目

关于企业技术领域的创客和领导者们有趣的故事