forked from nats-io/nats.java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FetchBytesExample.java
178 lines (155 loc) · 7.72 KB
/
FetchBytesExample.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
// Copyright 2023 The NATS Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package io.nats.examples.jetstream.simple;
import io.nats.client.*;
import io.nats.client.api.ConsumerConfiguration;
import java.io.IOException;
import static io.nats.examples.jetstream.NatsJsUtils.createOrReplaceStream;
import static io.nats.examples.jetstream.NatsJsUtils.publishOrExit;
/**
* This example will demonstrate simplified fetch
*/
public class FetchBytesExample {
private static final String STREAM = "fetch-bytes-stream";
private static final String SUBJECT = "fetch-bytes-subject";
private static final String MESSAGE_TEXT = "fetch-bytes";
private static final String CONSUMER_NAME_PREFIX = "fetch-bytes-consumer";
private static final int MESSAGES = 20;
private static final int EXPIRES_SECONDS = 2;
public static String SERVER = "nats://localhost:4222";
public static void main(String[] args) {
Options options = Options.builder().server(SERVER).build();
try (Connection nc = Nats.connect(options)) {
// bytes don't work before server v2.9.1
if (nc.getServerInfo().isOlderThanVersion("2.9.1")) {
return;
}
JetStreamManagement jsm = nc.jetStreamManagement();
JetStream js = nc.jetStream();
// set's up the stream and publish data
createOrReplaceStream(jsm, STREAM, SUBJECT);
publishOrExit(js, SUBJECT, MESSAGE_TEXT, MESSAGES);
// Different max bytes sizes demonstrate expiration behavior
// A. max bytes is reached before message count
// Each test message consumeByteCount is 138
simpleFetch(nc, js, "A", 0, 1000);
// B. fetch max messages is reached before byte count
// Each test message consumeByteCount is 131 or 134
simpleFetch(nc, js, "B", 10, 2000);
// C. fewer bytes available than the byte count
// Each test message consumeByteCount is 138, 140 or 141
simpleFetch(nc, js, "C", 0, 4000);
}
catch (IOException ioe) {
// problem making the connection or
}
catch (InterruptedException e) {
// thread interruption in the body of the example
}
}
private static void simpleFetch(Connection nc, JetStream js, String label, int maxMessages, int maxBytes) {
String consumerName = generateConsumerName(maxMessages, maxBytes);
// get stream context, create consumer and get the consumer context
StreamContext streamContext;
ConsumerContext consumerContext;
try {
streamContext = nc.getStreamContext(STREAM);
consumerContext = streamContext.createOrUpdateConsumer(ConsumerConfiguration.builder().durable(consumerName).build());
}
catch (JetStreamApiException | IOException e) {
// JetStreamApiException:
// the stream or consumer did not exist
// IOException:
// likely a connection problem
return;
}
// Custom FetchConsumeOptions
FetchConsumeOptions.Builder builder = FetchConsumeOptions.builder().expiresIn(EXPIRES_SECONDS * 1000);
if (maxMessages == 0) {
builder.maxBytes(maxBytes);
}
else {
builder.max(maxBytes, maxMessages);
}
FetchConsumeOptions fetchConsumeOptions = builder.build();
printExplanation(label, consumerName, maxMessages, maxBytes);
// create the consumer then use it
int receivedMessages = 0;
long receivedBytes = 0;
long start = System.currentTimeMillis();
try (FetchConsumer consumer = consumerContext.fetch(fetchConsumeOptions)) {
Message msg = consumer.nextMessage();
while (msg != null) {
msg.ack();
receivedMessages++;
receivedBytes += msg.consumeByteCount();
if (receivedBytes >= maxBytes || receivedMessages == maxMessages) {
msg = null;
}
else {
msg = consumer.nextMessage();
}
}
}
catch (JetStreamApiException | JetStreamStatusCheckedException | IOException | InterruptedException e) {
// JetStreamApiException:
// api calls under the covers theoretically this could fail, but practically it won't.
// JetStreamStatusCheckedException:
// Either the consumer was deleted in the middle
// of the pull or there is a new status from the
// server that this client is not aware of
// IOException:
// likely a connection problem
// InterruptedException:
// developer interrupted this thread?
System.err.println("Exception should be handled properly, just exiting here.");
System.exit(-1);
}
catch (Exception e) {
// this is from the FetchConsumer being AutoCloseable, but should never be called
// as work inside the close is already guarded by try/catch
System.err.println("Exception should be handled properly, just exiting here.");
System.exit(-1);
}
long elapsed = System.currentTimeMillis() - start;
printSummary(receivedMessages, receivedBytes, elapsed);
}
private static String generateConsumerName(int maxMessages, int maxBytes) {
if (maxMessages == 0) {
return CONSUMER_NAME_PREFIX + "-" + maxBytes + "-bytes-unlimited-messages";
}
return CONSUMER_NAME_PREFIX + "-" + maxBytes + "-bytes-" + maxMessages + "-messages";
}
private static void printSummary(int receivedMessages, long receivedBytes, long elapsed) {
System.out.println("+++ Fetch executed and " + receivedBytes + "/" + receivedMessages + " bytes/message(s) were received in " + elapsed + "ms\n");
}
private static void printExplanation(String label, String name, int maxMessages, int maxBytes) {
System.out.println("--------------------------------------------------------------------------------");
System.out.println(label + ". " + name);
switch (label) {
case "A":
System.out.println("=== Max bytes (" + maxBytes + ") threshold will be met since the next message would put the byte count over " + maxBytes + " bytes");
System.out.println("=== nextMessage() will return null when consume is done.");
break;
case "B":
System.out.println("=== Fetch max messages (" + maxMessages + ") will be reached before max bytes (" + maxBytes + ")");
System.out.println("=== nextMessage() will return null when consume is done");
break;
case "C":
System.out.println("=== Max bytes (" + maxBytes + ") is larger than available bytes (about 2700).");
System.out.println("=== FetchConsumeOption \"expires in\" is " + EXPIRES_SECONDS + " seconds.");
System.out.println("=== nextMessage() blocks until expiration when there are no messages available, then returns null.");
break;
}
}
}