Data Replication

Replication allows you to move data between streams in either a 1:1 mirror style or by multiplexing multiple source streams into a new stream. In future builds this will allow data to be replicated between accounts as well, ideal for sending data from a Leafnode into a central store.

Data Replication - 图1

Here we have 2 main streams - ORDERS and RETURNS - these streams are clustered across 3 nodes. These Streams have short retention periods and are memory based.

We create a ARCHIVE stream that has 2 sources set, the ARCHIVE will pull data from the sources into itself. This stream has a very long retention period and is file based and replicated across 3 nodes. Additional messages can be added to the ARCHIVE by sending to it directly.

Finally, we create a REPORT stream mirrored from ARCHIVE that is not clustered and retains data for a month. The REPORT Stream does not listen for any incoming messages, it can only consume data from ARCHIVE.

Mirrors

A mirror copies data from 1 other stream, as far as possible IDs and ordering will match exactly the source. A mirror does not listen on a subject for any data to be added. The Start Sequence and Start Time can be set, but no subject filter. A stream can only have 1 mirror and if it is a mirror it cannot also have any source.

Sources

A source is a stream where data is copied from, one stream can have multiple sources and will read data in from them all. The stream will also listen for messages on it’s own subject. We can therefore not maintain absolute ordering, but data from 1 single source will be in the correct order but mixed in with other streams. You might also find the timestamps of streams can be older and newer mixed in together as a result.

A Stream with sources may also listen on subjects, but could have no listening subject. When using the nats CLI to create sourced streams use --subjects to supply subjects to listen on.

A source can have Start Time or Start Sequence and can filter by a subject.

Configuration

The ORDERS and RETURNS streams as normal, I will not show how to create them.

  1. $ nats s report
  2. Obtaining Stream stats
  3. +---------+---------+----------+-----------+----------+-------+------+---------+----------------------+
  4. | Stream | Storage | Template | Consumers | Messages | Bytes | Lost | Deleted | Cluster |
  5. +---------+---------+----------+-----------+----------+-------+------+---------+----------------------+
  6. | ORDERS | Memory | | 0 | 0 | 0 B | 0 | 0 | n1-c2, n2-c2*, n3-c2 |
  7. | RETURNS | Memory | | 0 | 0 | 0 B | 0 | 0 | n1-c2*, n2-c2, n3-c2 |
  8. +---------+---------+----------+-----------+----------+-------+------+---------+----------------------+

We now add the ARCHIVE:

  1. $ nats s add ARCHIVE --source ORDERS --source RETURNS
  2. ? Storage backend file
  3. ? Retention Policy Limits
  4. ? Discard Policy Old
  5. ? Message count limit -1
  6. ? Message size limit -1
  7. ? Maximum message age limit -1
  8. ? Maximum individual message size -1
  9. ? Duplicate tracking time window 2m
  10. ? Number of replicas to store 3
  11. ? ORDERS Source Start Sequence 0
  12. ? ORDERS Source UTC Time Stamp (YYYY:MM:DD HH:MM:SS)
  13. ? ORDERS Source Filter source by subject
  14. ? RETURNS Source Start Sequence 0
  15. ? RETURNS Source UTC Time Stamp (YYYY:MM:DD HH:MM:SS)
  16. ? RETURNS Source Filter source by subject

And we add the REPORT:

  1. $ nats s add REPORT --mirror ARCHIVE
  2. ? Storage backend file
  3. ? Retention Policy Limits
  4. ? Discard Policy Old
  5. ? Message count limit -1
  6. ? Message size limit -1
  7. ? Maximum message age limit 1M
  8. ? Maximum individual message size -1
  9. ? Duplicate tracking time window 2m
  10. ? Number of replicas to store 1
  11. ? Mirror Start Sequence 0
  12. ? Mirror Start Time (YYYY:MM:DD HH:MM:SS)
  13. ? Mirror subject filter

