-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathkafkajs.d.ts
371 lines (319 loc) · 9.13 KB
/
kafkajs.d.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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
import { ConsumerGlobalConfig, GlobalConfig, ProducerGlobalConfig } from './config'
import {
ConsumerGroupStates,
GroupOverview,
LibrdKafkaError,
GroupDescriptions,
DeleteGroupsResult
} from './rdkafka'
// Admin API related interfaces, types etc; and Error types are common, so
// just re-export them from here too.
export {
ConsumerGroupStates,
GroupOverview,
LibrdKafkaError,
GroupDescriptions,
DeleteGroupsResult
} from './rdkafka'
export interface OauthbearerProviderResponse {
value: string,
principal: string,
lifetime: number, // Lifetime must be in milliseconds.
extensions?: Map<string, string> | { [key: string]: string },
}
type SASLMechanismOptionsMap = {
plain: { username: string; password: string }
'scram-sha-256': { username: string; password: string }
'scram-sha-512': { username: string; password: string }
oauthbearer: { oauthBearerProvider: () => Promise<OauthbearerProviderResponse> }
}
export type SASLMechanism = keyof SASLMechanismOptionsMap
type SASLMechanismOptions<T> = T extends SASLMechanism
? { mechanism: T } & SASLMechanismOptionsMap[T]
: never
export type SASLOptions = SASLMechanismOptions<SASLMechanism>
export interface RetryOptions {
maxRetryTime?: number
initialRetryTime?: number
retries?: number
}
export enum logLevel {
NOTHING = 0,
ERROR = 1,
WARN = 2,
INFO = 3,
DEBUG = 4,
}
export type Logger = {
info: (message: string, extra?: object) => void
error: (message: string, extra?: object) => void
warn: (message: string, extra?: object) => void
debug: (message: string, extra?: object) => void
namespace: (namespace: string, logLevel?: logLevel) => Logger
setLogLevel: (logLevel: logLevel) => void
}
export interface KafkaConfig {
brokers: string[],
ssl?: boolean,
sasl?: SASLOptions,
clientId?: string
connectionTimeout?: number
authenticationTimeout?: number
requestTimeout?: number
enforceRequestTimeout?: boolean,
retry?: RetryOptions,
logLevel?: logLevel,
logger?: Logger,
}
export interface CommonConstructorConfig extends GlobalConfig {
kafkaJS?: KafkaConfig;
}
export class Kafka {
constructor(config: CommonConstructorConfig)
producer(config?: ProducerConstructorConfig): Producer
consumer(config: ConsumerConstructorConfig): Consumer
admin(config?: AdminConstructorConfig): Admin
}
type Client = {
connect(): Promise<void>
disconnect(): Promise<void>
logger(): Logger
setSaslCredentialProvider(authInfo: { username: string, password: string }): void
}
export enum CompressionTypes {
None = 'none',
GZIP = 'gzip',
Snappy = 'snappy',
LZ4 = 'lz4',
ZSTD = 'zstd',
}
export interface ProducerConfig {
metadataMaxAge?: number
allowAutoTopicCreation?: boolean
idempotent?: boolean
transactionalId?: string
transactionTimeout?: number
maxInFlightRequests?: number
acks?: number
compression?: CompressionTypes
timeout?: number,
retry?: RetryOptions,
logLevel?: logLevel,
logger?: Logger,
}
export interface ProducerConstructorConfig extends ProducerGlobalConfig {
kafkaJS?: ProducerConfig;
}
export interface IHeaders {
[key: string]: Buffer | string | (Buffer | string)[] | undefined
}
export interface Message {
key?: Buffer | string | null
value: Buffer | string | null
partition?: number
headers?: IHeaders
timestamp?: string
}
export interface ProducerRecord {
topic: string
messages: Message[]
}
export interface TopicMessages {
topic: string
messages: Message[]
}
export interface ProducerBatch {
topicMessages?: TopicMessages[]
}
export type RecordMetadata = {
topicName: string
partition: number
errorCode: number
offset?: string
timestamp?: string
baseOffset?: string
logAppendTime?: string
logStartOffset?: string
}
export type Transaction = Producer;
export type Producer = Client & {
send(record: ProducerRecord): Promise<RecordMetadata[]>
sendBatch(batch: ProducerBatch): Promise<RecordMetadata[]>
flush(args?: { timeout?: number }): Promise<void>
// Transactional producer-only methods.
transaction(): Promise<Transaction>
commit(): Promise<void>
abort(): Promise<void>
sendOffsets(args: { consumerGroupId?: string, consumer?: Consumer, topics: TopicOffsets[] }): Promise<void>
isActive(): boolean
}
export enum PartitionAssigners {
roundRobin = 'roundrobin',
range = 'range',
cooperativeSticky = 'cooperative-sticky'
}
export enum PartitionAssignors {
roundRobin = 'roundrobin',
range = 'range',
cooperativeSticky = 'cooperative-sticky'
}
export interface ConsumerConfig {
groupId: string
metadataMaxAge?: number
sessionTimeout?: number
rebalanceTimeout?: number
heartbeatInterval?: number
maxBytesPerPartition?: number
minBytes?: number
maxBytes?: number
maxWaitTimeInMs?: number
retry?: RetryOptions,
logLevel?: logLevel,
logger?: Logger,
allowAutoTopicCreation?: boolean
maxInFlightRequests?: number
readUncommitted?: boolean
rackId?: string
fromBeginning?: boolean
autoCommit?: boolean
autoCommitInterval?: number,
partitionAssigners?: PartitionAssigners[],
partitionAssignors?: PartitionAssignors[],
}
export interface ConsumerConstructorConfig extends ConsumerGlobalConfig {
kafkaJS?: ConsumerConfig;
}
interface MessageSetEntry {
key: Buffer | null
value: Buffer | null
timestamp: string
attributes: number
offset: string
size: number
headers?: never
leaderEpoch?: number
}
interface RecordBatchEntry {
key: Buffer | null
value: Buffer | null
timestamp: string
attributes: number
offset: string
headers: IHeaders
size?: never
leaderEpoch?: number
}
export type Batch = {
topic: string
partition: number
highWatermark: string
messages: KafkaMessage[]
isEmpty(): boolean
firstOffset(): string | null
lastOffset(): string
}
export type KafkaMessage = MessageSetEntry | RecordBatchEntry
export interface EachMessagePayload {
topic: string
partition: number
message: KafkaMessage
heartbeat(): Promise<void>
pause(): () => void
}
export interface PartitionOffset {
partition: number
offset: string
}
export interface TopicOffsets {
topic: string
partitions: PartitionOffset[]
}
export interface EachBatchPayload {
batch: Batch
resolveOffset(offset: string): void
heartbeat(): Promise<void>
pause(): () => void
commitOffsetsIfNecessary(): Promise<void>
isRunning(): boolean
isStale(): boolean
}
export type EachBatchHandler = (payload: EachBatchPayload) => Promise<void>
export type EachMessageHandler = (payload: EachMessagePayload) => Promise<void>
/**
* @deprecated Replaced by ConsumerSubscribeTopics
*/
export type ConsumerSubscribeTopic = { topic: string | RegExp; replace?: boolean }
export type ConsumerSubscribeTopics = { topics: (string | RegExp)[]; replace?: boolean }
export type ConsumerRunConfig = {
eachBatchAutoResolve?: boolean,
eachMessage?: EachMessageHandler
eachBatch?: EachBatchHandler
}
export type TopicPartitions = { topic: string; partitions: number[] }
export type TopicPartition = {
topic: string
partition: number
leaderEpoch?: number
}
export type TopicPartitionOffset = TopicPartition & {
offset: string
}
export type TopicPartitionOffsetAndMetadata = TopicPartitionOffset & {
metadata?: string | null
}
export interface OffsetsByTopicPartition {
topics: TopicOffsets[]
}
export type Consumer = Client & {
subscribe(subscription: ConsumerSubscribeTopics | ConsumerSubscribeTopic): Promise<void>
stop(): Promise<void>
run(config?: ConsumerRunConfig): Promise<void>
storeOffsets(topicPartitions: Array<TopicPartitionOffsetAndMetadata>): void
commitOffsets(topicPartitions?: Array<TopicPartitionOffsetAndMetadata>): Promise<void>
committed(topicPartitions?: Array<TopicPartition>, timeout?: number): Promise<TopicPartitionOffsetAndMetadata[]>
seek(topicPartitionOffset: TopicPartitionOffset): Promise<void>
pause(topics: Array<{ topic: string; partitions?: number[] }>): void
paused(): TopicPartitions[]
resume(topics: Array<{ topic: string; partitions?: number[] }>): void
assignment(): TopicPartitions[]
}
export interface AdminConfig {
retry?: RetryOptions
logLevel?: logLevel,
logger?: Logger,
}
export interface AdminConstructorConfig extends GlobalConfig {
kafkaJS?: AdminConfig;
}
export interface ReplicaAssignment {
partition: number
replicas: Array<number>
}
export interface IResourceConfigEntry {
name: string
value: string
}
export interface ITopicConfig {
topic: string
numPartitions?: number
replicationFactor?: number
configEntries?: IResourceConfigEntry[]
}
export type Admin = {
connect(): Promise<void>
disconnect(): Promise<void>
createTopics(options: {
timeout?: number
topics: ITopicConfig[]
}): Promise<boolean>
deleteTopics(options: { topics: string[]; timeout?: number }): Promise<void>
listTopics(options?: { timeout?: number }): Promise<string[]>
listGroups(options?: {
timeout?: number,
matchConsumerGroupStates?: ConsumerGroupStates[]
}): Promise<{ groups: GroupOverview[], errors: LibrdKafkaError[] }>
describeGroups(
groups: string[],
options?: { timeout?: number, includeAuthorizedOperations?: boolean }): Promise<GroupDescriptions>
deleteGroups(groupIds: string[], options?: { timeout?: number }): Promise<DeleteGroupsResult[]>
}