Publish Events to NATS
MinIO AIStor supports publishing bucket notification events to a NATS service endpoint.
Prerequisites
-
The MinIO AIStor
mccommand line toolThis procedure uses the
mccommand line tool for certain actions. See themcQuickstart 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 MinIO 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. -
Confirm the target is registered.
MinIO AIStor applies a configuration setting change immediately.
If you configured this endpoint with environment variables, those values take precedence and
mc admin config sethas no effect on it. Update the environment variables on every node, then restart the deployment with themc admin service restartcommand:mc admin service restart ALIASReplace
ALIASwith the alias of the deployment.List the notification targets with
mc event target list:mc event target list ALIASThe NATS target appears with an ARN similar to the following:
arn:minio:sqs::primary:natsYou 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 addcommand 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
ALIASwith the alias of an AIStor Server. - Replace
BUCKETwith the name of the bucket in which to configure the event. - Replace
EVENTSwith a comma-separated list of events for which MinIO AIStor triggers notifications.
Use
mc event lsto 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
eventswere specified when configuring the bucket notification.For example, if the bucket notification configuration includes the
s3:ObjectCreated:Putevent, you can use themc cpcommand 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 getcommand to list the currently configured NATS service endpoints in the deployment:mc admin config get ALIAS notify_natsReplace
ALIASwith 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_natsis the top-level configuration key for an NATS Notification Settings.addressspecifies the NATS service endpoint for the givennotify_natskey.- 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 setcommand 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>"- The
notify_nats addressandnotify_nats subjectconfiguration settings are 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.
- The
-
Confirm the target is registered.
MinIO AIStor applies a configuration setting change immediately.
If you configured this endpoint with environment variables, those values take precedence and
mc admin config sethas no effect on it. Update the environment variables on every node, then restart the deployment with themc admin service restartcommand:mc admin service restart ALIASReplace
ALIASwith the alias of the deployment.List the notification targets with
mc event target list:mc event target list ALIASThe NATS target appears with an ARN similar to the following:
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
eventswere specified when configuring the bucket notification.For example, if the bucket notification configuration includes the
s3:ObjectCreated:Putevent, you can use themc cpcommand to create a new object in the bucket and trigger a notification.mc cp ~/data/new-object.txt ALIAS/BUCKET