When configured we’ll see some additional information in a nats stream info output:

  1. $ nats stream info ARCHIVE
  2. ...
  3. Source Information:
  4. Stream Name: ORDERS
  5. Lag: 0
  6. Last Seen: 2m23s
  7. Stream Name: RETURNS
  8. Lag: 0
  9. Last Seen: 2m15s
  10. ...
  11. $ nats stream info REPORT
  12. ...
  13. Mirror Information:
  14. Stream Name: ARCHIVE
  15. Lag: 0
  16. Last Seen: 2m35s
  17. ...

Here the Lag is how far behind we were reported as being last time we saw a message.

We can confirm all our setup using a nats stream report:

  1. $ nats s report
  2. +-------------------------------------------------------------------------------------------------------------------+
  3. | Stream Report |
  4. +---------+---------+----------+-------------+-----------+----------+-------+------+---------+----------------------+
  5. | Stream | Storage | Template | Replication | Consumers | Messages | Bytes | Lost | Deleted | Cluster |
  6. +---------+---------+----------+-------------+-----------+----------+-------+------+---------+----------------------+
  7. | ARCHIVE | File | | Sourced | 1 | 0 | 0 B | 0 | 0 | n1-c2*, n2-c2, n3-c2 |
  8. | ORDERS | Memory | | | 1 | 0 | 0 B | 0 | 0 | n1-c2, n2-c2*, n3-c2 |
  9. | REPORT | File | | Mirror | 0 | 0 | 0 B | 0 | 0 | n1-c2* |
  10. | RETURNS | Memory | | | 1 | 0 | 0 B | 0 | 0 | n1-c2, n2-c2, n3-c2* |
  11. +---------+---------+----------+-------------+-----------+----------+-------+------+---------+----------------------+
  12. +---------------------------------------------------------+
  13. | Replication Report |
  14. +---------+--------+---------------+--------+-----+-------+
  15. | Stream | Kind | Source Stream | Active | Lag | Error |
  16. +---------+--------+---------------+--------+-----+-------+
  17. | ARCHIVE | Source | ORDERS | never | 0 | |
  18. | ARCHIVE | Source | RETURNS | never | 0 | |
  19. | REPORT | Mirror | ARCHIVE | never | 0 | |
  20. +---------+--------+---------------+--------+-----+-------+

We then create some data in both ORDERS and RETURNS:

  1. $ nats req ORDERS.new "ORDER {{Count}}" --count 100
  2. $ nats req RETURNS.new "RETURN {{Count}}" --count 100

We can now see from a Stream Report that the data has been replicated:

  1. $ nats s report --dot replication.dot
  2. Obtaining Stream stats
  3. +---------+---------+----------+-----------+----------+---------+------+---------+----------------------+
  4. | Stream | Storage | Template | Consumers | Messages | Bytes | Lost | Deleted | Cluster |
  5. +---------+---------+----------+-----------+----------+---------+------+---------+----------------------+
  6. | ORDERS | Memory | | 1 | 100 | 3.3 KiB | 0 | 0 | n1-c2, n2-c2*, n3-c2 |
  7. | RETURNS | Memory | | 1 | 100 | 3.5 KiB | 0 | 0 | n1-c2*, n2-c2, n3-c2 |
  8. | ARCHIVE | File | | 1 | 200 | 27 KiB | 0 | 0 | n1-c2, n2-c2, n3-c2* |
  9. | REPORT | File | | 0 | 200 | 27 KiB | 0 | 0 | n1-c2* |
  10. +---------+---------+----------+-----------+----------+---------+------+---------+----------------------+
  11. +---------------------------------------------------------+
  12. | Replication Report |
  13. +---------+--------+---------------+--------+-----+-------+
  14. | Stream | Kind | Source Stream | Active | Lag | Error |
  15. +---------+--------+---------------+--------+-----+-------+
  16. | ARCHIVE | Source | ORDERS | 14.48s | 0 | |
  17. | ARCHIVE | Source | RETURNS | 9.83s | 0 | |
  18. | REPORT | Mirror | ARCHIVE | 9.82s | 0 | |
  19. +---------+--------+---------------+--------+-----+-------+

Here we also pass the --dot replication.dot argument that writes a GraphViz format map of the replication setup.

Data Replication - 图2