Publish Events to NATS
AIStor supports publishing bucket notification events to a NATS service endpoint.
Prerequisites
-
The AIStor
mc
command line toolThis procedure uses the
mc
command line tool for certain actions. See themc
Quickstart for installation instructions.
Add a NATS endpoint to an AIStor Server
The following procedure adds a new NATS service endpoint for supporting bucket notifications in an AIStor Server.
-
Add the NATS endpoint to AIStor.
You can configure a new NATS service endpoint using either environment variables or by setting runtime configuration settings.
If you define both environment variables and configuration settings for the deployment, the settings defined by environment variables are used. -
Restart the AIStor Server.
You must restart the AIStor Server to apply the configuration changes. Use the
mc admin service restart
command to restart the deployment.mc admin service restart ALIAS
Replace
ALIAS
with the alias of the deployment to restart.The
minio server
process prints a line on startup for each configured NATS target similar to the following:SQS ARNs: arn:minio:sqs::primary:nats
You must specify the ARN resource when configuring bucket notifications with the associated NATS deployment as a target.
-
Configure bucket notifications using the NATS endpoint as a target.
Use the
mc event add
command to add a new bucket notification event with the configured NATS service as a target:mc event add ALIAS/BUCKET arn:minio:sqs::primary:nats \ --event EVENTS
- Replace
ALIAS
with the alias of an AIStor Server. - Replace
BUCKET
with the name of the bucket in which to configure the event. - Replace
EVENTS
with a comma-separated list of events for which AIStor triggers notifications.
Use
mc event ls
to view all configured bucket events for a given notification target:mc event ls ALIAS/BUCKET arn:minio:sqs::primary:nats
- Replace
-
Validate the configured events.
Perform an action on the bucket for which you configured the new event and check the NATS service for the notification data. The action required depends on which
events
were specified when configuring the bucket notification.For example, if the bucket notification configuration includes the
s3:ObjectCreated:Put
event, you can use themc cp
command to create a new object in the bucket and trigger a notification.mc cp ~/data/new-object.txt ALIAS/BUCKET
Update a NATS endpoint in an AIStor Server
The following procedure updates an existing NATS service endpoint for supporting bucket notifications in an AIStor Server.
-
List configured NATS endpoints in the deployment.
Use the
mc admin config get
command to list the currently configured NATS service endpoints in the deployment:mc admin config get ALIAS/ notify_nats
Replace
ALIAS
with the alias of the AIStor Server.The command output resembles the following:
notify_nats:primary password="yoursecret" subject="" address="nats-endpoint.example.com:4222" token="" username="yourusername" ping_interval="0" queue_limit="0" tls="off" tls_skip_verify="off" queue_dir="" streaming_enable="on" nats_jetstream="on" notify_nats:secondary password="yoursecret" subject="" address="nats-endpoint.example.com:4222" token="" username="yourusername" ping_interval="0" queue_limit="0" tls="off" tls_skip_verify="off" queue_dir="" streaming_enable="on" nats_jetstream="on"
notify_nats
is the top-level configuration key for an NATS Notification Settings.address
specifies the NATS service endpoint for the givennotify_nats
key.- The
notify_nats:<IDENTIFIER>
suffix describes the unique identifier for that NATS service endpoint.
Note the identifier for the NATS service endpoint you want to update for the next step.
-
Update the NATS endpoint.
Use the
mc admin config set
command to set the new configuration for the NATS service endpoint:mc admin config set ALIAS/ notify_nats:IDENTIFIER \ address="HOSTNAME" \ subject="<string>" \ username="<string>" \ password="<string>" \ token="<string>" \ tls="<string>" \ tls_skip_verify="<string>" \ ping_interval="<string>" \ nats_jetstream="<string>" \ cert_authority="<string>" \ client_cert="<string>" \ client_key="<string>" \ queue_dir="<string>" \ queue_limit="<string>" \ comment="<string>"
notify_nats address
configuration setting is the minimum required for a NATS service endpoint.- All other configuration settings are optional.
See NATS Notification Settings for a complete list of NATS configuration settings.
-
Restart the AIStor Server.
You must restart the AIStor Server to apply the configuration changes. Use the
mc admin service restart
command to restart the deployment.mc admin service restart ALIAS
Replace
ALIAS
with the alias of the deployment to restart.The
minio server
process prints a line on startup for each configured NATS target similar to the following:SQS ARNs: arn:minio:sqs::primary:nats
-
Validate the changes.
Perform an action on a bucket which has an event configuration using the updated NATS service endpoint and check the NATS service for the notification data. The action required depends on which
events
were specified when configuring the bucket notification.For example, if the bucket notification configuration includes the
s3:ObjectCreated:Put
event, you can use themc cp
command to create a new object in the bucket and trigger a notification.mc cp ~/data/new-object.txt ALIAS/BUCKET