Jump to content

Broker pattern: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m Tagging pages with bare URLs for citation, prior to follow up with tools (via WP:JWB)
Filled in 3 bare reference(s) with reFill 2
Line 1: Line 1:
{{confused|Mediator pattern}}
{{confused|Mediator pattern}}
{{Prose|date=February 2023}}
{{Prose|date=February 2023}}
The '''broker pattern''' is an [[architectural pattern]] that can be used to structure [[distributed software]] systems with decoupled components that interact by [[remote procedure call]]s. A broker component is responsible for coordinating communication, such as forwarding requests, as well as for transmitting results and exceptions.<ref>https://www.oreilly.com/library/view/pattern-oriented-software-architecture/9781119963998/chap12-sec005.html {{bare URL inline|date=March 2023}}</ref>
The '''broker pattern''' is an [[architectural pattern]] that can be used to structure [[distributed software]] systems with decoupled components that interact by [[remote procedure call]]s. A broker component is responsible for coordinating communication, such as forwarding requests, as well as for transmitting results and exceptions.<ref>{{Cite web|url=https://www.oreilly.com/library/view/pattern-oriented-software-architecture/9781119963998/chap12-sec005.html|title=Solution: Use a Broker - Pattern-Oriented Software Architecture For Dummies [Book]|website=www.oreilly.com|accessdate=26 March 2023}}</ref>


== Definition ==
== Definition ==
Line 27: Line 27:
** ''Subscriber''
** ''Subscriber''


== Advantages<ref>https://www.academia.edu/57594620/The_Broker_Architectural_Framework {{bare URL inline|date=March 2023}}</ref> ==
== Advantages<ref>{{Cite journal|url=https://www.academia.edu/57594620/The_Broker_Architectural_Framework|title=The Broker Architectural Framework|first=Michael|last=Stal|date=1 January 1995|accessdate=26 March 2023|via=www.academia.edu}}</ref> ==
* Dynamic changes, additions, deletions and relocations of components possible.
* Dynamic changes, additions, deletions and relocations of components possible.
* One source of communication with / to the broker. which define the interface.
* One source of communication with / to the broker. which define the interface.
Line 42: Line 42:


== Confusions around the pattern ==
== Confusions around the pattern ==
There is a lot of amalgam with the [[publish–subscribe pattern]] because it shares a certain amount of similarities (e.g. MQTT-Client-Broker-Explained<ref>https://www.hivemq.com/blog/mqtt-essentials-part-3-client-broker-connection-establishment/ {{bare URL inline|date=March 2023}}</ref> by HiveMQ) . Nevertheless, when it comes to the representation, there are some core differences:
There is a lot of amalgam with the [[publish–subscribe pattern]] because it shares a certain amount of similarities (e.g. MQTT-Client-Broker-Explained<ref>{{Cite web|url=https://www.hivemq.com/blog/mqtt-essentials-part-3-client-broker-connection-establishment/|title=MQTT Client and Broker and MQTT Server Connection Establishment Explained - MQTT Essentials: Part 3|first=The HiveMQ|last=Team|website=www.hivemq.com|accessdate=26 March 2023}}</ref> by HiveMQ) . Nevertheless, when it comes to the representation, there are some core differences:
* The ''Broker architectural pattern'' is represented by a ''Many'' to ''One'' to ''Many'' diagram.
* The ''Broker architectural pattern'' is represented by a ''Many'' to ''One'' to ''Many'' diagram.
* The ''Publish-subscribe architectural pattern'' is represented by ''Many'' to ''Many'' diagram. Here, the messaging functionalities are ''hidden'' as a [[Cross-cutting concern]].
* The ''Publish-subscribe architectural pattern'' is represented by ''Many'' to ''Many'' diagram. Here, the messaging functionalities are ''hidden'' as a [[Cross-cutting concern]].

Revision as of 13:35, 26 March 2023

The broker pattern is an architectural pattern that can be used to structure distributed software systems with decoupled components that interact by remote procedure calls. A broker component is responsible for coordinating communication, such as forwarding requests, as well as for transmitting results and exceptions.[1]

Definition

The broker pattern is an architecture pattern that involves the use of an intermediary software entity called "broker" to facilitate communication between two or more software components. The broker acts as a "middleman" between the components, allowing them to communicate without being directly aware of each other's existence.

In the broker pattern, the broker is responsible for receiving messages from one component and forwarding them to the appropriate recipient. The components that communicate through the broker are known as servers or clients. The broker may also perform additional tasks, such as filtering, modifying messages, ensuring a quality of service (QoS) e.g. 0 for "at most once", or security , or providing additional services to the software components.

The broker pattern allows the components to remain decoupled and focused on their own responsibilities, while still being able to communicate and collaborate with other components in the system. It can also be used to reduce the number of dependencies between components, making the system more flexible and easier to maintain.

Terminology

Broker

  • Maintain a routing table of registered software components.
  • Maintain a filter table to reroute the transiting messages to the right software components.
  • May assure additional functionalities such as information security and quality of service.

Server

  • Software components responsible for sending a message out.
  • It can also be found under the name of publisher.

Client

  • Software components that subscribed and awaits a specific message.
  • It can also be found under the following names:
    • Consumer
    • Subscriber

Advantages[2]

  • Dynamic changes, additions, deletions and relocations of components possible.
  • One source of communication with / to the broker. which define the interface.
  • Components do not need to know each other.

Disadvantages

  • One central component that needs to be robust and efficiently written.
  • No data consistency of transmitted messages.

Real-life implementation of the pattern

Confusions around the pattern

There is a lot of amalgam with the publish–subscribe pattern because it shares a certain amount of similarities (e.g. MQTT-Client-Broker-Explained[3] by HiveMQ) . Nevertheless, when it comes to the representation, there are some core differences:

  • The Broker architectural pattern is represented by a Many to One to Many diagram.
  • The Publish-subscribe architectural pattern is represented by Many to Many diagram. Here, the messaging functionalities are hidden as a Cross-cutting concern.

References

  1. ^ "Solution: Use a Broker - Pattern-Oriented Software Architecture For Dummies [Book]". www.oreilly.com. Retrieved 26 March 2023.
  2. ^ Stal, Michael (1 January 1995). "The Broker Architectural Framework". Retrieved 26 March 2023 – via www.academia.edu. {{cite journal}}: Cite journal requires |journal= (help)
  3. ^ Team, The HiveMQ. "MQTT Client and Broker and MQTT Server Connection Establishment Explained - MQTT Essentials: Part 3". www.hivemq.com. Retrieved 26 March 2023.