NATS JetStream Walkthrough

Prerequisite: enabling JetStream

If you are running a local nats-server stop it and restart it with JetStream enabled using nats-server -js (if that’s not already done)

You can then check that JetStream is enabled by using

  1. nats account info
  1. Connection Information:
  2. Client ID: 6
  3. Client IP: 127.0.0.1
  4. RTT: 64.996µs
  5. Headers Supported: true
  6. Maximum Payload: 1.0 MiB
  7. Connected URL: nats://127.0.0.1:4222
  8. Connected Address: 127.0.0.1:4222
  9. Connected Server ID: ND2XVDA4Q363JOIFKJTPZW3ZKZCANH7NJI4EJMFSSPTRXDBFG4M4C34K
  10. JetStream Account Information:
  11. Memory: 0 B of Unlimited
  12. Storage: 0 B of Unlimited
  13. Streams: 0 of Unlimited
  14. Consumers: 0 of Unlimited

If you see the below then JetStream is not enabled

  1. JetStream Account Information:
  2. JetStream is not supported in this account

1. Creating a stream

Let’s start by creating a stream to capture and store the messages published on the subject “foo”.

Enter nats stream add <Stream name> (in the examples below we will name the stream “my_stream”), then enter “foo” as the subject name and hit return to use the defaults for all the other stream attributes:

  1. nats stream add my_stream
  1. ? Subjects to consume foo
  2. ? Storage backend file
  3. ? Retention Policy Limits
  4. ? Discard Policy Old
  5. ? Stream Messages Limit -1
  6. ? Per Subject Messages Limit -1
  7. ? Message size limit -1
  8. ? Maximum message age limit -1
  9. ? Maximum individual message size -1
  10. ? Duplicate tracking time window 2m
  11. ? Replicas 1
  12. Stream my_stream was created
  13. Information for Stream my_stream created 2021-10-12T08:42:10-07:00
  14. Configuration:
  15. Subjects: foo
  16. Acknowledgements: true
  17. Retention: File - Limits
  18. Replicas: 1
  19. Discard Policy: Old
  20. Duplicate Window: 2m0s
  21. Maximum Messages: unlimited
  22. Maximum Bytes: unlimited
  23. Maximum Age: 0.00s
  24. Maximum Message Size: unlimited
  25. Maximum Consumers: unlimited
  26. State:
  27. Messages: 0
  28. Bytes: 0 B
  29. FirstSeq: 0
  30. LastSeq: 0
  31. Active Consumers: 0

You can then check the information about the stream you just created:

  1. nats stream info my_stream
  1. Information for Stream my_stream created 2021-10-12T08:42:10-07:00
  2. Configuration:
  3. Subjects: foo
  4. Acknowledgements: true
  5. Retention: File - Limits
  6. Replicas: 1
  7. Discard Policy: Old
  8. Duplicate Window: 2m0s
  9. Maximum Messages: unlimited
  10. Maximum Bytes: unlimited
  11. Maximum Age: 0.00s
  12. Maximum Message Size: unlimited
  13. Maximum Consumers: unlimited
  14. State:
  15. Messages: 0
  16. Bytes: 0 B
  17. FirstSeq: 0
  18. LastSeq: 0
  19. Active Consumers: 0

2. Publish some messages into the stream

Let’s now start a publisher

  1. nats pub foo --count=1000 --sleep 1s "publication #{{Count}} @ {{TimeStamp}}"

As messages are being published on the subject “foo” they are also captured and stored in the stream, you can check that by using nats stream info my_stream and even look at the messages themselves using nats stream view my_stream

3. Creating a consumer

Now at this point if you create a ‘Core NATS’ (i.e. non-streaming) subscriber to listen for messages on the subject ‘foo’, you will only receive the messages being published after the subscriber was started, this is normal and expected for the basic ‘Core NATS’ messaging. In order to receive a ‘replay’ of all the messages contained in the stream (including those that were published in the past) we will now create a ‘consumer’

We can administratively create a consumer using the ‘nats consumer add ‘ command, in this example we will name the consumer “pull_consumer”, and we will leave the delivery subject to ‘nothing’ (i.e. just hit return at the prompt) because we are creating a ‘pull consumer’ and select all for the start policy, you can then just use the defaults and hit return for all the other prompts. The stream the consumer is created on should be the stream ‘my_stream’ we just created above.

  1. nats consumer add
  1. ? Consumer name pull_consumer
  2. ? Delivery target (empty for Pull Consumers)
  3. ? Start policy (all, new, last, subject, 1h, msg sequence) all
  4. ? Replay policy instant
  5. ? Filter Stream by subject (blank for all)
  6. ? Maximum Allowed Deliveries -1
  7. ? Maximum Acknowledgements Pending 0
  8. ? Select a Stream my_stream
  9. Information for Consumer my_stream > pull_consumer created 2021-10-12T09:03:26-07:00
  10. Configuration:
  11. Durable Name: pull_consumer
  12. Pull Mode: true
  13. Deliver Policy: All
  14. Deliver Queue Group: _unset_
  15. Ack Policy: Explicit
  16. Ack Wait: 30s
  17. Replay Policy: Instant
  18. Max Ack Pending: 20,000
  19. Max Waiting Pulls: 512
  20. State:
  21. Last Delivered Message: Consumer sequence: 0 Stream sequence: 0
  22. Acknowledgment floor: Consumer sequence: 0 Stream sequence: 0
  23. Outstanding Acks: 0 out of maximum 20000
  24. Redelivered Messages: 0
  25. Unprocessed Messages: 674
  26. Waiting Pulls: 0 of maximum 512

You can check on the status of any consumer at any time using nats consumer info or view the messages in the stream using nats stream view my_stream or even remove individual messages from the stream using nats stream rmm

3. Subscribing from the consumer

Now that the consumer has been created and since there are messages in the stream we can now start subscribing to the consumer:

  1. nats consumer next my_stream pull_consumer --count 1000

This will print out all the messages in the stream starting with the first message (which was published in the past) and continuing with new messages as they are published until the count is reached.

Note that in this example we are creating a pull consumer with a ‘durable’ name, this means that the consumer can be shared between as many consuming processes as you want. For example instead of running a single nats consumer next with a count of 1000 messages you could have started two instances of nats consumer each with a message count of 500 and you would see the consumption of the messages from the consumer distributed between those instances of nats

Replaying the messages again

Once you have iterated over all the messages in the stream with the consumer, you can get them again by simply creating a new consumer or by deleting that consumer (nats consumer rm) and re-creating it (nats consumer add).

4. Cleaning up

You can clean up a stream (and release the resources associated with it (e.g. the messages stored in the stream)) using nats stream purge

You can also delete a stream (which will also automatically delete all of the consumers that may be defined on that stream) using nats stream rm