• Stars
    star
    309
  • Rank 130,484 (Top 3 %)
  • Language
    Crystal
  • License
    MIT License
  • Created about 7 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An intelligent AMQP proxy, with connection and channel pooling/reusing

AMQProxy

An intelligent AMQP proxy with AMQP connection and channel pooling/reusing. Allows e.g. PHP clients to keep long lived connections to upstream servers, increasing publishing speed with a magnitude or more.

In the AMQP protocol, if you open a connection the client and the server has to exchange 7 TCP packages. If you then want to publish a message you have to open a channel which requires 2 more, and then to do the publish you need at least one more, and then to gracefully close the connection you need 4 more packages. In total 15 TCP packages, or 18 if you use AMQPS (TLS). For clients that can't for whatever reason keep long-lived connections to the server this has a considerable latency impact.

This proxy server, if run on the same machine as the client can save all that latency. When a connection is made to the proxy the proxy opens a connection to the upstream server, using the credentials the client provided. AMQP traffic is then forwarded between the client and the server but when the client disconnects the proxy intercepts the Channel Close command and instead keeps it open on the upstream server (if deemed safe). Next time a client connects (with the same credentials) the connection to the upstream server is reused so no TCP packages for opening and negotiating the AMQP connection or opening and waiting for the channel to be opened has to be made.

Only "safe" channels are reused, that is channels where only Basic Publish or Basic Get (with no_ack) has occurred. Any channels who has subscribed to a queue will be closed when the client disconnects. However, the connection to the upstream AMQP server are always kept open and can be reused.

In our benchmarks publishing one message per connection to a server (using TLS) with a round-trip latency of 50ms, takes on avarage 10ms using the proxy and 500ms without. You can read more about the proxy here Maintaining long-lived connections with AMQProxy

As of version 2.0.0 connections to the server can be shared by multiple client connections. When a client opens a channel it will get a channel on a shared upstream connection, the proxy will remap the channel numbers between the two. Many client connections can therefor share a single upstream connection. The benefit is that way fewer connections are needed to the upstream server. For instance, establihsing 10.000 connections after a server reboot might normally take several minutes, but with this proxy it can happen in seconds.

Installation

Debian/Ubuntu

Packages are available at Packagecloud. Install the latest version with:

curl -fsSL https://packagecloud.io/cloudamqp/amqproxy/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/amqproxy.gpg > /dev/null
. /etc/os-release
echo "deb [signed-by=/usr/share/keyrings/amqproxy.gpg] https://packagecloud.io/cloudamqp/amqproxy/$ID $VERSION_CODENAME main" | sudo tee /etc/apt/sources.list.d/amqproxy.list
sudo apt-get update
sudo apt-get install amqproxy

If you need to install a specific version, do so using the following command: sudo apt install lavinmq=<version>. This works for both upgrades and downgrades.

Docker/Podman

Docker images are published at Docker Hub. Fetch and run the latest version with:

docker run --rm -it -p 5673:5673 cloudamqp/amqproxy amqp://SERVER:5672

Note: If you are running the upstream server on localhost then you will have to add the --network host flag to the docker run command.

Then from your AMQP client connect to localhost:5673, it will resuse connections made to the upstream. The AMQP_URL should only include protocol, hostname and port (only if non default, 5672 for AMQP and 5671 for AMQPS). Any username, password or vhost will be ignored, and it's up to the client to provide them.

Installation (from source)

Install Crystal

shards build --release --production
cp bin/amqproxy /usr/bin
cp extras/amqproxy.service /etc/systemd/system/
systemctl enable amqproxy
systemctl start amqproxy

You probably want to modify /etc/systemd/system/amqproxy.service and configure another upstream host.

Configuration

Available settings

Setting Description Command line Environment variable Config file setting Default value
Listen address Address to listen on. This is the hostname/IP address which will be the target of clients --listen / -l LISTEN_ADDRESS [listen] > address or [listen] > bind localhost
Listen port Port to listen on. This is the port which will be the target of clients --port / -p LISTEN_PORT [listen] > port 5673
Log level Controls log verbosity.

