Queue Service IntroductionThe QueueService implements access to message queues available as local or remote services. The simple queues that QueueService supports implement a messaging pattern that enables different processes to exchange messages in a reliable and scalable way. One common use case for such message queues is job dispatching, in which a frontend web server adds a complex job to a queue for a backend worker to do the expensive processing. The frontend web server can then return the page without waiting for the work to be completed. The interface Zend_Cloud_QueueService_Adapter defines the methods which concrete queue service adapters must implement. The following adapters are shipped with the Simple Cloud API: Instantiating and Configuring QueueService AdaptersTo instantiate a QueueService adapter, use the static method Zend_Cloud_QueueService_Factory::getAdapter(), which accepts either an array or a Zend_Config object. Three parameters apply to all adapters, while the remaining parameters are adapter-specific properties; these adapter-specific properties often contain access details. The general parameters are as follows:
Example #1 Instantiating an Amazon SQS adapter via the factory
Service-Specific Options
Basic conceptsEvery queue service typically offers one or more queues. Each queue can store zero or more messages. A process can send a message to a queue, and another process can remove it. Usually processes remove the oldest message in the queue, observing a first in, first out (FIFO) queue-style interface. ExceptionsIf some error occurs inside the storage service, a Zend_Cloud_QueueService_Exception is thrown. If the exception was caused by underlying service driver, you can use the getClientException() method to retrieve the original exception. Since different cloud providers implement different sets of services, some adapters do not implement certain features. In this case, the Zend_Cloud_OperationNotAvailableException exception is thrown. Create a queueThe createQueue() method creates a message queue with the given name. It returns a queue identifier, the format of which is service-dependent. Some services return a URL for the queue identifier, while others return a GUID to use in future operations. Example #2 Creating a queue
Delete a queueThe deleteQueue() method removes the queue from the service. You must use the identifier received from createQueue() when calling deleteQueue(). Example #3 Deleting a queue
List queuesTo retrieve the list of all queues in the system, use the listQueues() method. Example #4 Listing queues
Set queue metadataIn some services, you can associate a set of key-value pairs with the queue as queue metadata. To set queue metadata, use the storeQueueMetadata() method: Example #5 Setting queue metadata
Fetch queue metadataTo retrieve queue metadata, use the fetchQueueMetadata() method. Example #6 Fetching queue metadata
Send a messageTo add a message to a queue, use the sendMessage() method. The message is passed as an unstructured string. Example #7 Sending a message
Receive a messageTo receive one or more messages from the queue, use the receiveMessages() method. This method returns a Zend_Cloud_QueueService_MessageSet instance by default, unless configured otherwise. Each element of the MessageSet is an instance of Zend_Cloud_QueueService_Message by default, unless configuired otherwise. Example #8 Receiving a message
When a message is received, it is not visible to other clients. It is not deleted from the queue, however, until the client that has received the message calls the deleteMessage() method. If it is not deleted during the specfied visibility timeout, it will become visible to all other clients again. In other words, all clients will be able to retrieve the message with the receiveMessages() method if the visibility timeout is exceeded. Delete a messageIn order to delete the message from the queue, use the deleteMessage() method. This method deletes the specified message. Example #9 Deleting a message
Accessing concrete adaptersSometimes it is necessary to retrieve the concrete adapter for the service that the Queue API is working with. This can be achieved by using the getAdapter() method.
Example #10 Using a concrete adapter
|