What is AJP protocol used for?

AJP (Apache Jserv Protocol) is basically a binary protocol that allows to reverse proxying requests from a FE Web Server to a BE Application Server, effectively propagating all the needed information to make the Req-Res flow continuing successfully. Often, AJP is used to load balance using sticky-session policies: thanks to the transferred header data, the FE Web Server can load balance over the BE counterparts making use of specific modules (like, mod_jk).

AJP is used mainly because:

  1. it's more performant than any HTTP exchange,
  2. it's integrated with broadly used reverse-proxying modules (i.e. mod_jk, mod_proxy),
  3. Tomcat's implementation provides a rich set of APIs that is protocol transversal: HTTP(s) data is seamlessly propagated, and can be retrieved with simple API calls (canonical getXYX(), very effective and immediate), so it's like working with HTTP at a higher speed.

Definitely, I'd say that it's a proven solution with almost 20 years of maturity on the shoulders: it's successfully used in production environments.


More specifically, and not really covered in that ehow article, there's some non-trivial overhead to parsing http headers on requests and creating them on responses. If you are fronting your app server with a web proxy server, AJP allows you to skip that extra parsing and just pass efficient binary representations of the headers between the proxy server and the app server. There are other benefits with things like simple connection pools and tight integration if you use apache/mod_jk to tomcat.

Client <- http/s-> Proxy <- http/s -> App

vs

Client <- http/s-> Proxy <- AJP -> App


Seems the answer I was looking for is perfomance

http://www.ehow.com/facts_7181755_ajp-protocol_.html

Tags:

Ajp