Migration to new JetStream API in JetStream
The new JetStream API provides simplified semantics for JetStream asset
management and message consumption. It removes the complexity of Subscribe()
in favor of more explicit separation of creating consumers and consuming messages.
Additionally, the new API focuses on using Pull Consumers as the primary means of consuming messages from a stream. While the legacy API only supported pull consumers in limited capacity (it was not possible to retrieve messages from a stream in a continuous fashion), the new API provides a more robust set of features to allow for more flexible and performant message consumption.
With the introduction of Consume
, Fetch
and Next
methods, users have
the freedom to choose how they want to consume messages, depending on their
use case.
This example demonstrates how to migrate from the legacy API to the new API.
$ nbe run jetstream/api-migration/javaView the source code or learn how to run this example yourself
Code
package example;
import io.nats.client.*;
import io.nats.client.api.*;
import java.io.IOException;
import java.time.Duration;
import java.util.Iterator;
import java.util.List;
import java.util.concurrent.CompletableFuture;
public class Main {
public static void main(String[] args) {
String natsURL = System.getenv("NATS_URL");
if (natsURL == null) {
natsURL = "nats://127.0.0.1:4222";
}
try (Connection conn = Nats.connect(natsURL)) {
Legacy JetStream API
The legacy JetStream API provides two contexts both created from the Connection.
The JetStream
context provides the ability to publish to streams and subscribe
to streams (via consumers). The JetStreamManagement
context provides the ability
to manage streams and consumers themselves.
JetStream js = conn.jetStream();
JetStreamManagement jsm = conn.jetStreamManagement();
Create a stream and populate the stream with a few messages.
String streamName = "migration";
jsm.addStream(StreamConfiguration.builder()
.name(streamName)
.storageType(StorageType.Memory)
.subjects("events.>")
.build());
js.publish("events.1", null);
js.publish("events.2", null);
js.publish("events.3", null);
Continuous message retrieval with subscribe()
Using the JetStream
context, the common way to continuously receive messages is
to use push consumers.
The easiest way to create a consumer and start consuming messages
using the JetStream context is to use the subscribe()
method. subscribe()
,
while familiar to core NATS users, leads to complications because it will
create underlying consumers if they don’t already exist.
System.out.println("\nA. Legacy Push Subscription with Ephemeral Consumer");
System.out.println(" Async");
Dispatcher dispatcher = conn.createDispatcher();
By default, subscribe()
performs a stream lookup by subject.
You can save a lookup to the server by providing the stream name in the subscribe options
PushSubscribeOptions pushSubscribeOptions = PushSubscribeOptions.stream(streamName);
JetStreamSubscription sub = js.subscribe("events.>", dispatcher,
msg -> {
System.out.println(" Received " + msg.getSubject());
msg.ack();
}, false, pushSubscribeOptions);
Thread.sleep(100);
Unsubscribing this subscription will result in the underlying ephemeral consumer being deleted proactively on the server.
dispatcher.unsubscribe(sub);
System.out.println(" Sync");
sub = js.subscribe("events.>", pushSubscribeOptions);
while (true) {
Message msg = sub.nextMessage(100);
if (msg == null) {
break;
}
System.out.println(" Read " + msg.getSubject());
msg.ack();
}
sub.unsubscribe();
Binding to an existing consumer
In order to create a consumer outside the subscribe
method,
the JetStreamManagement
context addOrUpdateConsumer
method can be used.
If a durable is not provided, the consumer will be ephemeral and will
be deleted if it becomes inactive for longer than the inactivity threshold.
If neither durable
nor name
are not provided, the client will generate a name
that can be found via ConsumerInfo.getName()
System.out.println("\nB. Legacy Bind Subscription to Named Consumer.");
ConsumerConfiguration consumerConfiguration = ConsumerConfiguration.builder()
.deliverSubject("deliverB") // required for push consumers
.ackPolicy(AckPolicy.Explicit)
.inactiveThreshold(Duration.ofMinutes(10))
.build();
ConsumerInfo consumerInfo = jsm.addOrUpdateConsumer(streamName, consumerConfiguration);
sub = js.subscribe(null, dispatcher,
msg -> {
System.out.println(" Received " + msg.getSubject());
msg.ack();
}, false, PushSubscribeOptions.bind(streamName, consumerInfo.getName()));
Thread.sleep(100);
dispatcher.unsubscribe(sub);
Pull consumers
The JetStream
context API also supports pull consumers.
Using pull consumers requires more effort on the developer’s side
than push consumers to maintain an endless stream of messages.
Batches of messages can be retrieved using the iterate
method.
Iterate will start retrieving messages from the server as soon as
it is called but returns right away (does not block) so you can
start handling messages as soon as the first one comes from the server.
System.out.println("\nC. Legacy Pull Subscription then Iterate");
PullSubscribeOptions pullSubscribeOptions = PullSubscribeOptions.builder().build();
sub = js.subscribe("events.>", pullSubscribeOptions);
long start = System.currentTimeMillis();
Iterator<Message> iterator = sub.iterate(10, 2000);
long elapsed = System.currentTimeMillis() - start;
System.out.println(" The call to `iterate(10, 2000)` returned in " + elapsed + "ms.");
while (iterator.hasNext()) {
Message msg = iterator.next();
elapsed = System.currentTimeMillis() - start;
System.out.println(" Processing " + msg.getSubject() + " " + elapsed + "ms after start.");
msg.ack();
}
elapsed = System.currentTimeMillis() - start;
System.out.println(" The iterate completed in " + elapsed + "ms.\n" +
" Time reflects waiting for the entire batch, which isn't available.");
Simplified JetStream API
The simplified API has a StreamContext
for accessing existing
streams, creating consumers, and getting a ConsumerContext
.
The StreamContext
can be created from the Connection
similar to
the legacy API.
System.out.println("\nD. Simplification StreamContext");
StreamContext streamContext = conn.getStreamContext(streamName);
StreamInfo streamInfo = streamContext.getStreamInfo(StreamInfoOptions.allSubjects());
System.out.println(" Stream Name: " + streamInfo.getConfiguration().getName());
System.out.println(" Stream Subjects: " + streamInfo.getStreamState().getSubjects());
Creating a consumer from the stream context
To create an ephemeral consumer, the createOrUpdateConsumer
method
can be used with a bare ConsumerConfiguration
object.
System.out.println("\nE. Simplification, Create a Consumer");
consumerConfiguration = ConsumerConfiguration.builder().build();
ConsumerContext consumerContext = streamContext.createOrUpdateConsumer(consumerConfiguration);
consumerInfo = consumerContext.getCachedConsumerInfo();
String consumerName = consumerInfo.getName();
System.out.println(" A consumer was created on stream \"" + consumerInfo.getStreamName() + "\"");
System.out.println(" The consumer name is \"" + consumerInfo.getName() + "\".");
System.out.println(" The consumer has " + consumerInfo.getNumPending() + " messages available.");
Getting a consumer from the stream context
If your consumer already exists as a durable, you can create a
ConsumerContext
for that consumer from the stream context or directly
from the connection by providing the stream and consumer name.
consumerContext = streamContext.getConsumerContext(consumerName);
consumerInfo = consumerContext.getCachedConsumerInfo();
System.out.println(" The ConsumerContext for \"" + consumerName + "\" was loaded from the StreamContext for \"" + consumerInfo.getStreamName() + "\"");
consumerContext = conn.getConsumerContext(streamName, consumerName);
consumerInfo = consumerContext.getCachedConsumerInfo();
System.out.println(" The ConsumerContext for \"" + consumerName + "\" was loaded from the Connection on the stream \"" + consumerInfo.getStreamName() + "\"");
Continuous message retrieval with consume()
In order to continuously receive messages, the consume
method
can be used with or without a MessageHandler
. These methods work
similarly to the push subscribe
methods used to receive messages.
consume
(and other ConsumerContext methods) never create a consumer
instead always using a consumer created previously.
MessageConsumer
A MessageConsumer
is returned when you call the consume
method passing
MessageHandler
on ConsumerContext
.
Auto ack is no longer an option when a handler is provided to avoid
confusion. It is the developer’s responsibility to ack or not based on
the consumer’s ack policy. Ack policy is “explicit” if not otherwise set.
Remember, when you have a handler and message are sent asynchronously, make sure you have set up your error handler.
System.out.println("\nF. MessageConsumer (endless consumer with handler)");
consumerConfiguration = ConsumerConfiguration.builder().build();
consumerContext = streamContext.createOrUpdateConsumer(consumerConfiguration);
consumerInfo = consumerContext.getCachedConsumerInfo();
System.out.println(" A consumer was created on stream \"" + consumerInfo.getStreamName() + "\"");
System.out.println(" The consumer name is \"" + consumerInfo.getName() + "\".");
System.out.println(" The consumer has " + consumerInfo.getNumPending() + " messages available.");
MessageConsumer messageConsumer = consumerContext.consume(
msg -> {
System.out.println(" Received " + msg.getSubject());
msg.ack();
});
Thread.sleep(100);
To stop the consumer, the stop
on MessageConsumer
can be used.
In contrast to unsubscribe()
in the legacy API, this will not proactively
delete the consumer.
However, the consumer will be automatically deleted by the server when the
inactiveThreshold
is reached.
messageConsumer.stop();
System.out.println(" stop was called.");
IterableConsumer
An IterableConsumer
is returned when you call the consume
method on
the ConsumerContext
without supplying a message handler.
System.out.println("\nG. IterableConsumer (endless consumer manually calling next)");
consumerConfiguration = ConsumerConfiguration.builder().build();
consumerContext = streamContext.createOrUpdateConsumer(consumerConfiguration);
consumerInfo = consumerContext.getCachedConsumerInfo();
System.out.println(" A consumer was created on stream \"" + consumerInfo.getStreamName() + "\"");
System.out.println(" The consumer name is \"" + consumerInfo.getName() + "\".");
System.out.println(" The consumer has " + consumerInfo.getNumPending() + " messages available.");
Notice the nextMessage
method can throw a JetStreamStatusCheckedException
.
Under the covers the IterableConsumer
is handling more than just messages.
It handles information from the server regarding the status of the underlying
operations. For instance, it is possible, but unlikely, that the consumer
could be deleted by another application in your ecosystem and if that happens
in the middle of the consumer, the exception would be thrown.
IterableConsumer iterableConsumer = consumerContext.iterate();
try {
for (int x = 0; x < 3; x++) {
Message msg = iterableConsumer.nextMessage(100);
System.out.println(" Received " + msg.getSubject());
msg.ack();
}
iterableConsumer.stop();
System.out.println(" stop was called.");
}
catch (JetStreamStatusCheckedException se) {
System.out.println(" JetStreamStatusCheckedException: " + se.getMessage());
}
Retrieving messages on demand with fetch
and next
FetchConsumer
A FetchConsumer
is returned when you call the fetch
methods on ConsumerContext
.
You will use that object to call nextMessage
.
Notice there is no stop on the FetchConsumer
interface, the fetch stops by itself.
The new version of fetch is very similar to the old iterate, as it does not block
before returning the entire batch.
System.out.println("\nH. FetchConsumer (bounded consumer)");
consumerConfiguration = ConsumerConfiguration.builder().build();
consumerContext = streamContext.createOrUpdateConsumer(consumerConfiguration);
consumerInfo = consumerContext.getCachedConsumerInfo();
System.out.println(" A consumer was created on stream \"" + consumerInfo.getStreamName() + "\"");
System.out.println(" The consumer name is \"" + consumerInfo.getName() + "\".");
System.out.println(" The consumer has " + consumerInfo.getNumPending() + " messages available.");
start = System.currentTimeMillis();
FetchConsumer fetchConsumer = consumerContext.fetchMessages(2);
elapsed = System.currentTimeMillis() - start;
System.out.println(" 'fetch' returned in " + elapsed + "ms.");
fetch
will return null once there are no more messages to consume.
try {
Message msg = fetchConsumer.nextMessage();
while (msg != null) {
elapsed = System.currentTimeMillis() - start;
System.out.println(" Processing " + msg.getSubject() + " " + elapsed + "ms after start.");
msg.ack();
msg = fetchConsumer.nextMessage();
}
}
catch (JetStreamStatusCheckedException se) {
System.out.println(" JetStreamStatusCheckedException: " + se.getMessage());
}
elapsed = System.currentTimeMillis() - start;
System.out.println(" Fetch complete in " + elapsed + "ms.");
next
The next
method can be used to retrieve a single
message, as if you had called the old fetch or iterate with a batch size of 1.
The minimum wait time when calling next is 1 second (1000ms)
System.out.println("\nI. next (1 message)");
try {
Message msg = consumerContext.next(1000);
System.out.println(" Received " + msg.getSubject());
msg.ack();
}
catch (JetStreamStatusCheckedException se) {
System.out.println(" JetStreamStatusCheckedException: " + se.getMessage());
}
}
catch (JetStreamApiException | IOException | InterruptedException e) {
- JetStreamApiException: the stream or consumer did not exist
- IOException: problem making the connection
- InterruptedException: thread interruption in the body of the example
System.out.println(e);
}
}
}
Output
[1A[1B[0G[?25l [1A[1B[0G[?25l[+] Building 0.0s (0/0) [?25h A. Legacy Push Subscription with Ephemeral Consumer Async Received events.1 Received events.2 Received events.3 Sync Read events.1 Read events.2 Read events.3 B. Legacy Bind Subscription to Named Consumer. Received events.1 Received events.2 Received events.3 C. Legacy Pull Subscription then Iterate The call to `iterate(10, 2000)` returned in 2ms. Processing events.1 2ms after start. Processing events.2 3ms after start. Processing events.3 3ms after start. The iterate completed in 2004ms. Time reflects waiting for the entire batch, which isn't available. D. Simplification StreamContext Stream Name: migration Stream Subjects: [Subject{name='events.1', count=1}, Subject{name='events.2', count=1}, Subject{name='events.3', count=1}] E. Simplification, Create a Consumer A consumer was created on stream "migration" The consumer name is "vDwA32dwL9". The consumer has 3 messages available. The ConsumerContext for "vDwA32dwL9" was loaded from the StreamContext for "migration" The ConsumerContext for "vDwA32dwL9" was loaded from the Connection on the stream "migration" F. MessageConsumer (endless consumer with handler) A consumer was created on stream "migration" The consumer name is "vDwA32dwPN". The consumer has 3 messages available. Received events.1 Received events.2 Received events.3 stop was called. G. IterableConsumer (endless consumer manually calling next) A consumer was created on stream "migration" The consumer name is "vDwA32dwTb". The consumer has 3 messages available. Received events.1 Received events.2 Received events.3 stop was called. H. FetchConsumer (bounded consumer) A consumer was created on stream "migration" The consumer name is "vDwA32dwXp". The consumer has 3 messages available. 'fetch' returned in 3ms. Processing events.1 4ms after start. Processing events.2 4ms after start. Fetch complete in 5ms. I. next (1 message) Received events.3