You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

243 lines
7.7 KiB
Plaintext

.. _concepts_messaging:
****************
Messaging system
****************
Scope
=====
This chapter describes the messaging system used for exchanging parameter messages between
different :ref:`SeisComP modules <concepts_modules>` during runtime.
Overview
========
A typical real-time |scname| system consists of data processing and other
modules (clients) and a messaging bus. The messaging bus connects all the
clients letting them exchange information by messages through this bus.
The messaging system is a fundamental concept of SeisComP following the
publish-subscribe pattern :cite:p:`wppubsub`. It is provided by the |scname|
module :ref:`scmaster`.
Clients can be producers (sending messages) and/or consumers (receiving
messages). The basic concept is really simple: A producer sends a message
(some event parameter, arbitrary content) and a consumer read that message and tries to
process it. That's it. That is a very generic approach which requires clients
to understand the message content of each other.
In |scname| this common messaging language consists of well defined message
types and contents. The vast majority of messages sent around are so called
**notifiers**.
Notifiers inform about changes on the data model. They carry just three
attributes:
* The unique identifier of the parent object
* The operation to apply (add, update or remove)
* The subject
Speaking XML, a notifier looks like this:
.. code-block:: xml
<?xml version="1.0" encoding="UTF-8"?>
<seiscomp xmlns="http://geofon.gfz-potsdam.de/ns/seiscomp-schema/0.11" version="0.11">
<Notifier parentID="EventParameters" operation="add">
<Pick publicID="Pick/....">
<!-- All pick attributes will be placed here -->
</Pick>
</Notifier>
</seiscomp>
Each client that receives such a notifier will take further actions if the
information meets its interest. A simple example is :ref:`scautoloc`. It
receives Pick objects in the form as written above. It stores the pick to its
internal data structures and when there are enough picks to form an Origin,
it does its processing and probably sends an Origin as a result (again as
notifier).
.. figure:: ../media/concepts/messaging/system.*
:alt: sketch of a distributed system
:align: center
Schematic view on a distributed SeisComP system.
.. _messaging-queue :
Queues
======
The messaging server (:ref:`scmaster`) manages a set of queues. Each queue is
independent and clients can only connect to *one* queue at a time within one
connection. Messages sent to a queue are sorted by their arrival time and
forwarded to clients in exactly that order. That is called a FIFO (first in
first out) queue.
For each queue a set of processors can be added where each message is
piped through. One example is the dbstore processor which applies notifiers to
a configured relational database management system (RDBMS).
One could configure scmaster with two queues, one for production which
populates a database and one for playbacks which does not populate a database.
A client can be directed to either the one or the other queue:
.. code-block:: sh
connection.server = localhost/production
or
.. code-block:: sh
scautopick -H localhost/production
.. _messaging-groups :
Groups
======
Groups are like topic filters for a message. A message is always being sent to
a specific group or a specific client (peer-to-peer). A client can subscribe
to one or many groups and it will only receive messages tagged with a group it
has subscribed to.
For example :ref:`scautopick` processes waveforms sending detections or
picks as pick notifiers to the PICK group. All clients subscribed to that group
would also receive this information. If the queue is configured with the
dbstore processor then it is guaranteed that the pick has been stored already
in the database at the time of message arrival at the clients.
A consumer of the PICK group messages is :ref:`scautoloc`. Whenever it receives
a new pick it will try to associate it or to locate a seismic event. After it
succeeded it will send an origin to the LOCATION group and so on.
.. _messaging-scheme :
Scheme
======
The messaging allows unencrypted or encrypted connections which are specified by
the scheme parameter of the connection:
* `scmp` (default): unencrypted,
* `scmps`: encrypted.
Scheme, host, port and :ref:`queue <messaging-scheme>` together form the
connection URL of the messaging system which is configurable in
:confval:`connection.server` or set by the command-line option ``-H``.
Examples:
* Connect to the production queue of the messaging on localhost with default port.
Not using encryption `scmp` can be assumed implicitly in global configuration ::
connection.server = localhost/production
On the command line use, e.g. ::
$ scolv -H localhost
* Connect to the production queue of the messaging on localhost with default port.
Using non-default secure encryption and port the scheme and the port must be
provided explicitly in global configuration ::
connection.server = scmps://localhost18181/production
On the command line use, e.g. ::
$ scolv -H scmps://localhost:18181/production
.. _messaging-db :
Database
========
The :ref:`database <concepts_database>` is populated by :ref:`scmaster` with all
kind of information which might depend on
each other. It is crucial for operations that write operations are well
synchronized. Part of the messaging contract is that clients get read-only
database access from :ref:`scmaster` and that they will never attempt to write
into the database. In a fully-fledged |scname| system the only instance that is
allowed to populate the database is the dbstore plugin of :ref:`scmaster`.
When connecting from a client to the messaging, the database connection parameters
are reported by :ref:`scmaster`. They can be overridden by the global configuration
or command-line option ``-d``.
Example: ::
scolv -H localhost -d mysql://sysop:sysop@localhost/seiscomp-test
.. _messaging-distribution :
Module distribution
===================
The messaging server accepts TCP/IP connections enabling a module actually
running anywhere in the network. It happens that this concept is not understood
and users run on each computer another :ref:`scmaster` instance to offload
processing to more computers. Unfortunately each scmaster instance is
configured with the same database connection which will most likely cause data
inconsistencies because each group of modules which is connected to an scmaster
instance does not know about the other scmaster clients and therefore ignore
the sent updates.
The correct approach is to run **one** scmaster on computer A which populates
database X. Modules running on computer A, use
.. code-block:: sh
connection.server = localhost/production
while modules running on computer B use
.. code-block:: sh
connection.server = computerA/production
The database connection which is used by :ref:`scmaster` will be reported to the
clients when they connect so no explicit database configuration is necessary.
The messaging connection can be explicitly provided on the command line using
the option ``-H`` considering the comments on the
:ref:`scheme <messaging-scheme>` and :ref:`queue <messaging-queue>`, e.g.
.. code-block:: sh
scolv -H computerA/production
Web Frontend
============
When running :ref:`scmaster` a web frontend is available which can be adjusted to
provide system information. The default port to access the web frontend is 18180:
.. code-block:: sh
firefox localhost:18180
.. figure:: ../media/concepts/messaging/scmaster_web.png
:alt: scmaster: web frontend
:align: center
:width: 10cm
scmaster: Web frontend
Related Modules
===============
* :ref:`scmaster`
* :ref:`scm`
* :ref:`scmm`