RMB SLF4j

Open Foris Repository Message Broker library

License

License

Categories

Categories

SLF4J Application Layer Libs Logging
GroupId

GroupId

org.openforis.rmb
ArtifactId

ArtifactId

repository-message-broker-slf4j
Last Version

Last Version

0.1.3
Release Date

Release Date

Type

Type

jar
Description

Description

RMB SLF4j
Open Foris Repository Message Broker library
Project Organization

Project Organization

Open Foris

Download repository-message-broker-slf4j

How to add to project

<!-- https://jarcasting.com/artifacts/org.openforis.rmb/repository-message-broker-slf4j/ -->
<dependency>
    <groupId>org.openforis.rmb</groupId>
    <artifactId>repository-message-broker-slf4j</artifactId>
    <version>0.1.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.openforis.rmb/repository-message-broker-slf4j/
implementation 'org.openforis.rmb:repository-message-broker-slf4j:0.1.3'
// https://jarcasting.com/artifacts/org.openforis.rmb/repository-message-broker-slf4j/
implementation ("org.openforis.rmb:repository-message-broker-slf4j:0.1.3")
'org.openforis.rmb:repository-message-broker-slf4j:jar:0.1.3'
<dependency org="org.openforis.rmb" name="repository-message-broker-slf4j" rev="0.1.3">
  <artifact name="repository-message-broker-slf4j" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.openforis.rmb', module='repository-message-broker-slf4j', version='0.1.3')
)
libraryDependencies += "org.openforis.rmb" % "repository-message-broker-slf4j" % "0.1.3"
[org.openforis.rmb/repository-message-broker-slf4j "0.1.3"]

Dependencies

compile (2)

Group / Artifact Type Version
org.openforis.rmb : repository-message-broker-core jar 0.1.3
org.slf4j : slf4j-api jar 1.7.12

test (5)

Group / Artifact Type Version
uk.org.lidalia : slf4j-test jar 1.1.0
org.spockframework : spock-core jar 1.0-groovy-2.4
org.codehaus.groovy : groovy-all jar 2.4.3
org.codehaus.gpars : gpars jar 1.2.1
com.h2database : h2 jar 1.4.187

Project Modules

There are no modules declared in this project.

Repository Message Broker

When doing some transactional work with a repository, such as a relational database, often some external resource must be updated or notified at the same time. Examples of this would be to update a Lucene index, send an email, and make an HTTP POST, when storing a record in a database.

A typical solution of this is to use a distributed transaction to submit the work to be done into a message queue. The queue would then guarantee that the work is completed. This requires a lot of infrastructure, to understand, test, and maintain.

Repository Message Broker takes a similar approach, but instead of using distributed transactions and an external message queue, it keeps the message queue in the repository where the transactional work is done to start with. That way, messages can be put in the queue using local transactions. It provides the same benefits with no extra infrastructure.

Lightweight and extensible

The core module has no dependencies outside of JDK 6, not even a logging framework. Dependencies to third-party libraries have been separated into their own modules.

The library have been designed to be extensible, and allows monitors to be registered, to get notified of what is happening. Two monitors are provided, in separate modules.

  • repository-message-broker-slf4j provides logging through org.openforis.rmb.slf4j.Slf4jLoggingMonitor
  • repository-message-broker-metrics provides metrics to a Dropwizard's Metrics MetricRegistry through org.openforis.rmb.metrics.MetricsMonitor

Support for storing messages using a JDBC DataSource is included in the core module, as well as an in-memory repository for testing.

By default, Java object serialization is used when storing messages in the repository. An XStream message serializer, org.openforis.rmb.xstream.XStreamMessageSerializer, is provided by repository-message-broker-xstream, which is preferable to object serialization in many cases.

To make it easy for Springframework users, repository-message-broker-spring provides integration with Spring's transaction manager, and provides helper classes to make it easy to configure queues using Spring.

Usage example

Minimal:

    MessageBroker messageBroker = RepositoryMessageBroker.builder(
            new JdbcMessageRepository(connectionManager, "example_"),
            transactionSynchronizer)
            .build();

    MessageQueue<Date> queue = messageBroker.queueBuilder("A test queue", Date.class)
            .consumer(MessageConsumer.builder("A consumer",
                    (Date date) -> System.out.println("Got a date: " + date)))
            .build();

Fully configured:

    MessageBroker messageBroker = RepositoryMessageBroker.builder(                      (1)
            new JdbcMessageRepository(connectionManager, "example_"),                   (2)
            transactionSynchronizer)                                                    (3)
            .messageSerializer(new XStreamMessageSerializer())                          (4)
            .repositoryWatcherPollingSchedule(30, SECONDS)                              (5)
            .monitor(new Slf4jLoggingMonitor())                                         (6)
            .monitor(new MetricsMonitor(new MetricRegistry()))                          (7)
            .build();                                                                   (8)

    MessageQueue<Date> queue = messageBroker.queueBuilder("A test queue", Date.class)   (9)
            .consumer(MessageConsumer.builder("A consumer",                             (10)
                    (Date date) -> System.out.println("Got a date: " + date))           (11)
                    .retryUntilSuccess(ExponentialBackoff.upTo(1, MINUTES))             (12)
                    .messagesHandledInParallel(1)                                       (13)
                    .timeout(30, SECONDS))                                              (14)
            .build();                                                                   (15)
  1. The message broker is responsible for creating message queues, and keeps an eye on it's message queues, picking up abandoned messages, monitor queue sizes etc.
  2. The MessageRepository is working with the underlying repository. The JdbcMessageRepository need a ConnectionManager implementation to get and release JDBC connections. An implementation using Spring's DataSourceUtils is provided. A table prefix can also be specified here.
  3. A TransactionSynchronizer implementation also needs to be specified. It is responsible for checking if a transaction is active, and allows listeners to be notified when current transaction commits. Just as with the connection manager, an implementation using Spring's TransactionSynchronizationManager is provided.
  4. The MessageSerializer is responsible for serializing/deserializing messages. XStreamMessageSerializer is often a better option than the default configured ObjectSerializationMessageSerializer. It doesn't require the message to implement Serializable, it's more lenient to changes in the class definition, and the serialized form is outputs human-readable, which simplifies debugging.
  5. Specifies how often the repository should be polled. This is done to pick up abandoned messages, and to report on message queue size. If not specified, it's configured to be polled every 30 seconds.
  6. Registers a monitor that logs the message broker activities using SLF4j. It is strongly suggested to use this, or a similar logging monitor. If not, the library will not output any logging messages, not even for failures.
  7. Registers a monitor capturing metrics about the message broker, using Dropwizard's Metrics. You probably would want to configure the MetricRegistry before passing it to the monitor though.
  8. build() must be called at the end, to create the actual message broker instance.
  9. A MessageQueue is the object where messages are published.
  10. A message queue must have at least one MessageConsumer. The consumer must have a, within the message broker, unique id.
  11. A consumer contains a MessageHandler, which will receive the messages published to the queue. There are two variations of message handlers, a simple one, which is specified in this one, and KeepAliveMessageHandler. The latter version provides a way for handlers that takes some time to complete, to notify the message broker that progress on the message still is being made, and that its timeout should be reset, to prevent it from being marked as abandoned.
  12. How to manage cases where a handler fails with a message can be configured. There are three main options:
  • retryUntilSuccess(throttlingStrategy) - the message processing will be retried, with a delay calculated based on the specified throttling strategy. This is the default behaviour. An exponential backoff will be applied up to a minute.
  • retry(retries, throttlingStrategy) - the message processing will be retried just like described above, up to the specified number of retries. Then, the message processing is marked as failed.
  • neverRetry() - the message processing is marked as failed, without any retries.
  1. Specifies the maximum number of messages the consumer is allowed to handle in parallel. Depending on MessageRepository, this might even be enforced in a clustered environment.
  2. The amount of time the message handler get to complete its processing, or call the keep-alive, before the message is considered abandoned. The default timeout is 1 minute.
  3. Finally, build() must be called, to create the message queue instance.

Publishing messages:

    messageBroker.start();                                                      // (1)

    withTransaction(() -> {                                                     // (2)
        doSomeTransactionalWork();
        queue.publish(new Date(0));                                             // (3)
        queue.publish(new Date(100));
    });

    messageBroker.stop();
  1. The message broker must be started before any messages are published.
  2. Messages must be published within a transaction.
  3. Example of how messages are published. The message is written to the database in the same transaction as the transactional work is being done. Once the transaction commits, the message broker will query the database for messages to process, and forwards the message to the message handler.

JDBC Schema

