Event Bus Notifier

Since Payara Server 4.1.1.171

The Event Bus Notifier provides a way to send notifications from the Notification service into the internal Payara event bus based on Hazelcast distributed topics.

Notifications sent to the internal Payara event bus using this notifier are intended to be received by internal Payara Server components and not by deployed applications. Currently, no built-in internal components consume event bus notifications yet and no API is exposed to consume them by the deployed applications.

Requirements

Hazelcast must be enabled for the Event Bus to be available.

Configuration

Event Bus Notifier Configuration

This notifier provides only one configuration option - Topic Name - which is mandatory.

In the Admin Console, simply set Topic Name to an arbitrary name. This Hazelcast topic will receive the notifications.

Admin console config

Make sure that the "Enabled" box is ticked so that the notifier will be used. If you would like the changes to take effect without needing a restart, tick the "Dynamic" box as well.

To make these changes via the asadmin tool, use the following command, which mirrors the above screenshot:

asadmin> notification-eventbus-configure --topicName=my-topic --dynamic=true --enabled=true

To check the current applied configuration from asadmin, run the command:

asadmin> get-eventbus-notifier-configuration

This will return the current configuration, with whether it is currently enabled and the name of the destination topic:

$ asadmin get-eventbus-notifier-configuration
Enabled  Topic Name
true     my-topic