@bluealba/pae-bootstrap-lib 3.1.2-develop-237 → 3.1.2-feature-resilient-bootstrap-no-cr-255

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.
@@ -22,6 +22,32 @@ export type BootstrapOptions = {
22
22
  * Adding and overriding some modules according to some env vars.
23
23
  */
24
24
  transformModules?: (modules: BootstrapModule[]) => BootstrapModule[];
25
+ /**
26
+ * Controls whether bootstrapPlatform() propagates errors to the caller.
27
+ *
28
+ * **Default: `false` (breaking change from pre-resilience behaviour)**
29
+ * Previously, this function always threw on failure. Now errors are caught internally
30
+ * and logged without propagating, so the process stays alive. This is intentional to
31
+ * prevent crash loops in container environments with restart policies (Kubernetes, ECS, etc.).
32
+ *
33
+ * Set to `true` to restore the original throwing behaviour — useful when the caller
34
+ * manages its own error handling or retry logic.
35
+ */
36
+ throwOnError?: boolean;
37
+ /**
38
+ * Maximum number of retry attempts after the initial failure. Default: 0 (no retries).
39
+ * Each retry uses exponential backoff starting at MIN_RETRY_DELAY (5s), doubling on each
40
+ * attempt and capped at MAX_BACKOFF_DELAY (5 minutes).
41
+ */
42
+ retries?: number;
43
+ /**
44
+ * Delay in ms before the first attempt. Default: 0.
45
+ *
46
+ * Note: this is NOT the base for backoff calculation. The backoff base is always
47
+ * MIN_RETRY_DELAY (5s) to ensure a meaningful gap between retries regardless of
48
+ * the initial delay value.
49
+ */
50
+ initialDelay?: number;
25
51
  };
26
52
  /**
27
53
  * Reads the current application src/data folder assembles all the platform definitions
@@ -1 +1 @@
1
- {"version":3,"file":"bootstrap-platform.d.ts","sourceRoot":"","sources":["../../../src/bootstrap/bootstrap-platform.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAG7E;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IAEnB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,CAAC,OAAO,EAAE,eAAe,EAAE,KAAK,eAAe,EAAE,CAAC;CACtE,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,iBAAiB,GAAU,SAAS,gBAAgB,kBAwEhE,CAAC"}
1
+ {"version":3,"file":"bootstrap-platform.d.ts","sourceRoot":"","sources":["../../../src/bootstrap/bootstrap-platform.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAG7E;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IAEnB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,CAAC,OAAO,EAAE,eAAe,EAAE,KAAK,eAAe,EAAE,CAAC;IAErE;;;;;;;;;;OAUG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,CAAA;AAgBD;;;GAGG;AACH,eAAO,MAAM,iBAAiB,GAAU,SAAS,gBAAgB,KAAG,OAAO,CAAC,IAAI,CAwF/E,CAAC"}
@@ -13,27 +13,39 @@ exports.bootstrapPlatform = void 0;
13
13
  const pae_core_1 = require("@bluealba/pae-core");
14
14
  const read_bootstrap_applications_1 = require("./read-bootstrap-applications");
15
15
  const apply_service_local_1 = require("./apply-service-local");
16
+ /**
17
+ * Maximum delay between retry attempts (5 minutes).
18
+ * Backoff doubles on each retry until this cap is reached.
19
+ */
20
+ const MAX_BACKOFF_DELAY = 300000;
21
+ /**
22
+ * Minimum delay used as the base for exponential backoff between retries (5 seconds).
23
+ * This floor ensures a meaningful gap between retry attempts regardless of initialDelay.
24
+ */
25
+ const MIN_RETRY_DELAY = 5000;
26
+ const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms));
16
27
  /**
17
28
  * Reads the current application src/data folder assembles all the platform definitions
18
29
  * and sends them to the gateway's /bootstrap/sync endpoint for synchronization.
19
30
  */
20
31
  const bootstrapPlatform = (options) => __awaiter(void 0, void 0, void 0, function* () {
21
32
  var _a, _b, _c, _d;
33
+ const { throwOnError = false, retries = 0, initialDelay = 0 } = options;
22
34
  if (!options.scopedTo) {
23
- throw new Error('No options.scopedTo was provider neither the env var SERVICE_ACCESS_NAME is present ! Set one to identify the bootstrap as author for creating/updating entities in the platform');
35
+ const err = new Error('No options.scopedTo was provider neither the env var SERVICE_ACCESS_NAME is present ! Set one to identify the bootstrap as author for creating/updating entities in the platform');
36
+ console.error('[Bootstrap]', err.message);
37
+ if (throwOnError)
38
+ throw err;
39
+ return;
24
40
  }
25
41
  console.log('[Bootstrap] Reading platform data from:', (_a = options.path) !== null && _a !== void 0 ? _a : process.cwd());
26
- // Read all files from filesystem (maintains current logic)
27
42
  const platform = (0, read_bootstrap_applications_1.readPlatformBootstrapFolder)((_b = options.path) !== null && _b !== void 0 ? _b : process.cwd(), options);
28
43
  const applications = Object.values(platform.applications);
29
44
  console.log(`[Bootstrap] Found ${applications.length} applications`);
30
45
  console.log(`[Bootstrap] Found ${(_d = (_c = platform.sharedLibraries) === null || _c === void 0 ? void 0 : _c.length) !== null && _d !== void 0 ? _d : 0} shared libraries`);
31
- // Handle transformModules option if provided (backward compatibility)
32
46
  if (options.transformModules) {
33
47
  console.warn('[DEPRECATED] transformModules option is deprecated and will be removed in a future version.');
34
48
  const transformedModules = options.transformModules(applications.flatMap(app => app.modules));
35
- // Rebuild applications with transformed modules
36
- // Group modules by application name
37
49
  const modulesByApp = new Map();
38
50
  transformedModules.forEach(module => {
39
51
  const appName = module.application || pae_core_1.PLATFORM_APPLICATION_NAME;
@@ -42,7 +54,6 @@ const bootstrapPlatform = (options) => __awaiter(void 0, void 0, void 0, functio
42
54
  }
43
55
  modulesByApp.get(appName).push(module);
44
56
  });
45
- // Update platform.applications with transformed modules
46
57
  modulesByApp.forEach((modules, appName) => {
47
58
  if (platform.applications[appName]) {
48
59
  platform.applications[appName].modules = modules;
@@ -50,35 +61,47 @@ const bootstrapPlatform = (options) => __awaiter(void 0, void 0, void 0, functio
50
61
  });
51
62
  }
52
63
  const processedPlatform = (0, apply_service_local_1.processServiceLocal)(platform);
53
- try {
54
- // Get gateway URL from environment
55
- const gatewayUrl = (0, pae_core_1.fromEnv)('GATEWAY_SERVICE_URL');
56
- const url = `${gatewayUrl}/bootstrap/sync`;
57
- console.log(`[Bootstrap] Sending data to gateway: ${url}`);
58
- console.log(`[Bootstrap] Scoped to: ${options.scopedTo}`);
59
- const response = yield fetch(url, {
60
- method: 'POST',
61
- headers: {
62
- 'Authorization': `Bearer ${(0, pae_core_1.fromEnv)("SERVICE_ACCESS_SECRET")}`,
63
- 'Accept': 'application/json',
64
- 'Content-Type': 'application/json',
65
- 'x-bootstrap-scoped-to': options.scopedTo,
66
- },
67
- body: JSON.stringify(processedPlatform),
68
- });
69
- if (!response.ok) {
70
- const errorText = yield response.text();
71
- throw new Error(`Bootstrap sync failed with status ${response.status}: ${errorText}`);
64
+ const gatewayUrl = (0, pae_core_1.fromEnv)('GATEWAY_SERVICE_URL');
65
+ const url = `${gatewayUrl}/bootstrap/sync`;
66
+ console.log(`[Bootstrap] Sending data to gateway: ${url}`);
67
+ console.log(`[Bootstrap] Scoped to: ${options.scopedTo}`);
68
+ const attempt = (attemptNumber, delay) => __awaiter(void 0, void 0, void 0, function* () {
69
+ if (delay > 0) {
70
+ console.log(`[Bootstrap] Waiting ${delay}ms before attempt ${attemptNumber}/${retries + 1}...`);
71
+ yield sleep(delay);
72
72
  }
73
- console.log('[Bootstrap] Sync completed successfully');
74
- }
75
- catch (error) {
76
- if (error instanceof Error) {
77
- console.error('[Bootstrap] Sync failed:', error.message);
78
- throw error;
73
+ try {
74
+ const response = yield fetch(url, {
75
+ method: 'POST',
76
+ headers: {
77
+ 'Authorization': `Bearer ${(0, pae_core_1.fromEnv)("SERVICE_ACCESS_SECRET")}`,
78
+ 'Accept': 'application/json',
79
+ 'Content-Type': 'application/json',
80
+ 'x-bootstrap-scoped-to': options.scopedTo,
81
+ },
82
+ body: JSON.stringify(processedPlatform),
83
+ });
84
+ if (!response.ok) {
85
+ const errorText = yield response.text();
86
+ throw new Error(`Bootstrap sync failed with status ${response.status}: ${errorText}`);
87
+ }
88
+ console.log('[Bootstrap] Sync completed successfully');
79
89
  }
80
- throw new Error('Bootstrap sync failed with unknown error');
81
- }
90
+ catch (error) {
91
+ const err = error instanceof Error ? error : new Error('Bootstrap sync failed with unknown error');
92
+ console.error(`[Bootstrap] Attempt ${attemptNumber}/${retries + 1} failed:`, err.message);
93
+ if (attemptNumber <= retries) {
94
+ const nextDelay = Math.min(Math.max(delay * 2, MIN_RETRY_DELAY), MAX_BACKOFF_DELAY);
95
+ return attempt(attemptNumber + 1, nextDelay);
96
+ }
97
+ if (retries > 0) {
98
+ console.error('[Bootstrap] All retry attempts exhausted. Service will continue running without bootstrap.');
99
+ }
100
+ if (throwOnError)
101
+ throw err;
102
+ }
103
+ });
104
+ return attempt(1, initialDelay);
82
105
  });
83
106
  exports.bootstrapPlatform = bootstrapPlatform;
84
107
  //# sourceMappingURL=bootstrap-platform.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bootstrap-platform.js","sourceRoot":"","sources":["../../../src/bootstrap/bootstrap-platform.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"bootstrap-platform.js","sourceRoot":"","sources":["../../../src/bootstrap/bootstrap-platform.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAAwE;AACxE,+EAA4E;AAE5E,+DAA4D;AA2D5D;;;GAGG;AACH,MAAM,iBAAiB,GAAG,MAAO,CAAC;AAElC;;;GAGG;AACH,MAAM,eAAe,GAAG,IAAK,CAAC;AAE9B,MAAM,KAAK,GAAG,CAAC,EAAU,EAAE,EAAE,CAAC,IAAI,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC;AAE9E;;;GAGG;AACI,MAAM,iBAAiB,GAAG,CAAO,OAAyB,EAAiB,EAAE;;IAClF,MAAM,EAAE,YAAY,GAAG,KAAK,EAAE,OAAO,GAAG,CAAC,EAAE,YAAY,GAAG,CAAC,EAAE,GAAG,OAAO,CAAC;IAExE,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;QACtB,MAAM,GAAG,GAAG,IAAI,KAAK,CAAC,kLAAkL,CAAC,CAAC;QAC1M,OAAO,CAAC,KAAK,CAAC,aAAa,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;QAC1C,IAAI,YAAY;YAAE,MAAM,GAAG,CAAC;QAC5B,OAAO;IACT,CAAC;IAED,OAAO,CAAC,GAAG,CAAC,yCAAyC,EAAE,MAAA,OAAO,CAAC,IAAI,mCAAI,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IAEtF,MAAM,QAAQ,GAAG,IAAA,yDAA2B,EAAC,MAAA,OAAO,CAAC,IAAI,mCAAI,OAAO,CAAC,GAAG,EAAE,EAAE,OAAO,CAAC,CAAC;IACrF,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;IAE1D,OAAO,CAAC,GAAG,CAAC,qBAAqB,YAAY,CAAC,MAAM,eAAe,CAAC,CAAC;IACrE,OAAO,CAAC,GAAG,CAAC,qBAAqB,MAAA,MAAA,QAAQ,CAAC,eAAe,0CAAE,MAAM,mCAAI,CAAC,mBAAmB,CAAC,CAAC;IAE3F,IAAI,OAAO,CAAC,gBAAgB,EAAE,CAAC;QAC7B,OAAO,CAAC,IAAI,CAAC,6FAA6F,CAAC,CAAC;QAC5G,MAAM,kBAAkB,GAAG,OAAO,CAAC,gBAAgB,CAAC,YAAY,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;QAE9F,MAAM,YAAY,GAAG,IAAI,GAAG,EAA6B,CAAC;QAC1D,kBAAkB,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;YAClC,MAAM,OAAO,GAAI,MAAc,CAAC,WAAW,IAAI,oCAAyB,CAAC;YACzE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC;gBAC/B,YAAY,CAAC,GAAG,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC;YAChC,CAAC;YACD,YAAY,CAAC,GAAG,CAAC,OAAO,CAAE,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1C,CAAC,CAAC,CAAC;QAEH,YAAY,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,OAAO,EAAE,EAAE;YACxC,IAAI,QAAQ,CAAC,YAAY,CAAC,OAAO,CAAC,EAAE,CAAC;gBACnC,QAAQ,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,OAAO,GAAG,OAAO,CAAC;YACnD,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC;IAED,MAAM,iBAAiB,GAAG,IAAA,yCAAmB,EAAC,QAAQ,CAAC,CAAC;IAExD,MAAM,UAAU,GAAG,IAAA,kBAAO,EAAC,qBAAqB,CAAC,CAAC;IAClD,MAAM,GAAG,GAAG,GAAG,UAAU,iBAAiB,CAAC;IAE3C,OAAO,CAAC,GAAG,CAAC,wCAAwC,GAAG,EAAE,CAAC,CAAC;IAC3D,OAAO,CAAC,GAAG,CAAC,0BAA0B,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAE1D,MAAM,OAAO,GAAG,CAAO,aAAqB,EAAE,KAAa,EAAiB,EAAE;QAC5E,IAAI,KAAK,GAAG,CAAC,EAAE,CAAC;YACd,OAAO,CAAC,GAAG,CAAC,uBAAuB,KAAK,qBAAqB,aAAa,IAAI,OAAO,GAAG,CAAC,KAAK,CAAC,CAAC;YAChG,MAAM,KAAK,CAAC,KAAK,CAAC,CAAC;QACrB,CAAC;QAED,IAAI,CAAC;YACH,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,EAAE;gBAChC,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACP,eAAe,EAAE,UAAU,IAAA,kBAAO,EAAC,uBAAuB,CAAC,EAAE;oBAC7D,QAAQ,EAAE,kBAAkB;oBAC5B,cAAc,EAAE,kBAAkB;oBAClC,uBAAuB,EAAE,OAAO,CAAC,QAAQ;iBAC1C;gBACD,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC;aACxC,CAAC,CAAC;YAEH,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;gBACjB,MAAM,SAAS,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;gBACxC,MAAM,IAAI,KAAK,CAAC,qCAAqC,QAAQ,CAAC,MAAM,KAAK,SAAS,EAAE,CAAC,CAAC;YACxF,CAAC;YAED,OAAO,CAAC,GAAG,CAAC,yCAAyC,CAAC,CAAC;QACzD,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,MAAM,GAAG,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;YACnG,OAAO,CAAC,KAAK,CAAC,uBAAuB,aAAa,IAAI,OAAO,GAAG,CAAC,UAAU,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;YAE1F,IAAI,aAAa,IAAI,OAAO,EAAE,CAAC;gBAC7B,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,GAAG,CAAC,EAAE,eAAe,CAAC,EAAE,iBAAiB,CAAC,CAAC;gBACpF,OAAO,OAAO,CAAC,aAAa,GAAG,CAAC,EAAE,SAAS,CAAC,CAAC;YAC/C,CAAC;YAED,IAAI,OAAO,GAAG,CAAC,EAAE,CAAC;gBAChB,OAAO,CAAC,KAAK,CAAC,4FAA4F,CAAC,CAAC;YAC9G,CAAC;YAED,IAAI,YAAY;gBAAE,MAAM,GAAG,CAAC;QAC9B,CAAC;IACH,CAAC,CAAA,CAAC;IAEF,OAAO,OAAO,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC;AAClC,CAAC,CAAA,CAAC;AAxFW,QAAA,iBAAiB,qBAwF5B"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bluealba/pae-bootstrap-lib",
3
3
  "description": "PAE library for bootstrapping platforms",
4
- "version": "3.1.2-develop-237",
4
+ "version": "3.1.2-feature-resilient-bootstrap-no-cr-255",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "files": [