Important
You are browsing upcoming documentation for version 7.1 of OroCommerce, scheduled for release in 2027. Read the documentation for the latest LTS version to get up-to-date information.
See our Release Process documentation for more information on the currently supported and upcoming releases.
Logging, Error Handling and Debugging
While consuming a message queue, you may encounter unexpected errors. This page highlights how to handle errors, work with logs, and investigate unplanned issues that occur during message processing.
Logs, Output, and Verbosity
Message Queue Consumer uses MonologBundle to output logs. To log a message at any level or priority, inject LoggerInterface into your processor and log errors as described in Logging with Monolog" Symfony doc. The consumer console command has different verbosity levels that determine which messages appear in the output.
Console option |
Output Errors |
|---|---|
|
|
(none) |
|
|
|
|
|
|
|
LogLevel::ERROR and higher are also printed to the prod.log file.
To change the minimum log level printed to prod.log, use the oro:logger:level command, which temporarily changes the configured logging level.
For more details, see the Temporarily Decrease Log Level documentation.
Note
Keep in mind that prod.log is just an example. Your log file name may differ depending on your Monolog handlers configuration.
Processors
Sometimes, it is necessary to add your own data to log extra data. For more details on how to create your own processor and add the monolog.processor DIC tag to it, see the related Processors documentation.
Handlers
Consumer output is based on Monolog, so it supports a stack of handlers that write log entries to different locations (for example, files, a database, or Slack). For more information, see the related Symfony documentation.
Handlers are useful when your production environment uses a real-time log service such as Google Stackdriver. Read more in the How to write logs to Stackdriver.
Formatters
To format the record before logging it to each logging handler, use a Formatter that implements Monolog\Formatter\FormatterInterface.
If your production is configured with a real-time log service (ELK Stack), read the related documentation on how to write logs to it.
Console Messages Output
Message Queue Consumer provides ConsoleHandler that listens to console events and writes log messages to the console output depending on the console verbosity. It uses a ConsoleFormatter to format the record before logging it. The record format pattern is shown below:
"%datetime% %start_tag%%channel%.%level_name%%end_tag%: %message%%context%%extra%\n"
Consumer Heartbeat
An administrator must be informed about the state of consumers in the system (whether there is at least one alive).
This is covered by the Consumer Heartbeat functionality that works in the following way:
On start and after every configured time period, each consumer calls the
tickmethod of the ConsumerHeartbeat service that informs the system that the consumer is alive.The oro:cron:message-queue:consumer_heartbeat_check cron command is periodically executed to check consumers’ state. If no alive consumers found, the
oro/message_queue_statesocket message is sent notifying all logged-in users that the system may work incorrectly (because consumers are not available).The same check is also performed when a user logs in. This is done to notify users about the problem as soon as possible.
The check period can be changed in the application configuration file using the consumer_heartbeat_update_period option:
oro_message_queue:
consumer:
heartbeat_update_period: 20 #the update period was set to 20 minutes
The default value of the heartbeat_update_period option is 15 minutes.
To disable the Consumer Heartbeat functionality, set the heartbeat_update_period option to 0.
Consumer Interruption
Friendly Consumer Interruption
Sometimes you need to interrupt the consumer while it consumes and processes messages, for example to avoid not actual cached data, maintenance mode, or memory leaks. You may also want to limit the messages or processing time during debugging, or for any other reason to stop the consumer. Below is a list of friendly consumer interruptions:
Output |
Description |
|---|---|
|
Consumer was interrupted with stop signal: |
|
Passed time limit configured with command option |
|
Passed message limit configured with command option |
|
Passed time limit configured with command option |
|
Cache was cleared (it also will be triggered after saving System Configuration), more details here |
|
Schema was updated, and cache was cleared |
|
Maintenance mode was turned off |
Normal interruption occurs only after a message is processed. If an event fires during message processing, the consumer finishes processing the message and then interrupts.
Unfriendly Consumer Interruption
If the consumer is interrupted abruptly, check the prod.log file. It should contain the following message.
app.ERROR: Consuming interrupted, reason: Something went wrong.
The full exception stack trace is printed in the console output.
To find the reason for the interruption, use the Fingers Crossed Handler in the monolog configuration. It buffers all logs at the configured log level and prints them to prod.log when an error occurs (triggered by the console.error event).
Note
All logs buffer collected before the error occurred will be erased before receiving the related message. The message will contain the logs record.
Example of Fingers Crossed Handler Configuration
To log into all environments, add the following code to config.yml. To log only in prod, add the code to config_prod.yml:
Note
Out of the box, the Fingers Crossed Handler is already enabled, and you do not have to configure it manually.
Interrupting Consumer from Code
Create consumption extension with its own logic:
namespace Oro\Component\MessageQueue\Consumption\Extension;
use Oro\Component\MessageQueue\Consumption\AbstractExtension;
use Oro\Component\MessageQueue\Consumption\Context;
class CustomExtension extends AbstractExtension
{
#[\Override]
public function onPostReceived(Context $context)
{
// ... own logic
if (!$context->isExecutionInterrupted()) {
$context->setExecutionInterrupted(true);
$context->setInterruptedReason('Message with reason of interruption.');
}
}
}
Declare service:
Errors and Crashes
When the application is running and the consumer is configured, you may encounter unforeseen errors. Some common errors that may occur during your application’s daily operations:
Database related errors (connection errors, accessing errors, query errors, data errors)
File system errors (permission errors, no disk space errors)
Third-party integrations errors
If one of these errors occurs, the processor returns REQUEUE and the message is redelivered.
Error Reporting Level
The error reporting level can be changed through customization:
AppKernel::getErrorReportingLevel()
Profiling
Below is a list of key variables added to extra and shown in the output.
Variable |
Description |
|---|---|
|
Extension class which was caused by log message |
|
Processor that processes queue messages |
|
Unique message ID |
|
Message body |
|
List of message properties that were received from message broker |
|
List of message headers that were received from message broker |
|
Message priority (responsible for the order in which messages are processed) |
|
Current memory usage |
|
Memory usage difference (current memory usage minus memory usage at the beginning of current message processing) |
|
Peak memory usage (maximum value of |
|
Time passed since the consumer started current message processing |
Separate Message Queue Consumer Logs
If you want to log the consumer channel to a different file, create a new handler and configure it to log only messages from the consumer channel. You can add this to config.yml to log into all environments, or just config_prod.yml to log only in prod:
monolog:
handlers:
consumer_buffer:
type: fingers_crossed
action_level: error
handler: consumer
buffer_size: 100
channels: [ 'consumer' ] # The channels configuration only works for top-level handlers
consumer:
type: stream
path: "%kernel.logs_dir%/consumer_%kernel.environment%.log"
level: debug
# ...
filtered:
type: filter
min_level: info
handler: main
channels: [ '!consumer' ] # Exclude 'consumer' channel for main handlers chain
Third Party Logging Systems
For more information, see the following external resources: