digitalclaim / azure-queue-laravel
Azure Storage Queue for Laravel based on triggered Azure Functions.
Fund package maintenance!
digitalclaim
Requires
- php: ^8.1
- illuminate/contracts: ^10.0
- nesbot/carbon: ^2.72
- spatie/laravel-package-tools: ^1.14.0
- squigg/azure-queue-laravel: ^11.0
Requires (Dev)
- larastan/larastan: ^2.0.1
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.8
- orchestra/testbench: ^8.8
- pestphp/pest: ^2.20
- pestphp/pest-plugin-arch: ^2.5
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
This package is auto-updated.
Last update: 2024-11-08 20:10:48 UTC
README
Azure Storage Queue for Laravel. This works fundamentally different than the normal Laravel queue worker. We will push items to the storage queue as usual, but instead of constant pulling with something like queue:liste
we use Azure Storage Queue trigger to call a Azure Function. The Azure Function will then call our Laravel app with the job payload to process it. There is no need to run a queue:work/listen
command.
This package is inspired by stackkit/laravel-google-cloud-tasks-queue and based on squigg/azure-queue-laravel.
Warning: Currently we do not save failed jobs in any way. However, it's possible to use Laravel queue callbacks to do so.
public function boot(): void { Queue::before(function (JobProcessing $event) { // before processing }); Queue::after(function (JobProcessed $event) { // after processing }); Queue::exceptionOccurred(function (JobExceptionOccurred $event) { // on error (for each retry) }); Queue::failing(function (JobFailed $event) { // on fail (after all retries) }); }
Installation
You can install the package via composer:
composer require digitalclaim/azure-queue-laravel
You can publish the config file with:
php artisan vendor:publish --tag="azure-queue-laravel-config"
This is the contents of the published config file:
return [ 'worker' => [ 'backoff' => env('DIGITALCLAIM_AZURE_QUEUE_LARAVEL_BACKOFF', 60 * 5), // backoff time in seconds 'maxTries' => env('DIGITALCLAIM_AZURE_QUEUE_LARAVEL_MAXTRIES', 3), // max number of retries ], ];
Usage
- You already have setup your Azure App Service and Storage Account
- Add new queue connection in
config/queue.php
'azure' => [ 'driver' => 'azurepush', // Leave this as-is 'protocol' => 'https', // https or http 'accountname' => env('AZURE_QUEUE_STORAGE_NAME'), // Azure storage account name 'key' => env('AZURE_QUEUE_KEY'), // Access key for storage account 'queue' => env('AZURE_QUEUE_NAME'), // Queue container name 'timeout' => 60, // Seconds before a job is released back to the queue 'endpoint' => env('AZURE_QUEUE_ENDPOINTSUFFIX'), // Optional endpoint suffix if different from core.windows.net 'queue_endpoint' => env('AZURE_QUEUE_ENDPOINT'), // Optional endpoint for custom addresses like http://localhost/my_storage_name ],
- Set environment variables
QUEUE_CONNECTION=azure AZURE_QUEUE_STORAGE_NAME=YOUR_QUEUE_STORAGE_NAME AZURE_QUEUE_KEY=YOUR_QUEUE_KEY AZURE_QUEUE_NAME=YOUR_QUEUE_NAME #AZURE_QUEUE_ENDPOINTSUFFIX=core.windows.net #AZURE_QUEUE_ENDPOINT=https
- Trigger Azure Function App (nodejs) for new queue items (see https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue-trigger)
const axios = require("axios"); module.exports = async function (context, myQueueItem, more) { try { const response = await axios.post( "https://YOURSITE.azurewebsites.net/handle-queue", { id: context.bindingData.id, message: myQueueItem, meta: { dequeueCount: context.bindingData.dequeueCount, expirationTime: context.bindingData.expirationTime, insertionTime: context.bindingData.insertionTime, nextVisibleTime: context.bindingData.nextVisibleTime, popReceipt: context.bindingData.popReceipt, }, } ); context.log(response.data); } catch (error) { // If the promise rejects, an error will be thrown and caught here context.log(error); } context.done(); };
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.