@kronos-ts/axon-server 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/axon-server-event-store.d.ts +0 -16
- package/dist/axon-server-event-store.d.ts.map +1 -1
- package/dist/axon-server-event-store.js +47 -14
- package/dist/axon-server-event-store.js.map +1 -1
- package/dist/axon-server-snapshotting-event-store.d.ts +30 -0
- package/dist/axon-server-snapshotting-event-store.d.ts.map +1 -0
- package/dist/axon-server-snapshotting-event-store.js +153 -0
- package/dist/axon-server-snapshotting-event-store.js.map +1 -0
- package/dist/axon-server.d.ts +33 -60
- package/dist/axon-server.d.ts.map +1 -1
- package/dist/axon-server.js +58 -59
- package/dist/axon-server.js.map +1 -1
- package/dist/connection-manager.d.ts +2 -2
- package/dist/connection-manager.d.ts.map +1 -1
- package/dist/connection.d.ts +23 -21
- package/dist/connection.d.ts.map +1 -1
- package/dist/connection.js +6 -5
- package/dist/connection.js.map +1 -1
- package/dist/context-view.d.ts +2 -2
- package/dist/context-view.d.ts.map +1 -1
- package/dist/control-plane.d.ts +5 -5
- package/dist/control-plane.d.ts.map +1 -1
- package/dist/event-processor-info.d.ts +4 -4
- package/dist/event-processor-info.d.ts.map +1 -1
- package/dist/flow-controlled-sender.d.ts +2 -2
- package/dist/flow-controlled-sender.d.ts.map +1 -1
- package/dist/generated/command.d.ts +20 -20
- package/dist/generated/command.d.ts.map +1 -1
- package/dist/generated/common.d.ts +20 -20
- package/dist/generated/common.d.ts.map +1 -1
- package/dist/generated/control.d.ts +36 -40
- package/dist/generated/control.d.ts.map +1 -1
- package/dist/generated/dcb.d.ts +88 -94
- package/dist/generated/dcb.d.ts.map +1 -1
- package/dist/generated/event.d.ts +81 -84
- package/dist/generated/event.d.ts.map +1 -1
- package/dist/generated/google/protobuf/empty.d.ts +3 -4
- package/dist/generated/google/protobuf/empty.d.ts.map +1 -1
- package/dist/generated/query.d.ts +40 -40
- package/dist/generated/query.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/message-size.d.ts +2 -2
- package/dist/message-size.d.ts.map +1 -1
- package/dist/outbound-stream.d.ts +2 -2
- package/dist/outbound-stream.d.ts.map +1 -1
- package/dist/platform-service.d.ts +4 -4
- package/dist/platform-service.d.ts.map +1 -1
- package/dist/resilience.d.ts +62 -0
- package/dist/resilience.d.ts.map +1 -0
- package/dist/resilience.js +103 -0
- package/dist/resilience.js.map +1 -0
- package/dist/shutdown-latch.d.ts +4 -4
- package/dist/shutdown-latch.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/axon-server-event-store.ts +46 -14
- package/src/axon-server-snapshotting-event-store.ts +191 -0
- package/src/axon-server.ts +72 -77
- package/src/connection-manager.ts +1 -1
- package/src/connection.ts +16 -14
- package/src/context-view.ts +1 -1
- package/src/control-plane.ts +3 -3
- package/src/event-processor-info.ts +2 -2
- package/src/flow-controlled-sender.ts +1 -1
- package/src/generated/command.ts +10 -10
- package/src/generated/common.ts +10 -10
- package/src/generated/control.ts +20 -20
- package/src/generated/dcb.ts +47 -47
- package/src/generated/event.ts +42 -42
- package/src/generated/google/protobuf/empty.ts +2 -2
- package/src/generated/query.ts +20 -20
- package/src/index.ts +1 -1
- package/src/message-size.ts +1 -1
- package/src/outbound-stream.ts +1 -1
- package/src/platform-service.ts +2 -2
- package/src/resilience.ts +149 -0
- package/src/shutdown-latch.ts +2 -2
- package/dist/axon-server-snapshot-store.d.ts +0 -12
- package/dist/axon-server-snapshot-store.d.ts.map +0 -1
- package/dist/axon-server-snapshot-store.js +0 -82
- package/dist/axon-server-snapshot-store.js.map +0 -1
- package/src/axon-server-snapshot-store.ts +0 -110
|
@@ -3,7 +3,7 @@ import type { CallContext, CallOptions } from "nice-grpc-common";
|
|
|
3
3
|
import { ErrorMessage, FlowControl, InstructionAck, MetaDataValue, ProcessingInstruction, SerializedObject } from "./common.js";
|
|
4
4
|
export declare const protobufPackage = "io.axoniq.axonserver.grpc.query";
|
|
5
5
|
/** Message containing Query related instructions for Axon Server */
|
|
6
|
-
export
|
|
6
|
+
export type QueryProviderOutbound = {
|
|
7
7
|
/** Registers a Query Handler with AxonServer */
|
|
8
8
|
subscribe?: QuerySubscription | undefined;
|
|
9
9
|
/** Unregisters a Query Handler with AxonServer */
|
|
@@ -20,9 +20,9 @@ export interface QueryProviderOutbound {
|
|
|
20
20
|
ack?: InstructionAck | undefined;
|
|
21
21
|
/** Instruction identifier. If this identifier is set, this instruction will be acknowledged via inbound stream */
|
|
22
22
|
instructionId: string;
|
|
23
|
-
}
|
|
23
|
+
};
|
|
24
24
|
/** Queries or Query related instructions from AxonServer for the connected application */
|
|
25
|
-
export
|
|
25
|
+
export type QueryProviderInbound = {
|
|
26
26
|
/** Acknowledgement of previously sent instruction via outbound stream */
|
|
27
27
|
ack?: InstructionAck | undefined;
|
|
28
28
|
/** Represents an incoming Query, for which this component is expected to provide a response */
|
|
@@ -35,27 +35,27 @@ export interface QueryProviderInbound {
|
|
|
35
35
|
queryFlowControl?: QueryFlowControl | undefined;
|
|
36
36
|
/** Instruction identifier. If this identifier is set, this instruction will be acknowledged via outbound stream */
|
|
37
37
|
instructionId: string;
|
|
38
|
-
}
|
|
39
|
-
export
|
|
38
|
+
};
|
|
39
|
+
export type QueryReference = {
|
|
40
40
|
/** The identifier of the query request. */
|
|
41
41
|
requestId: string;
|
|
42
|
-
}
|
|
42
|
+
};
|
|
43
43
|
/** Message indicating that query has been completed. */
|
|
44
|
-
export
|
|
44
|
+
export type QueryComplete = {
|
|
45
45
|
/** A unique identifier for this message */
|
|
46
46
|
messageId: string;
|
|
47
47
|
/** The identifier of the incoming query to complete */
|
|
48
48
|
requestId: string;
|
|
49
|
-
}
|
|
49
|
+
};
|
|
50
50
|
/** Message indicating that consumer is requesting more messages from producer. */
|
|
51
|
-
export
|
|
51
|
+
export type QueryFlowControl = {
|
|
52
52
|
/** The identifier of the incoming query to complete */
|
|
53
53
|
queryReference: QueryReference | undefined;
|
|
54
54
|
/** Number of messages requested */
|
|
55
55
|
permits: bigint;
|
|
56
|
-
}
|
|
56
|
+
};
|
|
57
57
|
/** Message representing an incoming Query */
|
|
58
|
-
export
|
|
58
|
+
export type QueryRequest = {
|
|
59
59
|
/** The message ID of the incoming Query */
|
|
60
60
|
messageIdentifier: string;
|
|
61
61
|
/** The name of the Query to execute */
|
|
@@ -80,13 +80,13 @@ export interface QueryRequest {
|
|
|
80
80
|
clientId: string;
|
|
81
81
|
/** The Name of the Component dispatching the query */
|
|
82
82
|
componentName: string;
|
|
83
|
-
}
|
|
84
|
-
export
|
|
83
|
+
};
|
|
84
|
+
export type QueryRequest_MetaDataEntry = {
|
|
85
85
|
key: string;
|
|
86
86
|
value: MetaDataValue | undefined;
|
|
87
|
-
}
|
|
87
|
+
};
|
|
88
88
|
/** Message that represents the Response to a Query */
|
|
89
|
-
export
|
|
89
|
+
export type QueryResponse = {
|
|
90
90
|
/** The unique identifier of the Response Message */
|
|
91
91
|
messageIdentifier: string;
|
|
92
92
|
/** An Error Code identifying the type of error, if any */
|
|
@@ -103,13 +103,13 @@ export interface QueryResponse {
|
|
|
103
103
|
processingInstructions: ProcessingInstruction[];
|
|
104
104
|
/** The unique identifier of the Query to which this is a response */
|
|
105
105
|
requestIdentifier: string;
|
|
106
|
-
}
|
|
107
|
-
export
|
|
106
|
+
};
|
|
107
|
+
export type QueryResponse_MetaDataEntry = {
|
|
108
108
|
key: string;
|
|
109
109
|
value: MetaDataValue | undefined;
|
|
110
|
-
}
|
|
110
|
+
};
|
|
111
111
|
/** Message that represents a Subscription Query */
|
|
112
|
-
export
|
|
112
|
+
export type SubscriptionQuery = {
|
|
113
113
|
/** A unique identifier for this subscription */
|
|
114
114
|
subscriptionIdentifier: string;
|
|
115
115
|
/** The number of messages the Server may send before needing to await additional permits */
|
|
@@ -122,9 +122,9 @@ export interface SubscriptionQuery {
|
|
|
122
122
|
* @deprecated
|
|
123
123
|
*/
|
|
124
124
|
updateResponseType: SerializedObject | undefined;
|
|
125
|
-
}
|
|
125
|
+
};
|
|
126
126
|
/** A message containing an Update of a Query Subscription Response */
|
|
127
|
-
export
|
|
127
|
+
export type QueryUpdate = {
|
|
128
128
|
/** The unique identifier of this Update */
|
|
129
129
|
messageIdentifier: string;
|
|
130
130
|
/** The object representing the Update */
|
|
@@ -141,20 +141,20 @@ export interface QueryUpdate {
|
|
|
141
141
|
errorCode: string;
|
|
142
142
|
/** A detailed description of the error, if any */
|
|
143
143
|
errorMessage: ErrorMessage | undefined;
|
|
144
|
-
}
|
|
145
|
-
export
|
|
144
|
+
};
|
|
145
|
+
export type QueryUpdate_MetaDataEntry = {
|
|
146
146
|
key: string;
|
|
147
147
|
value: MetaDataValue | undefined;
|
|
148
|
-
}
|
|
148
|
+
};
|
|
149
149
|
/** Message indicating that all relevant Updates have been sent for a Subscription Query, and that no further Updates are available */
|
|
150
|
-
export
|
|
150
|
+
export type QueryUpdateComplete = {
|
|
151
151
|
/** The identifier of the Client instance providing the Update */
|
|
152
152
|
clientId: string;
|
|
153
153
|
/** The Component Name of the Client providing the Update */
|
|
154
154
|
componentName: string;
|
|
155
|
-
}
|
|
155
|
+
};
|
|
156
156
|
/** Message indicating that an Error occurred and that no Updates will be sent for a Subscription Query */
|
|
157
|
-
export
|
|
157
|
+
export type QueryUpdateCompleteExceptionally = {
|
|
158
158
|
/** The identifier of the Client instance providing the Update */
|
|
159
159
|
clientId: string;
|
|
160
160
|
/** The Component Name of the Client providing the Update */
|
|
@@ -163,9 +163,9 @@ export interface QueryUpdateCompleteExceptionally {
|
|
|
163
163
|
errorCode: string;
|
|
164
164
|
/** A detailed description of the error, if available */
|
|
165
165
|
errorMessage: ErrorMessage | undefined;
|
|
166
|
-
}
|
|
166
|
+
};
|
|
167
167
|
/** Message describing possible interactions for a Subscription Query */
|
|
168
|
-
export
|
|
168
|
+
export type SubscriptionQueryRequest = {
|
|
169
169
|
/** Start a Subscription Query with the given details. */
|
|
170
170
|
subscribe?: SubscriptionQuery | undefined;
|
|
171
171
|
/** Ends a previously started Subscription Query with the given details */
|
|
@@ -184,9 +184,9 @@ export interface SubscriptionQueryRequest {
|
|
|
184
184
|
* set on this message.
|
|
185
185
|
*/
|
|
186
186
|
flowControl?: SubscriptionQuery | undefined;
|
|
187
|
-
}
|
|
187
|
+
};
|
|
188
188
|
/** Represents a Response Message for a Subscription Query */
|
|
189
|
-
export
|
|
189
|
+
export type SubscriptionQueryResponse = {
|
|
190
190
|
/** The unique identifier for this message */
|
|
191
191
|
messageIdentifier: string;
|
|
192
192
|
/** The identifier of the subscription query this is a response for */
|
|
@@ -199,9 +199,9 @@ export interface SubscriptionQueryResponse {
|
|
|
199
199
|
complete?: QueryUpdateComplete | undefined;
|
|
200
200
|
/** Indicates the Query failed exceptionally, and no more Updates will be sent */
|
|
201
201
|
completeExceptionally?: QueryUpdateCompleteExceptionally | undefined;
|
|
202
|
-
}
|
|
202
|
+
};
|
|
203
203
|
/** Message containing details of a Registration of a Query Handler in a component */
|
|
204
|
-
export
|
|
204
|
+
export type QuerySubscription = {
|
|
205
205
|
/** The unique identifier of this Message */
|
|
206
206
|
messageId: string;
|
|
207
207
|
/** The name of the Query the Handler is subscribed to */
|
|
@@ -212,7 +212,7 @@ export interface QuerySubscription {
|
|
|
212
212
|
componentName: string;
|
|
213
213
|
/** The unique identifier of the Client Instance containing the Query Handler */
|
|
214
214
|
clientId: string;
|
|
215
|
-
}
|
|
215
|
+
};
|
|
216
216
|
export declare const QueryProviderOutbound: MessageFns<QueryProviderOutbound>;
|
|
217
217
|
export declare const QueryProviderInbound: MessageFns<QueryProviderInbound>;
|
|
218
218
|
export declare const QueryReference: MessageFns<QueryReference>;
|
|
@@ -265,22 +265,22 @@ export declare const QueryServiceDefinition: {
|
|
|
265
265
|
};
|
|
266
266
|
};
|
|
267
267
|
};
|
|
268
|
-
export
|
|
268
|
+
export type QueryServiceImplementation<CallContextExt = {}> = {
|
|
269
269
|
/** Opens a Query- and Instruction stream to AxonServer. */
|
|
270
270
|
openStream(request: AsyncIterable<QueryProviderOutbound>, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<QueryProviderInbound>>;
|
|
271
271
|
/** Sends a point-to-point or scatter-gather Query */
|
|
272
272
|
query(request: QueryRequest, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<QueryResponse>>;
|
|
273
273
|
/** Opens a Subscription Query */
|
|
274
274
|
subscription(request: AsyncIterable<SubscriptionQueryRequest>, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<SubscriptionQueryResponse>>;
|
|
275
|
-
}
|
|
276
|
-
export
|
|
275
|
+
};
|
|
276
|
+
export type QueryServiceClient<CallOptionsExt = {}> = {
|
|
277
277
|
/** Opens a Query- and Instruction stream to AxonServer. */
|
|
278
278
|
openStream(request: AsyncIterable<DeepPartial<QueryProviderOutbound>>, options?: CallOptions & CallOptionsExt): AsyncIterable<QueryProviderInbound>;
|
|
279
279
|
/** Sends a point-to-point or scatter-gather Query */
|
|
280
280
|
query(request: DeepPartial<QueryRequest>, options?: CallOptions & CallOptionsExt): AsyncIterable<QueryResponse>;
|
|
281
281
|
/** Opens a Subscription Query */
|
|
282
282
|
subscription(request: AsyncIterable<DeepPartial<SubscriptionQueryRequest>>, options?: CallOptions & CallOptionsExt): AsyncIterable<SubscriptionQueryResponse>;
|
|
283
|
-
}
|
|
283
|
+
};
|
|
284
284
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;
|
|
285
285
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
286
286
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
@@ -288,13 +288,13 @@ export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<
|
|
|
288
288
|
export type ServerStreamingMethodResult<Response> = {
|
|
289
289
|
[Symbol.asyncIterator](): AsyncIterator<Response, void>;
|
|
290
290
|
};
|
|
291
|
-
export
|
|
291
|
+
export type MessageFns<T> = {
|
|
292
292
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
293
293
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
294
294
|
fromJSON(object: any): T;
|
|
295
295
|
toJSON(message: T): unknown;
|
|
296
296
|
create(base?: DeepPartial<T>): T;
|
|
297
297
|
fromPartial(object: DeepPartial<T>): T;
|
|
298
|
-
}
|
|
298
|
+
};
|
|
299
299
|
export {};
|
|
300
300
|
//# sourceMappingURL=query.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../src/generated/query.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,EACL,YAAY,EACZ,WAAW,EACX,cAAc,EACd,aAAa,EACb,qBAAqB,EACrB,gBAAgB,EACjB,MAAM,aAAa,CAAC;AAErB,eAAO,MAAM,eAAe,oCAAoC,CAAC;AAEjE,oEAAoE;AACpE,MAAM,
|
|
1
|
+
{"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../src/generated/query.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { type AxonServerConnectionConfig, type AxonServerConnection, type AxonServerConnectionOptions, type AxonServerConnectionHandle, type AxonServerStoreSource, type AxonServerBusSource, type AxonServerPlatformSource, connectToAxonServer, axonServerConnection, } from "./connection.js";
|
|
2
2
|
export { axonServerEventStore } from "./axon-server-event-store.js";
|
|
3
|
-
export {
|
|
3
|
+
export { axonServerSnapshottingEventStore } from "./axon-server-snapshotting-event-store.js";
|
|
4
4
|
export { axonServerCommandBus, axonServerQueryBus, type AxonServerCommandBusOptions, type AxonServerQueryBusOptions, type FlowControlConfig, type ProcessingInstructions, } from "./axon-server.js";
|
|
5
5
|
export { axonServerControlPlane, type AxonServerControlPlane, type ManagedEventProcessor, } from "./control-plane.js";
|
|
6
6
|
export { type MessageSizeConfig, MessageSizeExceededError, messageSizeValidator, } from "./message-size.js";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,0BAA0B,EAC/B,KAAK,oBAAoB,EACzB,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,wBAAwB,EAC7B,mBAAmB,EACnB,oBAAoB,GACrB,MAAM,iBAAiB,CAAA;AAExB,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AAEnE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,0BAA0B,EAC/B,KAAK,oBAAoB,EACzB,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,wBAAwB,EAC7B,mBAAmB,EACnB,oBAAoB,GACrB,MAAM,iBAAiB,CAAA;AAExB,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AAEnE,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAA;AAE5F,OAAO,EACL,oBAAoB,EACpB,kBAAkB,EAClB,KAAK,2BAA2B,EAChC,KAAK,yBAAyB,EAC9B,KAAK,iBAAiB,EACtB,KAAK,sBAAsB,GAC5B,MAAM,kBAAkB,CAAA;AAEzB,OAAO,EACL,sBAAsB,EACtB,KAAK,sBAAsB,EAC3B,KAAK,qBAAqB,GAC3B,MAAM,oBAAoB,CAAA;AAE3B,OAAO,EACL,KAAK,iBAAiB,EACtB,wBAAwB,EACxB,oBAAoB,GACrB,MAAM,mBAAmB,CAAA;AAE1B,OAAO,EACL,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,uBAAuB,EAC5B,oBAAoB,GACrB,MAAM,2BAA2B,CAAA;AAElC,OAAO,EACL,KAAK,kBAAkB,EACvB,KAAK,mBAAmB,EACxB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,kBAAkB,GACnB,MAAM,uBAAuB,CAAA;AAE9B,OAAO,EACL,KAAK,oBAAoB,EACzB,oBAAoB,GACrB,MAAM,6BAA6B,CAAA;AAEpC,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,cAAc,EACnB,uBAAuB,EACvB,aAAa,GACd,MAAM,qBAAqB,CAAA;AAE5B,OAAO,EACL,mBAAmB,EACnB,KAAK,wBAAwB,EAC7B,eAAe,EACf,wBAAwB,EACxB,sBAAsB,EACtB,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,EACpB,kBAAkB,EAClB,gBAAgB,EAChB,qBAAqB,EACrB,mBAAmB,EACnB,YAAY,EACZ,gBAAgB,GACjB,MAAM,aAAa,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { connectToAxonServer, axonServerConnection, } from "./connection.js";
|
|
2
2
|
export { axonServerEventStore } from "./axon-server-event-store.js";
|
|
3
|
-
export {
|
|
3
|
+
export { axonServerSnapshottingEventStore } from "./axon-server-snapshotting-event-store.js";
|
|
4
4
|
export { axonServerCommandBus, axonServerQueryBus, } from "./axon-server.js";
|
|
5
5
|
export { axonServerControlPlane, } from "./control-plane.js";
|
|
6
6
|
export { MessageSizeExceededError, messageSizeValidator, } from "./message-size.js";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,mBAAmB,EACnB,oBAAoB,GACrB,MAAM,iBAAiB,CAAA;AAExB,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AAEnE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,mBAAmB,EACnB,oBAAoB,GACrB,MAAM,iBAAiB,CAAA;AAExB,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAA;AAEnE,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAA;AAE5F,OAAO,EACL,oBAAoB,EACpB,kBAAkB,GAKnB,MAAM,kBAAkB,CAAA;AAEzB,OAAO,EACL,sBAAsB,GAGvB,MAAM,oBAAoB,CAAA;AAE3B,OAAO,EAEL,wBAAwB,EACxB,oBAAoB,GACrB,MAAM,mBAAmB,CAAA;AAE1B,OAAO,EAIL,oBAAoB,GACrB,MAAM,2BAA2B,CAAA;AAElC,OAAO,EAKL,kBAAkB,GACnB,MAAM,uBAAuB,CAAA;AAE9B,OAAO,EAEL,oBAAoB,GACrB,MAAM,6BAA6B,CAAA;AAEpC,OAAO,EAGL,uBAAuB,EACvB,aAAa,GACd,MAAM,qBAAqB,CAAA;AAE5B,OAAO,EACL,mBAAmB,EAEnB,eAAe,EACf,wBAAwB,EACxB,sBAAsB,EACtB,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,EACpB,kBAAkB,EAClB,gBAAgB,EAChB,qBAAqB,EACrB,mBAAmB,EACnB,YAAY,EACZ,gBAAgB,GACjB,MAAM,aAAa,CAAA"}
|
package/dist/message-size.d.ts
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
* This module pre-checks message sizes before sending and warns
|
|
6
6
|
* when approaching the limit.
|
|
7
7
|
*/
|
|
8
|
-
export
|
|
8
|
+
export type MessageSizeConfig = {
|
|
9
9
|
/** Maximum message size in bytes. Default: 4MB */
|
|
10
10
|
maxMessageSize?: number;
|
|
11
11
|
/** Warning threshold as a fraction (0-1). Default: 0.75 */
|
|
12
12
|
warningThreshold?: number;
|
|
13
|
-
}
|
|
13
|
+
};
|
|
14
14
|
export declare class MessageSizeExceededError extends Error {
|
|
15
15
|
readonly actualSize: number;
|
|
16
16
|
readonly maxSize: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-size.d.ts","sourceRoot":"","sources":["../src/message-size.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAQH,MAAM,
|
|
1
|
+
{"version":3,"file":"message-size.d.ts","sourceRoot":"","sources":["../src/message-size.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAQH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,kDAAkD;IAClD,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,2DAA2D;IAC3D,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAC1B,CAAA;AAED,qBAAa,wBAAyB,SAAQ,KAAK;IACjD,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;IAC3B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IAExB,YAAY,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAO9C;CACF;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,CAAC,EAAE,iBAAiB;IAM3D;;;OAGG;mBACY,UAAU,YAAY,MAAM,GAAG,IAAI;IAalD;;OAEG;0BACmB,OAAO,GAAG,MAAM;IAItC,4CAA4C;;EAG/C"}
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
* bidirectional gRPC stream. Buffers messages when the stream isn't
|
|
4
4
|
* consuming, and resolves promises when the stream is waiting.
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type OutboundStream<T> = {
|
|
7
7
|
/** Send a message into the stream. */
|
|
8
8
|
send(message: T): void;
|
|
9
9
|
/** The async iterable to pass to the gRPC client. */
|
|
10
10
|
readonly iterable: AsyncIterable<T>;
|
|
11
11
|
/** Close the stream. */
|
|
12
12
|
close(): void;
|
|
13
|
-
}
|
|
13
|
+
};
|
|
14
14
|
export declare function outboundStream<T>(): OutboundStream<T>;
|
|
15
15
|
//# sourceMappingURL=outbound-stream.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"outbound-stream.d.ts","sourceRoot":"","sources":["../src/outbound-stream.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,
|
|
1
|
+
{"version":3,"file":"outbound-stream.d.ts","sourceRoot":"","sources":["../src/outbound-stream.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,MAAM,cAAc,CAAC,CAAC,IAAI;IAC9B,sCAAsC;IACtC,IAAI,CAAC,OAAO,EAAE,CAAC,GAAG,IAAI,CAAA;IACtB,qDAAqD;IACrD,QAAQ,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAC,CAAC,CAAA;IACnC,wBAAwB;IACxB,KAAK,IAAI,IAAI,CAAA;CACd,CAAA;AAED,wBAAgB,cAAc,CAAC,CAAC,KAAK,cAAc,CAAC,CAAC,CAAC,CAqCrD"}
|
|
@@ -54,7 +54,7 @@ export type InstructionHandler = (instruction: PlatformInstruction) => void | Pr
|
|
|
54
54
|
* - Heartbeat protocol to detect dead connections
|
|
55
55
|
* - Receives server-initiated instructions (pause, resume, split, merge segments)
|
|
56
56
|
*/
|
|
57
|
-
export
|
|
57
|
+
export type PlatformConnection = {
|
|
58
58
|
/**
|
|
59
59
|
* DATA PATH. Open the platform stream, register this client, and arm the
|
|
60
60
|
* heartbeat that calls `connection.reconnect()` when the server stops
|
|
@@ -121,8 +121,8 @@ export interface PlatformConnection {
|
|
|
121
121
|
* two extensions structurally symmetric.
|
|
122
122
|
*/
|
|
123
123
|
subscriptionsAcked(): Promise<boolean>;
|
|
124
|
-
}
|
|
125
|
-
export
|
|
124
|
+
};
|
|
125
|
+
export type PlatformServiceOptions = {
|
|
126
126
|
/** Heartbeat interval in ms. Default: 10000 */
|
|
127
127
|
heartbeatIntervalMs?: number;
|
|
128
128
|
/** Heartbeat timeout in ms. If no response within this window, reconnect. Default: 7500 */
|
|
@@ -137,7 +137,7 @@ export interface PlatformServiceOptions {
|
|
|
137
137
|
* Aligned with Java's `processorsNotificationInitialDelay`. Default: 5000.
|
|
138
138
|
*/
|
|
139
139
|
processorsNotificationInitialDelayMs?: number;
|
|
140
|
-
}
|
|
140
|
+
};
|
|
141
141
|
/**
|
|
142
142
|
* Creates a PlatformService connection to Axon Server.
|
|
143
143
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform-service.d.ts","sourceRoot":"","sources":["../src/platform-service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAA;AAI3D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AAGxE;;;GAGG;AACH,MAAM,MAAM,mBAAmB,GAC3B;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAE,GAClD;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAE,GAClD;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GACrE;IAAE,IAAI,EAAE,eAAe,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GACnE;IAAE,IAAI,EAAE,eAAe,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GACnE;IAAE,IAAI,EAAE,uBAAuB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAE,GAC7E;IAAE,IAAI,EAAE,yBAAyB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAE,GAC/E;IAAE,IAAI,EAAE,qBAAqB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GACzE;IAAE,IAAI,EAAE,uBAAuB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GAC3E;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,CAAA;AAEjC;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,WAAW,EAAE,mBAAmB,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;AAE3F;;;;;;;;GAQG;AACH,MAAM,
|
|
1
|
+
{"version":3,"file":"platform-service.d.ts","sourceRoot":"","sources":["../src/platform-service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAA;AAI3D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AAGxE;;;GAGG;AACH,MAAM,MAAM,mBAAmB,GAC3B;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAE,GAClD;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAE,GAClD;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GACrE;IAAE,IAAI,EAAE,eAAe,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GACnE;IAAE,IAAI,EAAE,eAAe,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GACnE;IAAE,IAAI,EAAE,uBAAuB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAE,GAC7E;IAAE,IAAI,EAAE,yBAAyB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAE,GAC/E;IAAE,IAAI,EAAE,qBAAqB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GACzE;IAAE,IAAI,EAAE,uBAAuB,CAAC;IAAC,aAAa,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,GAC3E;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,CAAA;AAEjC;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,WAAW,EAAE,mBAAmB,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;AAE3F;;;;;;;;GAQG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;;;;;;;;;;;;;;OAeG;IACH,uBAAuB,IAAI,OAAO,CAAC,IAAI,CAAC,CAAA;IACxC;;;;;;OAMG;IACH,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAAA;IACtB;;;;;;;;OAQG;IACH,IAAI,IAAI,IAAI,CAAA;IACZ,4DAA4D;IAC5D,aAAa,CAAC,OAAO,EAAE,kBAAkB,GAAG,IAAI,CAAA;IAChD;;;OAGG;IACH,+BAA+B,CAAC,QAAQ,EAAE,uBAAuB,GAAG,IAAI,CAAA;IACxE,6CAA6C;IAC7C,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAA;IAC3B;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,kBAAkB,IAAI,OAAO,CAAC,OAAO,CAAC,CAAA;CACvC,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,+CAA+C;IAC/C,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,2FAA2F;IAC3F,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B;;;OAGG;IACH,4BAA4B,CAAC,EAAE,MAAM,CAAA;IACrC;;;OAGG;IACH,oCAAoC,CAAC,EAAE,MAAM,CAAA;CAC9C,CAAA;AAED;;;;;;;GAOG;AACH,wBAAgB,kBAAkB,CAChC,UAAU,EAAE,oBAAoB,EAChC,OAAO,CAAC,EAAE,sBAAsB,GAC/B,kBAAkB,CA0UpB"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Connection resilience — PACKAGE-PRIVATE.
|
|
3
|
+
*
|
|
4
|
+
* Exponential backoff with full jitter, per-event attempt caps, terminal-error
|
|
5
|
+
* short-circuit, and a warn-then-continue health probe. Nothing here is
|
|
6
|
+
* exported from this package's barrel.
|
|
7
|
+
*
|
|
8
|
+
* It used to live in `@kronos-ts/core`, and it does not belong there. Core is
|
|
9
|
+
* only what cannot be a helper, and this is a helper by every test: it touches
|
|
10
|
+
* no core shape, no message, no unit of work — it is `setTimeout` and a loop
|
|
11
|
+
* over a function anybody could have written. Its only consumers were the
|
|
12
|
+
* transports and the pool, core's own `src/` never called it, and a helper
|
|
13
|
+
* lives with its users. Same reasoning that moved each persistence package's
|
|
14
|
+
* transaction glue out of core, applied one folder up.
|
|
15
|
+
*
|
|
16
|
+
* Each consuming package keeps its own copy, carrying only what it uses, so
|
|
17
|
+
* each can also state its own retry policy without negotiating with the others.
|
|
18
|
+
*/
|
|
19
|
+
/** Classified retry sites used by transport extensions (D-97). */
|
|
20
|
+
export type RetryEvent = "initial-connect" | "reconnect" | "per-operation" | "health-check";
|
|
21
|
+
export type ResilienceConfig = {
|
|
22
|
+
/** Initial backoff delay (ms). Default: 100. */
|
|
23
|
+
initialDelayMs: number;
|
|
24
|
+
/** Cap for backoff (ms). Default: 30_000. */
|
|
25
|
+
maxDelayMs: number;
|
|
26
|
+
/** Max retry attempts before giving up. Per-event defaults applied if not provided. */
|
|
27
|
+
maxAttempts: number;
|
|
28
|
+
/** Base for exponential growth. Default: 2. */
|
|
29
|
+
multiplier: number;
|
|
30
|
+
/** Health-check threshold (ms) before warn-then-continue. Default: 5000. */
|
|
31
|
+
healthCheckThresholdMs: number;
|
|
32
|
+
/** Optional logger. Defaults to console.warn. */
|
|
33
|
+
log?: (msg: string) => void;
|
|
34
|
+
/** Per-attempt classification: returns false to short-circuit (terminal error). */
|
|
35
|
+
isRetryable?: (err: unknown) => boolean;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Run `fn` with exponential-backoff full-jitter retries.
|
|
39
|
+
*
|
|
40
|
+
* Resolves with the first successful result, or rejects with the last error
|
|
41
|
+
* after `maxAttempts` exhausted. If `isRetryable(err)` returns false on any
|
|
42
|
+
* attempt, the error is rethrown immediately (terminal error short-circuit).
|
|
43
|
+
*
|
|
44
|
+
* D-101: opts may carry caller-supplied resilience overrides — this is the
|
|
45
|
+
* per-extension knob path (`kronosDbConnection({ resilience: { ... } })`).
|
|
46
|
+
*/
|
|
47
|
+
export declare function withRetry<T>(fn: () => Promise<T>, opts: {
|
|
48
|
+
event: RetryEvent;
|
|
49
|
+
} & Partial<ResilienceConfig>): Promise<T>;
|
|
50
|
+
/**
|
|
51
|
+
* Run a health-check probe with warn-then-continue semantics (D-100).
|
|
52
|
+
*
|
|
53
|
+
* Resolves WITHOUT throwing on success OR after `thresholdMs` elapses with
|
|
54
|
+
* the probe still pending — production loops should NEVER stall on a flaky
|
|
55
|
+
* health probe. Failures (rejection or threshold breach) emit a single warn
|
|
56
|
+
* via `log` and otherwise resolve normally.
|
|
57
|
+
*/
|
|
58
|
+
export declare function healthCheck(fn: () => Promise<void>, opts?: {
|
|
59
|
+
thresholdMs?: number;
|
|
60
|
+
log?: (msg: string) => void;
|
|
61
|
+
}): Promise<void>;
|
|
62
|
+
//# sourceMappingURL=resilience.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resilience.d.ts","sourceRoot":"","sources":["../src/resilience.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,kEAAkE;AAClE,MAAM,MAAM,UAAU,GAClB,iBAAiB,GACjB,WAAW,GACX,eAAe,GACf,cAAc,CAAA;AAElB,MAAM,MAAM,gBAAgB,GAAG;IAC7B,gDAAgD;IAChD,cAAc,EAAE,MAAM,CAAA;IACtB,6CAA6C;IAC7C,UAAU,EAAE,MAAM,CAAA;IAClB,uFAAuF;IACvF,WAAW,EAAE,MAAM,CAAA;IACnB,+CAA+C;IAC/C,UAAU,EAAE,MAAM,CAAA;IAClB,4EAA4E;IAC5E,sBAAsB,EAAE,MAAM,CAAA;IAC9B,iDAAiD;IACjD,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAA;IAC3B,mFAAmF;IACnF,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,OAAO,CAAA;CACxC,CAAA;AAoCD;;;;;;;;;GASG;AACH,wBAAsB,SAAS,CAAC,CAAC,EAC/B,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,EACpB,IAAI,EAAE;IAAE,KAAK,EAAE,UAAU,CAAA;CAAE,GAAG,OAAO,CAAC,gBAAgB,CAAC,GACtD,OAAO,CAAC,CAAC,CAAC,CAqBZ;AAED;;;;;;;GAOG;AACH,wBAAsB,WAAW,CAC/B,EAAE,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,EACvB,IAAI,GAAE;IAAE,WAAW,CAAC,EAAE,MAAM,CAAC;IAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAA;CAAO,GAC/D,OAAO,CAAC,IAAI,CAAC,CAwBf"}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Connection resilience — PACKAGE-PRIVATE.
|
|
3
|
+
*
|
|
4
|
+
* Exponential backoff with full jitter, per-event attempt caps, terminal-error
|
|
5
|
+
* short-circuit, and a warn-then-continue health probe. Nothing here is
|
|
6
|
+
* exported from this package's barrel.
|
|
7
|
+
*
|
|
8
|
+
* It used to live in `@kronos-ts/core`, and it does not belong there. Core is
|
|
9
|
+
* only what cannot be a helper, and this is a helper by every test: it touches
|
|
10
|
+
* no core shape, no message, no unit of work — it is `setTimeout` and a loop
|
|
11
|
+
* over a function anybody could have written. Its only consumers were the
|
|
12
|
+
* transports and the pool, core's own `src/` never called it, and a helper
|
|
13
|
+
* lives with its users. Same reasoning that moved each persistence package's
|
|
14
|
+
* transaction glue out of core, applied one folder up.
|
|
15
|
+
*
|
|
16
|
+
* Each consuming package keeps its own copy, carrying only what it uses, so
|
|
17
|
+
* each can also state its own retry policy without negotiating with the others.
|
|
18
|
+
*/
|
|
19
|
+
const DEFAULTS = {
|
|
20
|
+
initialDelayMs: 100,
|
|
21
|
+
maxDelayMs: 30_000,
|
|
22
|
+
maxAttempts: 10,
|
|
23
|
+
multiplier: 2,
|
|
24
|
+
healthCheckThresholdMs: 5_000,
|
|
25
|
+
};
|
|
26
|
+
const ATTEMPTS_BY_EVENT = {
|
|
27
|
+
"initial-connect": 10,
|
|
28
|
+
"reconnect": 30,
|
|
29
|
+
"per-operation": 5,
|
|
30
|
+
"health-check": 3,
|
|
31
|
+
};
|
|
32
|
+
function resolveConfig(event, partial) {
|
|
33
|
+
return {
|
|
34
|
+
...DEFAULTS,
|
|
35
|
+
maxAttempts: ATTEMPTS_BY_EVENT[event],
|
|
36
|
+
...partial,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function fullJitterDelay(attempt, cfg) {
|
|
40
|
+
const exponential = Math.min(cfg.initialDelayMs * Math.pow(cfg.multiplier, attempt), cfg.maxDelayMs);
|
|
41
|
+
return Math.random() * exponential;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Run `fn` with exponential-backoff full-jitter retries.
|
|
45
|
+
*
|
|
46
|
+
* Resolves with the first successful result, or rejects with the last error
|
|
47
|
+
* after `maxAttempts` exhausted. If `isRetryable(err)` returns false on any
|
|
48
|
+
* attempt, the error is rethrown immediately (terminal error short-circuit).
|
|
49
|
+
*
|
|
50
|
+
* D-101: opts may carry caller-supplied resilience overrides — this is the
|
|
51
|
+
* per-extension knob path (`kronosDbConnection({ resilience: { ... } })`).
|
|
52
|
+
*/
|
|
53
|
+
export async function withRetry(fn, opts) {
|
|
54
|
+
const cfg = resolveConfig(opts.event, opts);
|
|
55
|
+
let lastErr;
|
|
56
|
+
for (let attempt = 0; attempt < cfg.maxAttempts; attempt++) {
|
|
57
|
+
try {
|
|
58
|
+
return await fn();
|
|
59
|
+
}
|
|
60
|
+
catch (err) {
|
|
61
|
+
lastErr = err;
|
|
62
|
+
if (cfg.isRetryable && !cfg.isRetryable(err))
|
|
63
|
+
throw err;
|
|
64
|
+
if (attempt === cfg.maxAttempts - 1)
|
|
65
|
+
break;
|
|
66
|
+
const delay = fullJitterDelay(attempt, cfg);
|
|
67
|
+
cfg.log?.(`[kronos:resilience] ${opts.event} attempt ${attempt + 1}/${cfg.maxAttempts} ` +
|
|
68
|
+
`failed; retrying in ${Math.round(delay)}ms — ${err?.message ?? String(err)}`);
|
|
69
|
+
await new Promise((r) => setTimeout(r, delay));
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
throw lastErr;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Run a health-check probe with warn-then-continue semantics (D-100).
|
|
76
|
+
*
|
|
77
|
+
* Resolves WITHOUT throwing on success OR after `thresholdMs` elapses with
|
|
78
|
+
* the probe still pending — production loops should NEVER stall on a flaky
|
|
79
|
+
* health probe. Failures (rejection or threshold breach) emit a single warn
|
|
80
|
+
* via `log` and otherwise resolve normally.
|
|
81
|
+
*/
|
|
82
|
+
export async function healthCheck(fn, opts = {}) {
|
|
83
|
+
const threshold = opts.thresholdMs ?? DEFAULTS.healthCheckThresholdMs;
|
|
84
|
+
const log = opts.log ?? ((m) => console.warn(m));
|
|
85
|
+
let timer;
|
|
86
|
+
try {
|
|
87
|
+
await Promise.race([
|
|
88
|
+
fn(),
|
|
89
|
+
new Promise((_, reject) => {
|
|
90
|
+
timer = setTimeout(() => reject(new Error("health-check threshold exceeded")), threshold);
|
|
91
|
+
}),
|
|
92
|
+
]);
|
|
93
|
+
}
|
|
94
|
+
catch (err) {
|
|
95
|
+
log(`[kronos:resilience] health-check soft-failed (${err?.message ?? String(err)}); continuing`);
|
|
96
|
+
// warn-then-continue: do NOT rethrow.
|
|
97
|
+
}
|
|
98
|
+
finally {
|
|
99
|
+
if (timer)
|
|
100
|
+
clearTimeout(timer);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
//# sourceMappingURL=resilience.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resilience.js","sourceRoot":"","sources":["../src/resilience.ts"],"names":[],"mappings":"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"}
|
package/dist/shutdown-latch.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*
|
|
11
11
|
* This is the TypeScript equivalent of AF5's ShutdownLatch pattern.
|
|
12
12
|
*/
|
|
13
|
-
export
|
|
13
|
+
export type ShutdownLatch = {
|
|
14
14
|
/**
|
|
15
15
|
* Register an in-flight activity. Throws if shutdown is in progress.
|
|
16
16
|
* Call `end()` on the returned handle when the activity completes.
|
|
@@ -26,11 +26,11 @@ export interface ShutdownLatch {
|
|
|
26
26
|
readonly shuttingDown: boolean;
|
|
27
27
|
/** Number of currently in-flight activities. */
|
|
28
28
|
readonly activeCount: number;
|
|
29
|
-
}
|
|
30
|
-
export
|
|
29
|
+
};
|
|
30
|
+
export type ActivityHandle = {
|
|
31
31
|
/** Mark this activity as complete. */
|
|
32
32
|
end(): void;
|
|
33
|
-
}
|
|
33
|
+
};
|
|
34
34
|
export declare class ShutdownInProgressError extends Error {
|
|
35
35
|
constructor(message?: string);
|
|
36
36
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shutdown-latch.d.ts","sourceRoot":"","sources":["../src/shutdown-latch.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,MAAM,
|
|
1
|
+
{"version":3,"file":"shutdown-latch.d.ts","sourceRoot":"","sources":["../src/shutdown-latch.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B;;;OAGG;IACH,gBAAgB,IAAI,cAAc,CAAA;IAElC;;;;OAIG;IACH,gBAAgB,IAAI,OAAO,CAAC,IAAI,CAAC,CAAA;IAEjC,2CAA2C;IAC3C,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAA;IAE9B,gDAAgD;IAChD,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;CAC7B,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC3B,sCAAsC;IACtC,GAAG,IAAI,IAAI,CAAA;CACZ,CAAA;AAED,qBAAa,uBAAwB,SAAQ,KAAK;IAChD,YAAY,OAAO,GAAE,MAA+B,EAGnD;CACF;AAED,wBAAgB,aAAa,IAAI,aAAa,CAmD7C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kronos-ts/axon-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Axon Server extension for Kronos — event store and command bus over Axon Server.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"!src/**/*.bench.ts"
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
|
-
"generate-proto": "grpc_tools_node_protoc --ts_proto_out=./src/generated --ts_proto_opt=outputServices=nice-grpc,outputServices=generic-definitions,useExactTypes=false,esModuleInterop=true --proto_path=./proto ./proto/*.proto",
|
|
36
|
+
"generate-proto": "grpc_tools_node_protoc --ts_proto_out=./src/generated --ts_proto_opt=outputServices=nice-grpc,outputServices=generic-definitions,useExactTypes=false,esModuleInterop=true --proto_path=./proto ./proto/*.proto && bun ../../scripts/interface-to-type/convert.ts ./src/generated",
|
|
37
37
|
"build": "tsc -p tsconfig.json",
|
|
38
38
|
"clean": "rm -rf dist *.tsbuildinfo"
|
|
39
39
|
},
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@kronos-ts/core": "0.
|
|
52
|
+
"@kronos-ts/core": "0.3.0",
|
|
53
53
|
"@bufbuild/protobuf": "^2.3",
|
|
54
54
|
"@grpc/grpc-js": "^1.12",
|
|
55
55
|
"nice-grpc": "^2.1",
|