Download the PHP package ssigwart/aws-high-availability-sqs without Composer

On this page you can find all versions of the php package ssigwart/aws-high-availability-sqs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package aws-high-availability-sqs

AWS High Availability SQS

This library makes it easy to write SQS messages with high availability. It includes the following features:

Setup

You should set up at least 2 SQS queues and 2 S3 buckets in separate regions. The SQS queues are the messages you want to process. The S3 buckets will be used for oversized queue messages that are sent.

S3 Lifecycle Rules

When deleting SQS messages that were backed by an S3 file, the code will attempt to delete the S3 file as well. However, in some cases, that S3 files may not be deleted. For example, it it advised to catch and ignore AwsHighAvailabilitySqsDeleteS3FileDeletionFailureException exceptions when calling AwsHighAvailabilitySqsReceiver::deleteMessage. Also, any messages that expire from the queue or end up going to the dead letter queue will note have the file deleted. Therefore, it is advised to set up lifecycle rules on the S3 bucket. You can find instructions on setting up object expiration at https://docs.aws.amazon.com/AmazonS3/latest/userguide/lifecycle-expire-general-considerations.html. 30 days is a safe bet.

Usage

The APIs require you to pass in an \Aws\Sdk object. In the examples below, $awsSdk is used for this object.

Sending an SQS Message

  1. Create a list of available SQS queues to send to.
    • This is an SqsAvailableQueues object, which includes a primary queue and optional alternative queues.
  2. Create a list of S3 buckets to back large messages.
    • This is and S3AvailableUploadFileBucketAndKeyLocations object.
    • You can add anything that implements S3FileBucketAndKeyProviderInterface to the list of locations.
    • The simplest option is to use S3FileBucketAndKey, which implements this interface.
  3. Set up SqsMessageSendingMetadata with metadata for the message to be sent.
  4. Create an AwsHighAvailabilitySqsSender object and call sendMessageWithS3LargeMessageBacking.
    • You can use the returned object to get the queue used and the message ID

SqsMessageSendingMetadata Options

The SqsMessageSendingMetadata class allows you to customize the following when sending messages:

Receiving SQS Messages

  1. Create an SqsAvailableQueue object with the queue you want to receive from.
  2. Set up SqsMessageReceivingMetadata with metadata for receiving messages.
  3. Create an AwsHighAvailabilitySqsReceiver object and call receivedMessagesWithS3LargeMessageBacking.
    • The returned object includes the SQS messages, which you can get using getSqsMessages.

SqsMessageReceivingMetadata Options

The SqsMessageReceivingMetadata class allows you to customize the following when receiving messages:

Deleting SQS Messages

  1. Create an SqsAvailableQueue object with the queue you want to delete from.
  2. Create an AwsHighAvailabilitySqsReceiver object and call deleteMessage.
    • For any failures, a AwsHighAvailabilitySqsDeleteException will be thrown.
    • However, if a AwsHighAvailabilitySqsDeleteS3FileDeletionFailureException exception is thrown, the SQS message will have been successfully deleted, so it's advisable to ignore the exception besides possibly logging it.

All versions of aws-high-availability-sqs with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0.0
aws/aws-sdk-php Version ^3.0
ssigwart/aws-high-availability-s3 Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ssigwart/aws-high-availability-sqs contains the following files

Loading the files please wait ....