If the JdbcMessageRepository is used, the following two tables are needed. In this example, the database is PostgreSQL, and the tablePrefix is set to "example_"..

    CREATE TABLE example_message (
    id               VARCHAR(127) NOT NULL,
    sequence_no      SERIAL,
    publication_time TIMESTAMP    NOT NULL,
    queue_id         VARCHAR(127) NOT NULL,
    message_string   TEXT,
    message_bytes    BYTEA,
    PRIMARY KEY (id)
    );

    CREATE TABLE example_message_processing (
    message_id    VARCHAR(127) NOT NULL,
    consumer_id   VARCHAR(127) NOT NULL,
    version_id    VARCHAR(127) NOT NULL,
    state         VARCHAR(32)  NOT NULL,
    last_updated  TIMESTAMP    NOT NULL,
    times_out     TIMESTAMP    NOT NULL,
    retries       INTEGER      NOT NULL,
    error_message TEXT,
    PRIMARY KEY (message_id, consumer_id),
    FOREIGN KEY (message_id) REFERENCES example_message (id)
    );

Spring XML examples

Minimal:

    <bean id="messageBroker" class="org.openforis.rmb.spring.SpringJdbcMessageBroker">
        <constructor-arg value="#{database.dataSource}"/>
        <property name="tablePrefix" value="example_"/>
    </bean>

    <bean id="messageQueue" class="org.openforis.rmb.spring.SpringMessageQueue">
        <constructor-arg ref="messageBroker"/>
        <constructor-arg value="My queue id"/>
        <constructor-arg>
            <list>
                <bean class="org.openforis.rmb.spring.SpringMessageConsumer">
                    <constructor-arg value="My consumer id"/>
                    <constructor-arg ref="messageHandler"/>
                </bean>
            </list>
        </constructor-arg>
    </bean>

Fully configured:

    <bean id="messageBroker" class="org.openforis.rmb.spring.SpringJdbcMessageBroker">
        <constructor-arg value="#{database.dataSource}"/>
        <property name="tablePrefix" value="example_"/>
        <property name="messageSerializer">
            <bean class="org.openforis.rmb.xstream.XStreamMessageSerializer"/>
        </property>
        <property name="monitors">
            <list>
                <bean class="org.openforis.rmb.slf4j.Slf4jLoggingMonitor"/
                <ref bean="myCustomMonitor"/>
            </list>
        </property>
        <property name="repositoryWatcherPollingPeriodSeconds" value="10"/>
    </bean>

    <bean id="messageQueue" class="org.openforis.rmb.spring.SpringMessageQueue">
        <constructor-arg ref="messageBroker"/>
        <constructor-arg value="My queue id"/>
        <constructor-arg>
            <list>
                <bean class="org.openforis.rmb.spring.SpringMessageConsumer">
                    <constructor-arg value="My consumer id"/>
                    <constructor-arg ref="messageHandler"/>
                    <property name="messagesHandledInParallel" value="1"/>
                    <property name="retries" value="5"/>
                    <property name="throttlingStrategy">
                        <bean class="org.openforis.rmb.spi.ThrottlingStrategy$ExponentialBackoff">
                            <constructor-arg value="1"/>
                            <constructor-arg value="MINUTES"/>
                        </bean>
                    </property>
                    <property name="timeoutSeconds" value="30"/>
                </bean>
            </list>
        </constructor-arg>
    </bean>

Maven dependencies

    <dependency>
        <groupId>org.openforis.rmb</groupId>
        <artifactId>repository-message-broker-core</artifactId>
        <version>${repository-message-broker.version}</version>
    </dependency>

    <dependency>
        <groupId>org.openforis.rmb</groupId>
        <artifactId>repository-message-broker-metrics</artifactId>
        <version>${repository-message-broker.version}</version>
    </dependency>

    <dependency>
        <groupId>org.openforis.rmb</groupId>
        <artifactId>repository-message-broker-slf4j</artifactId>
        <version>${repository-message-broker.version}</version>
    </dependency>

    <dependency>
        <groupId>org.openforis.rmb</groupId>
        <artifactId>repository-message-broker-spring</artifactId>
        <version>${repository-message-broker.version}</version>
    </dependency>

    <dependency>
        <groupId>org.openforis.rmb</groupId>
        <artifactId>repository-message-broker-xstream</artifactId>
        <version>${repository-message-broker.version}</version>
    </dependency>
org.openforis.rmb

Open Foris

Free open-source solutions for environmental monitoring

Versions

Version
0.1.3