@jackchuka/gql-ingest 1.2.0 → 1.3.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/src/cli.ts CHANGED
@@ -2,7 +2,7 @@ import { Command } from "commander";
2
2
  import { GraphQLClientWrapper } from "./graphql-client";
3
3
  import { DataMapper } from "./mapper";
4
4
  import { MetricsCollector } from "./metrics";
5
- import { loadConfig, getEntityConfig } from "./config";
5
+ import { loadConfig, getEntityConfig, getRetryConfig } from "./config";
6
6
  import { DependencyResolver } from "./dependency-resolver";
7
7
  import { basename } from "path";
8
8
 
@@ -114,7 +114,8 @@ async function processEntitiesSequentially(
114
114
  try {
115
115
  const entityName = basename(configPath, ".json");
116
116
  const entityConfig = getEntityConfig(entityName, config);
117
- await mapper.processEntity(configPath, entityConfig);
117
+ const retryConfig = getRetryConfig(entityName, config);
118
+ await mapper.processEntity(configPath, entityConfig, retryConfig);
118
119
  } catch (error) {
119
120
  console.warn(`Warning: Could not process ${configPath}:`, error);
120
121
  }
@@ -142,14 +143,15 @@ async function processEntitiesInWaves(
142
143
  // Process entities in controlled batches based on entityConcurrency
143
144
  const entityConcurrency = config.parallelProcessing.entityConcurrency;
144
145
  const chunks = chunkArray(wave.entities, entityConcurrency);
145
-
146
+
146
147
  for (const chunk of chunks) {
147
148
  const entityPromises = chunk.map(async (entityName) => {
148
149
  const configPath = pathMap.get(entityName);
149
150
  if (configPath) {
150
151
  try {
151
152
  const entityConfig = getEntityConfig(entityName, config);
152
- await mapper.processEntity(configPath, entityConfig);
153
+ const retryConfig = getRetryConfig(entityName, config);
154
+ await mapper.processEntity(configPath, entityConfig, retryConfig);
153
155
  } catch (error) {
154
156
  console.warn(`Warning: Could not process ${configPath}:`, error);
155
157
  }
@@ -1,6 +1,6 @@
1
1
  import fs from "fs";
2
2
  import path from "path";
3
- import { loadConfig, getEntityConfig, DEFAULT_CONFIG } from "./config";
3
+ import { loadConfig, getEntityConfig, getRetryConfig, DEFAULT_CONFIG } from "./config";
4
4
 
5
5
  jest.mock("fs");
6
6
  const mockFs = fs as jest.Mocked<typeof fs>;
@@ -112,6 +112,13 @@ entityConfig:
112
112
 
113
113
  describe("getEntityConfig", () => {
114
114
  const globalConfig = {
115
+ retry: {
116
+ maxAttempts: 3,
117
+ baseDelay: 1000,
118
+ maxDelay: 30000,
119
+ exponentialBackoff: true,
120
+ retryableStatusCodes: [408, 429, 500, 502, 503, 504],
121
+ },
115
122
  parallelProcessing: {
116
123
  concurrency: 10,
117
124
  entityConcurrency: 3,
@@ -201,4 +208,65 @@ entityConfig:
201
208
  consoleSpy.mockRestore();
202
209
  });
203
210
  });
211
+
212
+ describe("getRetryConfig", () => {
213
+ const globalConfig = {
214
+ retry: {
215
+ maxAttempts: 3,
216
+ baseDelay: 1000,
217
+ maxDelay: 30000,
218
+ exponentialBackoff: true,
219
+ retryableStatusCodes: [408, 429, 500, 502, 503, 504],
220
+ },
221
+ parallelProcessing: {
222
+ concurrency: 10,
223
+ entityConcurrency: 3,
224
+ preserveRowOrder: false,
225
+ },
226
+ entityConfig: {
227
+ important: {
228
+ retry: {
229
+ maxAttempts: 5,
230
+ baseDelay: 500,
231
+ },
232
+ },
233
+ fast: {
234
+ retry: {
235
+ maxAttempts: 1,
236
+ },
237
+ },
238
+ },
239
+ entityDependencies: {},
240
+ };
241
+
242
+ it("should return global retry config for entity without overrides", () => {
243
+ const retryConfig = getRetryConfig("regular", globalConfig);
244
+
245
+ expect(retryConfig).toEqual(globalConfig.retry);
246
+ });
247
+
248
+ it("should merge entity retry overrides with global config", () => {
249
+ const retryConfig = getRetryConfig("important", globalConfig);
250
+
251
+ expect(retryConfig.maxAttempts).toBe(5); // overridden
252
+ expect(retryConfig.baseDelay).toBe(500); // overridden
253
+ expect(retryConfig.maxDelay).toBe(30000); // from global
254
+ expect(retryConfig.exponentialBackoff).toBe(true); // from global
255
+ expect(retryConfig.retryableStatusCodes).toEqual([408, 429, 500, 502, 503, 504]); // from global
256
+ });
257
+
258
+ it("should handle partial retry overrides", () => {
259
+ const retryConfig = getRetryConfig("fast", globalConfig);
260
+
261
+ expect(retryConfig.maxAttempts).toBe(1); // overridden
262
+ expect(retryConfig.baseDelay).toBe(1000); // from global
263
+ expect(retryConfig.maxDelay).toBe(30000); // from global
264
+ });
265
+
266
+ it("should handle entity with no retry config", () => {
267
+ const retryConfig = getRetryConfig("undefined-entity", globalConfig);
268
+
269
+ expect(retryConfig).toEqual(globalConfig.retry);
270
+ });
271
+ });
204
272
  });
package/src/config.ts CHANGED
@@ -8,12 +8,22 @@ export interface ParallelProcessingConfig {
8
8
  preserveRowOrder: boolean;
9
9
  }
10
10
 
11
+ export interface RetryConfig {
12
+ maxAttempts: number;
13
+ baseDelay: number;
14
+ maxDelay: number;
15
+ exponentialBackoff: boolean;
16
+ retryableStatusCodes: number[];
17
+ }
18
+
11
19
  export interface EntityConfig {
12
20
  concurrency?: number;
13
21
  preserveRowOrder?: boolean;
22
+ retry?: Partial<RetryConfig>;
14
23
  }
15
24
 
16
25
  export interface ProcessingConfig {
26
+ retry: RetryConfig;
17
27
  parallelProcessing: ParallelProcessingConfig;
18
28
  entityConfig: Record<string, EntityConfig>;
19
29
  entityDependencies: Record<string, string[]>;
@@ -23,6 +33,14 @@ export interface FullConfig extends ProcessingConfig {
23
33
  // Future: additional config sections can be added here
24
34
  }
25
35
 
36
+ export const DEFAULT_RETRY_CONFIG: RetryConfig = {
37
+ maxAttempts: 3,
38
+ baseDelay: 1000,
39
+ maxDelay: 30000,
40
+ exponentialBackoff: true,
41
+ retryableStatusCodes: [408, 429, 500, 502, 503, 504],
42
+ };
43
+
26
44
  export const DEFAULT_PARALLEL_CONFIG: ParallelProcessingConfig = {
27
45
  concurrency: 1,
28
46
  entityConcurrency: 1,
@@ -30,6 +48,7 @@ export const DEFAULT_PARALLEL_CONFIG: ParallelProcessingConfig = {
30
48
  };
31
49
 
32
50
  export const DEFAULT_CONFIG: ProcessingConfig = {
51
+ retry: DEFAULT_RETRY_CONFIG,
33
52
  parallelProcessing: DEFAULT_PARALLEL_CONFIG,
34
53
  entityConfig: {},
35
54
  entityDependencies: {},
@@ -58,6 +77,10 @@ export function loadConfig(configDir: string): ProcessingConfig {
58
77
 
59
78
  function mergeWithDefaults(yamlConfig: Partial<FullConfig>): ProcessingConfig {
60
79
  return {
80
+ retry: {
81
+ ...DEFAULT_RETRY_CONFIG,
82
+ ...(yamlConfig.retry || {}),
83
+ },
61
84
  parallelProcessing: {
62
85
  ...DEFAULT_PARALLEL_CONFIG,
63
86
  ...(yamlConfig.parallelProcessing || {}),
@@ -88,3 +111,15 @@ export function getEntityConfig(
88
111
 
89
112
  return finalConfig;
90
113
  }
114
+
115
+ export function getRetryConfig(
116
+ entityName: string,
117
+ globalConfig: ProcessingConfig
118
+ ): RetryConfig {
119
+ const entityOverrides = globalConfig.entityConfig[entityName]?.retry || {};
120
+
121
+ return {
122
+ ...globalConfig.retry,
123
+ ...entityOverrides,
124
+ };
125
+ }
@@ -63,7 +63,7 @@ describe("GraphQLClientWrapper", () => {
63
63
  clientWrapper.executeMutation(mutation, variables)
64
64
  ).rejects.toThrow("GraphQL error");
65
65
 
66
- expect(consoleSpy).toHaveBeenCalledWith("GraphQL mutation failed:", error);
66
+ expect(consoleSpy).toHaveBeenCalledWith("GraphQL mutation failed after 3 attempts:", error);
67
67
 
68
68
  consoleSpy.mockRestore();
69
69
  });
@@ -75,4 +75,130 @@ describe("GraphQLClientWrapper", () => {
75
75
 
76
76
  expect(mockSetHeaders).toHaveBeenCalledWith(newHeaders);
77
77
  });
78
+
79
+ describe("retry functionality", () => {
80
+ it("should retry on retryable status codes", async () => {
81
+ const mutation = "mutation { createUser(name: $name) { id } }";
82
+ const variables = { name: "John" };
83
+ const retryConfig = {
84
+ maxAttempts: 3,
85
+ baseDelay: 100,
86
+ maxDelay: 1000,
87
+ exponentialBackoff: false,
88
+ retryableStatusCodes: [500],
89
+ };
90
+
91
+ const serverError = new Error("Server Error");
92
+ (serverError as any).response = { status: 500 };
93
+
94
+ mockRequest
95
+ .mockRejectedValueOnce(serverError)
96
+ .mockRejectedValueOnce(serverError)
97
+ .mockResolvedValueOnce({ data: { result: "success" } });
98
+
99
+ const result = await clientWrapper.executeMutation(mutation, variables, retryConfig);
100
+
101
+ expect(mockRequest).toHaveBeenCalledTimes(3);
102
+ expect(result).toEqual({ data: { result: "success" } });
103
+ });
104
+
105
+ it("should not retry on non-retryable status codes", async () => {
106
+ const mutation = "mutation { createUser(name: $name) { id } }";
107
+ const variables = { name: "John" };
108
+ const retryConfig = {
109
+ maxAttempts: 3,
110
+ baseDelay: 100,
111
+ maxDelay: 1000,
112
+ exponentialBackoff: false,
113
+ retryableStatusCodes: [500],
114
+ };
115
+
116
+ const clientError = new Error("Bad Request");
117
+ (clientError as any).response = { status: 400 };
118
+
119
+ mockRequest.mockRejectedValueOnce(clientError);
120
+
121
+ await expect(
122
+ clientWrapper.executeMutation(mutation, variables, retryConfig)
123
+ ).rejects.toThrow("Bad Request");
124
+
125
+ expect(mockRequest).toHaveBeenCalledTimes(1);
126
+ });
127
+
128
+ it("should retry on network errors (no response)", async () => {
129
+ const mutation = "mutation { createUser(name: $name) { id } }";
130
+ const variables = { name: "John" };
131
+ const retryConfig = {
132
+ maxAttempts: 2,
133
+ baseDelay: 100,
134
+ maxDelay: 1000,
135
+ exponentialBackoff: false,
136
+ retryableStatusCodes: [500],
137
+ };
138
+
139
+ const networkError = new Error("Network Error");
140
+ // No response property = network error
141
+
142
+ mockRequest
143
+ .mockRejectedValueOnce(networkError)
144
+ .mockResolvedValueOnce({ data: { result: "success" } });
145
+
146
+ const result = await clientWrapper.executeMutation(mutation, variables, retryConfig);
147
+
148
+ expect(mockRequest).toHaveBeenCalledTimes(2);
149
+ expect(result).toEqual({ data: { result: "success" } });
150
+ });
151
+
152
+ it("should fail after max attempts are exhausted", async () => {
153
+ const mutation = "mutation { createUser(name: $name) { id } }";
154
+ const variables = { name: "John" };
155
+ const retryConfig = {
156
+ maxAttempts: 2,
157
+ baseDelay: 100,
158
+ maxDelay: 1000,
159
+ exponentialBackoff: false,
160
+ retryableStatusCodes: [500],
161
+ };
162
+
163
+ const serverError = new Error("Server Error");
164
+ (serverError as any).response = { status: 500 };
165
+
166
+ mockRequest.mockRejectedValue(serverError);
167
+
168
+ await expect(
169
+ clientWrapper.executeMutation(mutation, variables, retryConfig)
170
+ ).rejects.toThrow("Server Error");
171
+
172
+ expect(mockRequest).toHaveBeenCalledTimes(2);
173
+ });
174
+
175
+ it("should use exponential backoff when configured", async () => {
176
+ const mutation = "mutation { createUser(name: $name) { id } }";
177
+ const variables = { name: "John" };
178
+ const retryConfig = {
179
+ maxAttempts: 3,
180
+ baseDelay: 100,
181
+ maxDelay: 1000,
182
+ exponentialBackoff: true,
183
+ retryableStatusCodes: [500],
184
+ };
185
+
186
+ const serverError = new Error("Server Error");
187
+ (serverError as any).response = { status: 500 };
188
+
189
+ mockRequest
190
+ .mockRejectedValueOnce(serverError)
191
+ .mockRejectedValueOnce(serverError)
192
+ .mockResolvedValueOnce({ data: { result: "success" } });
193
+
194
+ const startTime = Date.now();
195
+ const result = await clientWrapper.executeMutation(mutation, variables, retryConfig);
196
+ const totalTime = Date.now() - startTime;
197
+
198
+ expect(mockRequest).toHaveBeenCalledTimes(3);
199
+ expect(result).toEqual({ data: { result: "success" } });
200
+ // Should have some delay for retries (base + exponential)
201
+ expect(totalTime).toBeGreaterThan(200); // At least 100ms base + 200ms exponential
202
+ });
203
+ });
78
204
  });
@@ -1,51 +1,151 @@
1
- import { GraphQLClient } from 'graphql-request';
2
- import { MetricsCollector } from './metrics';
1
+ import { GraphQLClient } from "graphql-request";
2
+ import { MetricsCollector } from "./metrics";
3
+ import { DEFAULT_RETRY_CONFIG, RetryConfig } from "./config";
3
4
 
4
5
  export class GraphQLClientWrapper {
5
6
  private client: GraphQLClient;
6
7
  private metrics?: MetricsCollector;
7
8
  private verbose: boolean;
8
9
 
9
- constructor(endpoint: string, headers?: Record<string, string>, metrics?: MetricsCollector, verbose: boolean = false) {
10
+ constructor(
11
+ endpoint: string,
12
+ headers?: Record<string, string>,
13
+ metrics?: MetricsCollector,
14
+ verbose: boolean = false
15
+ ) {
10
16
  this.client = new GraphQLClient(endpoint, {
11
- headers: headers || {}
17
+ headers: headers || {},
12
18
  });
13
19
  this.metrics = metrics;
14
20
  this.verbose = verbose;
15
21
  }
16
22
 
17
- async executeMutation(mutation: string, variables: Record<string, any>): Promise<any> {
18
- const startTime = Date.now();
19
-
20
- try {
21
- const result = await this.client.request(mutation, variables);
22
-
23
- if (this.metrics) {
24
- const duration = Date.now() - startTime;
25
- this.metrics.recordRequestDuration(duration);
26
- }
27
-
28
- if (this.verbose) {
29
- console.log(`āœ“ GraphQL request completed in ${Date.now() - startTime}ms:`, result);
30
- }
31
-
32
- return result;
33
- } catch (error) {
34
- if (this.metrics) {
35
- const duration = Date.now() - startTime;
36
- this.metrics.recordRequestDuration(duration);
37
- }
38
-
39
- if (this.verbose) {
40
- console.error(`āœ— GraphQL request failed in ${Date.now() - startTime}ms:`, error);
41
- } else {
42
- console.error('GraphQL mutation failed:', error);
23
+ async executeMutation(
24
+ mutation: string,
25
+ variables: Record<string, any>,
26
+ retryConfig?: RetryConfig
27
+ ): Promise<any> {
28
+ const config = retryConfig || DEFAULT_RETRY_CONFIG;
29
+
30
+ let lastError: any;
31
+ const totalStartTime = Date.now();
32
+
33
+ for (let attempt = 0; attempt < config.maxAttempts; attempt++) {
34
+ const attemptStartTime = Date.now();
35
+
36
+ try {
37
+ const result = await this.client.request(mutation, variables);
38
+
39
+ if (this.metrics) {
40
+ const duration = Date.now() - attemptStartTime;
41
+ this.metrics.recordRequestDuration(duration);
42
+ if (attempt > 0) {
43
+ this.metrics.recordRetrySuccess(attempt);
44
+ }
45
+ }
46
+
47
+ if (this.verbose) {
48
+ const totalDuration = Date.now() - totalStartTime;
49
+ const retryInfo =
50
+ attempt > 0 ? ` (succeeded on attempt ${attempt + 1})` : "";
51
+ console.log(
52
+ `āœ“ GraphQL request completed in ${totalDuration}ms${retryInfo}:`,
53
+ result
54
+ );
55
+ }
56
+
57
+ return result;
58
+ } catch (error: any) {
59
+ lastError = error;
60
+ const duration = Date.now() - attemptStartTime;
61
+
62
+ if (this.metrics) {
63
+ this.metrics.recordRequestDuration(duration);
64
+ }
65
+
66
+ // Check if this is the last attempt
67
+ if (attempt === config.maxAttempts - 1) {
68
+ if (this.metrics && attempt > 0) {
69
+ this.metrics.recordRetryFailure(attempt);
70
+ }
71
+ break;
72
+ }
73
+
74
+ // Check if error is retryable
75
+ if (!this.isRetryableError(error, config)) {
76
+ if (this.verbose) {
77
+ console.error(
78
+ `āœ— GraphQL request failed with non-retryable error in ${duration}ms:`,
79
+ error
80
+ );
81
+ } else {
82
+ console.error("GraphQL mutation failed (non-retryable):", error);
83
+ }
84
+ throw error;
85
+ }
86
+
87
+ // Calculate delay
88
+ const delay = this.calculateDelay(attempt, config);
89
+
90
+ if (this.verbose) {
91
+ console.log(
92
+ `ā³ GraphQL request failed (attempt ${attempt + 1}/${
93
+ config.maxAttempts
94
+ }), retrying in ${delay}ms...`
95
+ );
96
+ }
97
+
98
+ // Wait before retry
99
+ await this.sleep(delay);
43
100
  }
44
- throw error;
45
101
  }
102
+
103
+ // All retries exhausted
104
+ if (this.verbose) {
105
+ const totalDuration = Date.now() - totalStartTime;
106
+ console.error(
107
+ `āœ— GraphQL request failed after ${config.maxAttempts} attempts in ${totalDuration}ms:`,
108
+ lastError
109
+ );
110
+ } else {
111
+ console.error(
112
+ `GraphQL mutation failed after ${config.maxAttempts} attempts:`,
113
+ lastError
114
+ );
115
+ }
116
+
117
+ throw lastError;
118
+ }
119
+
120
+ private isRetryableError(error: any, config: RetryConfig): boolean {
121
+ // Network errors (no response)
122
+ if (!error.response) {
123
+ return true;
124
+ }
125
+
126
+ // Check HTTP status codes
127
+ const status = error.response.status;
128
+ return config.retryableStatusCodes.includes(status);
129
+ }
130
+
131
+ private calculateDelay(attempt: number, config: RetryConfig): number {
132
+ if (!config.exponentialBackoff) {
133
+ return config.baseDelay;
134
+ }
135
+
136
+ const exponentialDelay = config.baseDelay * Math.pow(2, attempt);
137
+ const cappedDelay = Math.min(exponentialDelay, config.maxDelay);
138
+
139
+ // Add jitter (±20% randomization)
140
+ const jitter = cappedDelay * 0.2 * (Math.random() - 0.5);
141
+ return Math.max(0, cappedDelay + jitter);
142
+ }
143
+
144
+ private sleep(ms: number): Promise<void> {
145
+ return new Promise((resolve) => setTimeout(resolve, ms));
46
146
  }
47
147
 
48
148
  setHeaders(headers: Record<string, string>) {
49
149
  this.client.setHeaders(headers);
50
150
  }
51
- }
151
+ }
@@ -141,11 +141,11 @@ describe("DataMapper", () => {
141
141
  expect(mockClient.executeMutation).toHaveBeenCalledWith(mockMutation, {
142
142
  name: "John",
143
143
  email: "john@example.com",
144
- });
144
+ }, undefined);
145
145
  expect(mockClient.executeMutation).toHaveBeenCalledWith(mockMutation, {
146
146
  name: "Jane",
147
147
  email: "jane@example.com",
148
- });
148
+ }, undefined);
149
149
 
150
150
  consoleSpy.mockRestore();
151
151
  });
@@ -223,7 +223,7 @@ describe("DataMapper", () => {
223
223
  name: "Widget",
224
224
  price: "19.99",
225
225
  sku: "W001",
226
- });
226
+ }, undefined);
227
227
  });
228
228
 
229
229
  it("should handle missing CSV columns gracefully", async () => {
@@ -260,7 +260,7 @@ describe("DataMapper", () => {
260
260
  expect(mockClient.executeMutation).toHaveBeenCalledWith(mockMutation, {
261
261
  name: "John",
262
262
  email: "john@example.com",
263
- });
263
+ }, undefined);
264
264
  });
265
265
 
266
266
  it("should call metrics methods during successful processing", async () => {
package/src/mapper.ts CHANGED
@@ -3,7 +3,7 @@ import path from "path";
3
3
  import { readCsvFile, CsvRow } from "./csv-reader";
4
4
  import { GraphQLClientWrapper } from "./graphql-client";
5
5
  import { MetricsCollector } from "./metrics";
6
- import { ParallelProcessingConfig } from "./config";
6
+ import { ParallelProcessingConfig, RetryConfig } from "./config";
7
7
 
8
8
  export interface MappingConfig {
9
9
  csvFile: string;
@@ -48,7 +48,8 @@ export class DataMapper {
48
48
 
49
49
  async processEntity(
50
50
  configPath: string,
51
- parallelConfig?: ParallelProcessingConfig
51
+ parallelConfig?: ParallelProcessingConfig,
52
+ retryConfig?: RetryConfig
52
53
  ): Promise<void> {
53
54
  const entityName = path.basename(configPath, ".json");
54
55
  console.log(`Processing entity: ${configPath}`);
@@ -79,14 +80,16 @@ export class DataMapper {
79
80
  mutation,
80
81
  config.mapping,
81
82
  entityName,
82
- parallelConfig
83
+ parallelConfig,
84
+ retryConfig
83
85
  );
84
86
  } else {
85
87
  await this.processRowsSequentially(
86
88
  csvData,
87
89
  mutation,
88
90
  config.mapping,
89
- entityName
91
+ entityName,
92
+ retryConfig
90
93
  );
91
94
  }
92
95
 
@@ -97,7 +100,8 @@ export class DataMapper {
97
100
  csvData: CsvRow[],
98
101
  mutation: string,
99
102
  mapping: Record<string, string>,
100
- entityName: string
103
+ entityName: string,
104
+ retryConfig?: RetryConfig
101
105
  ): Promise<void> {
102
106
  const totalRows = csvData.length;
103
107
 
@@ -106,7 +110,7 @@ export class DataMapper {
106
110
  const variables = this.mapCsvRowToVariables(row, mapping);
107
111
 
108
112
  try {
109
- await this.client.executeMutation(mutation, variables);
113
+ await this.client.executeMutation(mutation, variables, retryConfig);
110
114
  this.metrics.recordSuccess(entityName);
111
115
 
112
116
  // Show progress every 10% or at the end (only in non-verbose mode)
@@ -128,7 +132,8 @@ export class DataMapper {
128
132
  mutation: string,
129
133
  mapping: Record<string, string>,
130
134
  entityName: string,
131
- parallelConfig: ParallelProcessingConfig
135
+ parallelConfig: ParallelProcessingConfig,
136
+ retryConfig?: RetryConfig
132
137
  ): Promise<void> {
133
138
  const concurrency = parallelConfig.concurrency;
134
139
  console.log(
@@ -146,7 +151,7 @@ export class DataMapper {
146
151
  const variables = this.mapCsvRowToVariables(row, mapping);
147
152
 
148
153
  try {
149
- const result = await this.client.executeMutation(mutation, variables);
154
+ const result = await this.client.executeMutation(mutation, variables, retryConfig);
150
155
  this.metrics.recordSuccess(entityName);
151
156
  return { success: true, result, row };
152
157
  } catch (error) {
package/src/metrics.ts CHANGED
@@ -12,6 +12,9 @@ export interface ProcessingMetrics {
12
12
  totalFailures: number;
13
13
  entityMetrics: Map<string, EntityMetrics>;
14
14
  requestDurations: number[];
15
+ retryAttempts: number;
16
+ retrySuccesses: number;
17
+ retryFailures: number;
15
18
  startTime: number;
16
19
  endTime?: number;
17
20
  }
@@ -26,6 +29,9 @@ export class MetricsCollector {
26
29
  totalFailures: 0,
27
30
  entityMetrics: new Map(),
28
31
  requestDurations: [],
32
+ retryAttempts: 0,
33
+ retrySuccesses: 0,
34
+ retryFailures: 0,
29
35
  startTime: Date.now(),
30
36
  };
31
37
  }
@@ -88,6 +94,16 @@ export class MetricsCollector {
88
94
  this.metrics.requestDurations.push(duration);
89
95
  }
90
96
 
97
+ recordRetrySuccess(attempts: number): void {
98
+ this.metrics.retryAttempts += attempts;
99
+ this.metrics.retrySuccesses++;
100
+ }
101
+
102
+ recordRetryFailure(attempts: number): void {
103
+ this.metrics.retryAttempts += attempts;
104
+ this.metrics.retryFailures++;
105
+ }
106
+
91
107
  getAverageRequestDuration(): number {
92
108
  if (this.metrics.requestDurations.length === 0) return 0;
93
109
  const sum = this.metrics.requestDurations.reduce((a, b) => a + b, 0);
@@ -114,6 +130,12 @@ export class MetricsCollector {
114
130
  if (this.metrics.requestDurations.length > 0) {
115
131
  summary += ` Avg Request Time: ${avgRequestDuration.toFixed(0)}ms\n`;
116
132
  }
133
+
134
+ if (this.metrics.retryAttempts > 0) {
135
+ summary += ` Retry Attempts: ${this.metrics.retryAttempts}\n`;
136
+ summary += ` Retry Successes: ${this.metrics.retrySuccesses}\n`;
137
+ summary += ` Retry Failures: ${this.metrics.retryFailures}\n`;
138
+ }
117
139
 
118
140
  if (this.metrics.entityMetrics.size > 1) {
119
141
  summary += `\nšŸ“‹ Per-Entity Breakdown:\n`;