定制 michelv/rabbitmq-scaler-bundle 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

michelv/rabbitmq-scaler-bundle

Composer 安装命令:

composer require michelv/rabbitmq-scaler-bundle

包简介

Provides a command to scale RabbitMq consumers up when the need arises.

README 文档

README

Provides a command to launch RabbitMq consumers when the need arises.

About

The RabbitMqScalerBundle extends php-amqplib's RabbitMqBundle by adding a command that handles launching your consumers when they are needed.

$ ./app/console michelv:rabbitmq:scaler your_queue

Every N seconds (default is N=10), the command will check whether there are enough workers to handle the number of messages in the given queue.

The command inherits from rabbitmq:consumer, so that any argument for that command will be applied to the command that launches a consumer.

Consumers are launched, but not terminated. This is something that can be done automatically by setting a connection timeout in your consumer's configuration, or by specifying a number of messages to handle using the --messages option.

Installation

Require the bundle and its dependencies with composer:

$ composer require michelv/rabbitmq-scaler-bundle=dev-master

Register the bundle and the bundle that it depends on:

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new RCH\ConfigAccessBundle\RCHConfigAccessBundle(),
        new Michelv\RabbitMqScalerBundle\MichelvRabbitMqScalerBundle(),
    );
}

Configuration

Queue options

The command will regularly query the RabbitMQ server for the state of the queue being consumed. For this purpose, it needs to know the exact options that you have set up with php-amqplib's RabbitMqBundle.

For example, with the following configuration:

old_sound_rabbit_mq:
    ...
    consumers:
        upload_picture:
            connection:       default
            exchange_options: {name: 'upload-picture', type: direct}
            queue_options:    {name: 'upload-picture'}
            callback:         upload_picture_service

You will need to add this configuration:

michelv_rabbit_mq_scaler:
    consumers:
        upload_picture:
            queue_options:    {name: 'upload-picture'}

Defaults for the command

You can change the defaults in your configuration file.

The defaults are defined thusly:

michelv_rabbit_mq_scaler:
    debug: '%kernel.debug%'
    min_consumers: 1
    max_consumers: 10
    messages: 10
    interval: 10
    iterations: 0
    command: 'rabbitmq:consumer'
    prefix: ''
    log: '/dev/null'
    consumer_service_pattern: 'old_sound_rabbit_mq.%s_consumer'

Examples

No consumers when there are no tasks, a maximum amount of 20 consumers, check every 5 seconds:

$ ./app/console michelv:rabbitmq:scaler --min 0 --max 20 --interval 5 your_queue

Default settings, but each consumer must handle at most 50 messages, or quit when they have used over 100 MB of RAM:

$ ./app/console michelv:rabbitmq:scaler --messages 50 --memory-limit 100 your_queue

Default settings, but each consumer is niced, and the command will stop after 10 iterations:

$ ./app/console michelv:rabbitmq:scaler --prefix 'nice -n 15' --iterations 10 your_queue

统计信息

  • 总下载量: 22
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-11-06

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固