Unknown macro: {next_previous_link3}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Notification Types

Notifications in BAM can be done in the following two ways:

CEP based Notifications

CEP based notifications are implemented using a CEP flow to define an input source of a message by creating an event stream. Then a CEP execution plan can be implemented by using Siddhi if necessary, and the result can be written off to output event adapters such as Email and SMS, via a message formatter. For more information on how to process events using CEP, see CEP Configuration Overview.

Hive Script based Notifications

Hive script based notifications are used when a notification needs to be sent out directly from a Hive script execution. This is achieved by inserting data records to a well known Cassandra column family from the Hive script, where, a background task will be polling this specific column family to check if there are any new records. If so, it will load those records, and dispatch them to a stream mentioned by each of the records. At the end, it will delete the processed records from the column family.

The name of the Cassandra column family is bam_notification_messages, inside the Cassandra data source with the name WSO2BAM_UTIL_DATASOURCE. For each of the row inserted for bam_notification_messages column family, it should contain a column with the name streamId, which identifies the target stream id (i.e. stream_name:version) of the stream, to which this record should be written to. The columns with names other than streamId, are basically considered as payload properties of the target stream, where the column name is the property name and the column value is the property value.

The schedule task used to poll the notifications column family will send the data to the mentioned streams, where those streams can contain a CEP flow, which can define a notification target for the messages to be delivered.

Below is a sample Hive script snippet, which demonstrates the Hive based notifications:

Sample Hive Script based Notification
CREATE EXTERNAL TABLE IF NOT EXISTS BAMNotifications 
    (id STRING, streamId STRING, country STRING,  requestCount STRING) 
    STORED BY 'org.apache.hadoop.hive.cassandra.CassandraStorageHandler'
    WITH SERDEPROPERTIES ( 
    "wso2.carbon.datasource.name" = "WSO2BAM_UTIL_DATASOURCE" ,
    "cassandra.cf.name" = "bam_notification_messages" , 
    "cassandra.columns.mapping" = ":key,streamId,country,requestCount" );    
    
insert into table BAMNotifications select countryCode, "country_notifications:1.0.0", country, requestCount from CountrySummary where requestCount > 600;

The above snippet can be used with the HTTPD log analyzing sample Hive script.

The Hive script based notifications functionality can be switched off in a specific BAM node by setting the Java system property disable.notification.task using the following command:

sh wso2server.sh -Ddisable.notification.task

Multi-tenancy support for notifications

Currently Hive Script based notifications are only supported in the default (super) tenant.

Datasource configurations for notifications

By default, the data source property externalCassandra of WSO2BAM_UTIL_DATASOURCE is set to false. This means that WSO2BAM_UTIL_DATASOURCE points to the Cassandra instance that ships with BAM. Therefore, if there a port offset has been applied, Cassandra URL of the WSO2BAM_UTIL_DATASOURCE will be updated accordingly with new port offset.

When WSO2BAM_UTIL_DATASOURCE is located in an external Cassandra cluster, externalCassandra data source property must be set to true. This prevents BAM from automatically incrementing the port offset once a port offset has been introduced to the system and does not modify the Cassandra URL.

Credentials for Notification Task Data Receiver

From BAM 2.4.2 onwards, the credentials for BAM notification data receiver will be referred from hive-site.xml file (or hive-site-win.xml file for Windows), which can be found in the following location:

  • In Linux : <BAM_HOME>/repository/conf/advanced/hive-site.xml
  • In Windows : <BAM_HOME>/repository/conf/advanced/hive-site-win.xml

The properties related to this configuration are as follows:

<property>
	<name>notification.task.receiver.username</name>
	<value>admin</value>
</property>

<property>
	<name>notification.task.receiver.password</name>
	<value>admin</value>
</property>

 

 

  • No labels