imper86/supervisor-bundle

Symfony bundle to create/update supervisor configurations and control supervisor process

Installs: 46

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 1

Open Issues: 0

Type:symfony-bundle

v2.2.1 2020-02-13 15:48 UTC

This package is auto-updated.

Last update: 2024-04-14 01:41:32 UTC


README

Symfony bundle to create/update supervisor configurations and control supervisor process.

This bundle was heavily inspired by phobetor/rabbitmq-supervisor-bundle.

Installation

Install with composer:

composer require imper86/supervisor-bundle

Add bundle to your bundles.php:

Imper86\SupervisorBundle\Imper86SupervisorBundle::class => ['all' => true]

Configuration

To start using this bundle you must configure your supervisor "instances". Instances are groups of commands that are controlled together.

So, if you want some commands to be started/stopped/etc separately it's possible by using another instance.

Example config:

imper86_supervisor:
    # you can define workspace dir for bundle, this is default:
    workspace_directory: '%kernel.project_dir%/var/imper86supervisor/%kernel.environment%'

    # to start using bundle you must configure your instances and worker commands
    instances:
        default:
            commands:
                messenger:
                    command: 'messenger:consume async_high async_low --limit=50'
                    numprocs: 1
                messenger_multiproc:
                    command: 'messenger:consume async_multiproc --limit=50'
                    numprocs: 4
                crawler:
                    command: 'app:crawl'
                    numprocs: 1
        enqueue:
            commands:
                enqueue:
                    command: 'enqueue:consume --message-limit=10'
                    numprocs: 4
        foo_instance:
            commands:
                foo:
                    command: 'app:foo'
                bar:
                    command: 'app:bar'

Console commands

  • i86:supervisor:rebuild - this command will:
    • stop running workers
    • create config files using your configuration
    • ask do you want to start workers
  • i86:supervisor:control - use this command with argument:
    • stop - to stop running workers
    • status - to get supervisor's current status
    • start/restart - starts workers with current configuration
  • i86:supervisor:clean:dirs - Removes every directory in workspace, which is not currently configured
  • i86:supervisor:clean:logs - removes all .log files related to the bundle

Contributing

Any help will be very appreciated :)