Available levels (see 84codes/logger.cr):
- DEBUG: Low-level information for developers
- INFO: Generic (useful) information about system operation
- WARN: Warnings
- ERROR: Handleable error conditions
- FATAL: Unhandleable errors that results in a program crash
--debug / -d: Sets the level to DEBUG - [main] > log_level INFO
Idle connection timeout Maximum time in seconds an unused pooled connection stays open --idle-connection-timeout / -t IDLE_CONNECTION_TIMEOUT [main] > idle_connection_timeout 5
Upstream AMQP URL that points to the upstream RabbitMQ server to which the proxy should connect to. May only contain scheme, host & port (optional). Example: amqps://rabbitmq.example.com Pass as argument after all options AMQP_URL [main] > upstream

How to configure

There are three ways to configure the AMQProxy.

  • Environment variables
  • Passing options & argument via the command line
    • Usage: amqproxy [options] [amqp upstream url]
    • Additional options, that are not mentioned in the table above:
      • --config / -c: Load config file at given path
      • --help / -h: Shows help
      • --version / -v: Displays AMQProxy version
  • Config file

Precedence

  1. Config file
  2. Command line options & argument
  3. Environment variables

Settings that are avilable in the config file will override the corresponding command line options. A command line option will override the corresponding environment variable. And so on. The different configuration approaches can also be mixed.

More Repositories

1

lavinmq

Lightweight and fast AMQP (0-9-1) server
Crystal
311
star
2

amqp-client.js

AMQP 0-9-1 TypeScript client both for Node.js and browsers (using WebSocket)
TypeScript
176
star
3

amqp-client.cr

An AMQP 0-9-1 client for Crystal
Crystal
64
star
4

android-example

Java
54
star
5

terraform-provider-cloudamqp

Terraform Provider for CloudAMQP
Go
35
star
6

websocket-tcp-relay

Expose any TCP server as a WebSocket endpoint
Crystal
28
star
7

rabbitmq-vshovel

RabbitMQ vShovel plugin
Erlang
25
star
8

amqp-client.rb

Modern AMQP 0-9-1 Ruby client
Ruby
18
star
9

amqp-sse

Ruby Sinatra app illustrating how to use Server Sent Events and AMQP for realtime updates
Ruby
17
star
10

amqpcat

CLI tool for publishing to and consuming from AMQP servers
Crystal
16
star
11

python-amqp-example

How to connect from Python to CloudAMQP
Python
14
star
12

java-amqp-example

Java
11
star
13

rabbitmq-delayed-messages

Ruby snippet, demonstrates how to implement delayed messages in RabbitMQ
10
star
14

nodejs-amqp-example

Example project showing how to connect to CloudAMQP from Node.js
JavaScript
10
star
15

amq-protocol.cr

An AMQP 0.9.1 serialization library for Crystal
Crystal
10
star
16

msg_store_eleveldb_index

eLevelDB backend for RabbitMQ's message index store
Erlang
9
star
17

web-stomp-example

Exampel app in sinatra/javascript to use RabbitMQ Web-stomp
HTML
7
star
18

rmqrecover

Recovers messages from a RabbitMQ data directory
Crystal
6
star
19

php-amqplib-example

How to connect to CloudAMQP from a PHP app
PHP
5
star
20

dotnetcore-amqp-example

C#
4
star
21

DotNetAmqpExample

Simple usage of AMQP demonstrated in a ASP.NET MVC app
C#
4
star
22

clojure-amqp-example

A Clojure example project showing how to connect, publish and consume a message via CloudAMQP
Clojure
2
star
23

php-amqplib-ssl-example

2
star
24

erlang-packages

Erlang debian packages
Dockerfile
1
star
25

amqpshovel

High performance AMQP shovel
Crystal
1
star
26

cloudamqp-connector

Deprecated, please use https://github.com/mulesoft/mule-transport-amqp instead
Java
1
star
27

lavinmq-action

GitHub Action to run LavinMQ
1
star
28

get-me-hired-producer

Making the job search process easier
Python
1
star
29

mesque

A Resque compatible work library using RabbitMQ as backend for relability and performance
Ruby
1
star
30

lavinmq-tutorials

Beginner friendly LavinMQ tutorials that you can't refuse :)
JavaScript
1
star
31

rabbitmq-summit

Website for the rabbitmq-summit
SCSS
1
star
32

rabbitmq-integration-demos

Integrating RabbitMQ with other technologies
Python
1
star
33

websockets-rabbitmq-benchmarks

Benchmark web-mqtt, web-stomp, and web-amqp
JavaScript
1
star