-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathtstest.ts
347 lines (305 loc) · 10.8 KB
/
tstest.ts
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import Pulsar = require('./index');
// Maximum parameters
(async () => {
const authTls: Pulsar.AuthenticationTls = new Pulsar.AuthenticationTls({
certificatePath: '/path/to/cert.pem',
privateKeyPath: '/path/to/key.pem',
});
const authAthenz1: Pulsar.AuthenticationAthenz = new Pulsar.AuthenticationAthenz('{}');
const authAthenz2: Pulsar.AuthenticationAthenz = new Pulsar.AuthenticationAthenz({
tenantDomain: 'athenz.tenant.domain',
tenantService: 'service',
providerDomain: 'athenz.provider.domain',
privateKey: 'file:///path/to/private.key',
ztsUrl: 'https://localhost:8443',
keyId: '0',
principalHeader: 'Athenz-Principal-Auth',
roleHeader: 'Athenz-Role-Auth',
tokenExpirationTime: '3600',
});
const authOauth2PrivateKey: Pulsar.AuthenticationOauth2 = new Pulsar.AuthenticationOauth2({
type: "client_credentials",
issuer_url: "issuer-url",
private_key: "credentials-file-path",
audience: "audience",
scope: "your-scope",
});
const authOauth2ClientId: Pulsar.AuthenticationOauth2 = new Pulsar.AuthenticationOauth2({
type: "client_credentials",
issuer_url: "issuer-url",
client_id: "client-id",
client_secret: "client-secret",
audience: "audience",
scope: "scope"
});
const authToken: Pulsar.AuthenticationToken = new Pulsar.AuthenticationToken({
token: 'foobar',
});
const client: Pulsar.Client = new Pulsar.Client({
serviceUrl: 'pulsar://localhost:6650',
authentication: authToken,
operationTimeoutSeconds: 30,
ioThreads: 4,
messageListenerThreads: 4,
concurrentLookupRequest: 100,
useTls: false,
tlsTrustCertsFilePath: '/path/to/ca-cert.pem',
tlsValidateHostname: false,
tlsAllowInsecureConnection: false,
statsIntervalInSeconds: 60,
log: (level: Pulsar.LogLevel, file: string, line: number, message: string) => {
switch (level) {
case Pulsar.LogLevel.DEBUG:
console.log(`[DEBUG] ${message}`);
break;
case Pulsar.LogLevel.INFO:
console.log(`[INFO] ${message}`);
break;
case Pulsar.LogLevel.WARN:
console.log(`[WARN] ${message}`);
break;
case Pulsar.LogLevel.ERROR:
console.log(`[ERROR] ${message}`);
break;
}
},
});
const producer1: Pulsar.Producer = await client.createProducer({
topic: 'persistent://public/default/my-topic',
producerName: 'producer1',
sendTimeoutMs: 10000,
initialSequenceId: 1,
maxPendingMessages: 100,
maxPendingMessagesAcrossPartitions: 1000,
blockIfQueueFull: false,
messageRoutingMode: 'UseSinglePartition',
hashingScheme: 'Murmur3_32Hash',
compressionType: 'Zlib',
batchingEnabled: false,
batchingMaxPublishDelayMs: 50,
batchingMaxMessages: 100,
properties: {
key1: 'value1',
key2: 'value2',
},
publicKeyPath: '/path/to/public.key',
encryptionKey: 'encryption-key',
cryptoFailureAction: 'FAIL',
});
const producer2: Pulsar.Producer = await client.createProducer({
topic: 'persistent://public/default/my-topic',
messageRoutingMode: 'RoundRobinDistribution',
hashingScheme: 'BoostHash',
compressionType: 'LZ4',
cryptoFailureAction: 'SEND',
});
const producer3: Pulsar.Producer = await client.createProducer({
topic: 'persistent://public/default/my-topic',
messageRoutingMode: 'CustomPartition',
hashingScheme: 'JavaStringHash',
compressionType: 'ZSTD',
});
const producer4: Pulsar.Producer = await client.createProducer({
topic: 'persistent://public/default/my-topic',
compressionType: 'SNAPPY',
});
const consumer1: Pulsar.Consumer = await client.subscribe({
topic: 'persistent://public/default/my-topic',
subscription: 'my-sub1',
subscriptionType: 'Exclusive',
subscriptionInitialPosition: 'Latest',
ackTimeoutMs: 3000,
nAckRedeliverTimeoutMs: 5000,
receiverQueueSize: 1000,
receiverQueueSizeAcrossPartitions: 5000,
consumerName: 'consumer1',
properties: {
key1: 'value1',
key2: 'value2',
},
readCompacted: false,
privateKeyPath: '/path/to/private.key',
cryptoFailureAction: 'FAIL',
});
const consumer2: Pulsar.Consumer = await client.subscribe({
topic: 'persistent://public/default/my-topic',
subscription: 'my-sub2',
subscriptionType: 'Shared',
subscriptionInitialPosition: 'Earliest',
cryptoFailureAction: 'DISCARD',
});
const consumer3: Pulsar.Consumer = await client.subscribe({
topic: 'persistent://public/default/my-topic',
subscription: 'my-sub3',
subscriptionType: 'KeyShared',
listener: (message: Pulsar.Message, consumer: Pulsar.Consumer) => {
},
cryptoFailureAction: 'CONSUME',
});
const consumer4: Pulsar.Consumer = await client.subscribe({
topic: 'persistent://public/default/my-topic',
subscription: 'my-sub4',
subscriptionType: 'Failover',
});
const reader1: Pulsar.Reader = await client.createReader({
topic: 'persistent://public/default/my-topic',
startMessageId: Pulsar.MessageId.latest(),
receiverQueueSize: 1000,
readerName: 'reader1',
subscriptionRolePrefix: 'reader-',
readCompacted: false,
});
const reader2: Pulsar.Reader = await client.createReader({
topic: 'persistent://public/default/my-topic',
startMessageId: Pulsar.MessageId.earliest(),
});
const reader3: Pulsar.Reader = await client.createReader({
topic: 'persistent://public/default/my-topic',
startMessageId: Pulsar.MessageId.earliest(),
listener: (message: Pulsar.Message, reader: Pulsar.Reader) => {
},
});
const producerName: string = producer1.getProducerName();
const topicName1: string = producer1.getTopic();
const producerIsConnected: boolean = producer1.isConnected();
const messageId1: Pulsar.MessageId = await producer1.send({
data: Buffer.from('my-message'),
properties: {
key1: 'value1',
key2: 'value2',
},
eventTimestamp: Date.now(),
sequenceId: 10,
partitionKey: 'key1',
orderingKey: 'orderingKey1',
replicationClusters: [
'cluster1',
'cluster2',
],
deliverAfter: 30000,
deliverAt: Date.now() + 30000,
disableReplication: false,
});
const messageIdString: string = messageId1.toString();
const messageIdBuffer: Buffer = messageId1.serialize();
const messageId2: Pulsar.MessageId = Pulsar.MessageId.deserialize(messageIdBuffer);
const message1: Pulsar.Message = await consumer1.receive();
const message2: Pulsar.Message = await consumer2.receive(1000);
const consumerIsConnected: boolean = consumer1.isConnected();
consumer1.negativeAcknowledge(message1);
consumer1.negativeAcknowledgeId(messageId1);
consumer1.acknowledge(message1);
consumer1.acknowledgeId(messageId1);
consumer1.acknowledgeCumulative(message1);
consumer1.acknowledgeCumulativeId(messageId1);
const topicName2: string = message1.getTopicName();
const properties: { [key: string]: string } = message1.getProperties();
const messageBuffer: Buffer = message1.getData();
const messageId3: Pulsar.MessageId = message1.getMessageId();
const publishTime: number = message1.getPublishTimestamp();
const eventTime: number = message1.getEventTimestamp();
const redeliveryCount: number = message1.getRedeliveryCount();
const partitionKey: string = message1.getPartitionKey();
const message3: Pulsar.Message = await reader1.readNext();
const message4: Pulsar.Message = await reader2.readNext(1000);
const hasNext: boolean = reader1.hasNext();
const readerIsConnected: boolean = reader1.isConnected();
await producer1.flush();
await producer1.close();
await producer2.close();
await producer3.close();
await producer4.close();
await consumer1.unsubscribe();
await consumer2.close();
await consumer3.close();
await consumer4.close();
await reader1.close();
await reader2.close();
await reader3.close();
await client.close();
})();
// Minimal parameters
(async () => {
const authAthenz: Pulsar.AuthenticationAthenz = new Pulsar.AuthenticationAthenz({
tenantDomain: 'athenz.tenant.domain',
tenantService: 'service',
providerDomain: 'athenz.provider.domain',
privateKey: 'file:///path/to/private.key',
ztsUrl: 'https://localhost:8443',
});
const client: Pulsar.Client = new Pulsar.Client({
serviceUrl: 'pulsar://localhost:6650',
});
const producer: Pulsar.Producer = await client.createProducer({
topic: 'persistent://public/default/my-topic',
});
const consumer1: Pulsar.Consumer = await client.subscribe({
topic: 'persistent://public/default/my-topic',
subscription: 'my-sub1',
});
const consumer2: Pulsar.Consumer = await client.subscribe({
topics: ['persistent://public/default/my-topic'],
subscription: 'my-sub2',
});
const consumer3: Pulsar.Consumer = await client.subscribe({
topicsPattern: 'persistent://public/default/my-topi[a-z]',
subscription: 'my-sub3',
});
const reader: Pulsar.Reader = await client.createReader({
topic: 'persistent://public/default/my-topic',
startMessageId: Pulsar.MessageId.latest(),
});
const messageId: Pulsar.MessageId = await producer.send({
data: Buffer.from('my-message'),
});
await producer.close();
await consumer1.close();
await consumer2.close();
await consumer3.close();
await reader.close();
await client.close();
})();
// Missing required parameters
(async () => {
// $ExpectError
const authAthenz: Pulsar.AuthenticationAthenz = new Pulsar.AuthenticationAthenz({
});
// $ExpectError
const client: Pulsar.Client = new Pulsar.Client({
});
// $ExpectError
const producer: Pulsar.Producer = await client.createProducer({
});
// $ExpectError
const consumer: Pulsar.Consumer = await client.subscribe({
});
// $ExpectError
const reader1: Pulsar.Reader = await client.createReader({
topic: 'persistent://public/default/my-topic',
});
// $ExpectError
const reader2: Pulsar.Reader = await client.createReader({
startMessageId: Pulsar.MessageId.latest(),
});
// $ExpectError
const messageId: Pulsar.MessageId = await producer.send({
});
})();