A storage space in memory or on disk that holds incoming transmissions until the computer can process them. See messaging middleware.
Download Computer Desktop Encyclopedia to your iPhone/iTouch
| Computer Desktop Encyclopedia: message queue |
A storage space in memory or on disk that holds incoming transmissions until the computer can process them. See messaging middleware.
Download Computer Desktop Encyclopedia to your iPhone/iTouch
| 5min Related Video: Message queue |
| Wikipedia: Message queue |
| This article needs additional citations for verification. Please help improve this article by adding reliable references. Unsourced material may be challenged and removed. (May 2009) |
In computer science, message queues and mailboxes are software-engineering components used for interprocess communication, or for inter-thread communication within the same process. They use a queue for messaging – the passing of control or of content. Group communication systems provide similar kinds of functionality.
Contents |
Message queues provide an asynchronous communications protocol, meaning that the sender and receiver of the message do not need to interact with the message queue at the same time. Messages placed onto the queue are stored until the recipient retrieves them.
Most message queues have set limits on the size of data that can be transmitted in a single message. Those that do not have such limits are known as mailboxes.
Many implementations of message queues function internally: within an operating system or within an application. Such queues exist for the purposes of that system only.[1] [2]
Other implementations allow the passing of messages between different computer systems, potentially connecting multiple applications and multiple operating systems.[3] These message queueing systems typically provide enhanced resilience functionality to ensure that messages do not get "lost" in the event of a system failure. Examples of commercial implementations of this kind of message queueing software (also known as Message Oriented Middleware) include IBM's WebSphere MQ (formerly MQ Series) and Oracle Advanced Queuing (AQ). There is a Java standard called Java Message Service, which has, associated with it, a number of implementations, both proprietary and free software.
There are a number of open source choices of messaging middleware systems, including JBoss Messaging, JORAM,[4] ActiveMQ, Open Message Queue, RabbitMQ (an implementation, in Erlang, of AMQP),[5] ISectd,[6] Skytools PgQ (created by Skype, runs atop PostgreSQL),[7] and Apache Qpid.[8]
In addition to open source systems, hardware-based messaging middleware is a growing trend with vendors like Solace Systems, Sonoa and Tervela offering queuing through silicon or silicon/software datapaths.
Most RTOSes, such as VxWorks and QNX operating systems encourage the use of message queueing as the primary IPC or inter-thread communication mechanism. The resulting tight integration between message passing and CPU scheduling is attributed as a main reason for the usability of RTOSes for real time applications. Early examples of commercial RTOSes that encouraged a message-queue basis to inter-thread communication also include VRTX and pSOS+, both of which date to the early 1980s.
In a typical message-queueing implementation, a system administrator installs and configures off-the-shelf message-queueing software (a queue manager), and defines a named message queue.
An application then registers a software routine that "listens" for messages placed onto the queue.
Second and subsequent applications may connect to the queue and transfer a message onto it.
The queue-manager software stores the messages until a receiving application connects and then calls the registered software routine. The receiving application then processes the message in an appropriate manner.
There are often numerous options as to the exact semantics of message passing, including:
These are all considerations that can have substantial effects on transaction semantics, system reliability, and system efficiency.
Many of the more widely-known communications protocols in use operate synchronously. The HTTP protocol – used in the World Wide Web and in web services – offers an obvious example.
In many situations this makes perfect sense; for example, a user sends a request for a web page and then waits for a reply.
However, other scenarios exist in which such behaviour is not appropriate. For example, an application may need to notify another that an event has occurred, but does not need to wait for a response. Another example occurs in publish/subscribe systems, where an application "publishes" information for any number of clients to read. In both these examples it would not make sense for the sender of the information to have to wait if, for example, one of the recipients had crashed.
Alternatively, an interactive application may need to respond to certain parts of a request immediately (such as telling a customer that a sales request has been accepted, and handling the promise to draw on inventory), but may queue other parts (such as completing calculation of billing, forwarding data to the central accounting system, and calling on all sorts of other services) to be done some time later.
In all these sorts of situations, having a subsystem which does asynchronous message-queuing (or alternatively, a broadcast messaging system) can help improve the behaviour of the overall system.
|
||||||||
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)
| queue (technology) | |
| link field (computer science) | |
| MQSeries (technology) |
| How do you convert Bytes Message to text message in jms.The bytes message is coming form Queue? Read answer... | |
| What are queues? Read answer... | |
| What is a printer queue? Read answer... |
| What is the purpose of a queue when messages are being received? | |
| Where pipes are used and where message queues used in Linux? | |
| What is the difference between a pipe and message queue - 44k? |
Copyrights:
![]() | Computer Desktop Encyclopedia. THIS COPYRIGHTED DEFINITION IS FOR PERSONAL USE ONLY. All other reproduction is strictly prohibited without permission from the publisher. © 1981-2009 Computer Language Company Inc. All rights reserved. Read more | |
![]() | Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Message queue". Read more |
Mentioned in