RabbitMQ 3.5.2 發布,AMQP 消息服務器
RabbitMQ 3.5.2 發布,此版本是個 bug 修復版本,主要改進如下:
服務器
增強:
Enhancements
-
Improve integration with Docker (rabbitmq/rabbitmq-server#113). Problems which were previously worked around in the official Docker image, were fixed in RabbitMQ. In particular:
-
Add a way to send log messages (both "normal" and sasl messages) to stdout (rabbitmq/rabbitmq-server#128).
-
Do not try to use
exec
beforesu ...
as su(1) forks a process anyway (since 3.5.0, rabbitmq/rabbitmq-server#129). -
Report a queue is under flow control only if it was in this situation in the last 1 second, instead of the last 5 seconds previously (rabbitmq/rabbitmq-server#138).
-
Add a check to ensure the Mnesia directory is not shared with the PID file location or the plugin expansion directory (rabbitmq/rabbitmq-server#120). This should help users facing non-working automatic clustering.
Bug 修復
-
Ensure the file handle cache remains under the memory high watermark when syncing a mirrored queue (since 2.0.0, rabbitmq/rabbitmq-server#134).
-
Restore support for messages stored on disk with the previous
x-death
header format (since 3.5.1, rabbitmq/rabbitmq-server#152). -
Ensure passwords containing
$
characters are properly escaped so they are not interpreted by the shell, when a password is changed usingrabbitmqctl change_password
(since 1.5.2, rabbitmq/rabbitmq-server#66).
更多改進請看這里:https://github.com/rabbitmq/rabbitmq-server/releases/tag/rabbitmq_v3_5_2
此版本現已提供下載:
RabbitMQ 是由 LShift 提供的一個 Advanced Message Queuing Protocol (AMQP) 的開源實現,由以高性能、健壯以及可伸縮性出名的 Erlang 寫成,因此也是繼承了這些優點。
AMQP 里主要要說兩個組件:Exchange 和 Queue (在 AMQP 1.0 里還會有變動),如下圖所示,綠色的 X 就是 Exchange ,紅色的是 Queue ,這兩者都在 Server 端,又稱作 Broker ,這部分是 RabbitMQ 實現的,而藍色的則是客戶端,通常有 Producer 和 Consumer 兩種類型: