@hazeljs/discovery 0.2.0-beta.8 → 0.2.0-beta.81
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/LICENSE +192 -21
- package/README.md +190 -21
- package/dist/__tests__/consul-backend.test.d.ts +6 -0
- package/dist/__tests__/consul-backend.test.d.ts.map +1 -0
- package/dist/__tests__/consul-backend.test.js +300 -0
- package/dist/__tests__/kubernetes-backend.test.d.ts +6 -0
- package/dist/__tests__/kubernetes-backend.test.d.ts.map +1 -0
- package/dist/__tests__/kubernetes-backend.test.js +261 -0
- package/dist/__tests__/redis-backend.test.d.ts +6 -0
- package/dist/__tests__/redis-backend.test.d.ts.map +1 -0
- package/dist/__tests__/redis-backend.test.js +280 -0
- package/dist/__tests__/service-client.test.js +2 -1
- package/dist/backends/consul-backend.d.ts +46 -7
- package/dist/backends/consul-backend.d.ts.map +1 -1
- package/dist/backends/consul-backend.js +23 -39
- package/dist/backends/kubernetes-backend.d.ts +44 -6
- package/dist/backends/kubernetes-backend.d.ts.map +1 -1
- package/dist/backends/kubernetes-backend.js +11 -32
- package/dist/backends/memory-backend.d.ts +0 -1
- package/dist/backends/memory-backend.d.ts.map +1 -1
- package/dist/backends/memory-backend.js +3 -32
- package/dist/backends/redis-backend.d.ts +11 -6
- package/dist/backends/redis-backend.d.ts.map +1 -1
- package/dist/backends/redis-backend.js +66 -46
- package/dist/client/discovery-client.d.ts +6 -4
- package/dist/client/discovery-client.d.ts.map +1 -1
- package/dist/client/discovery-client.js +30 -30
- package/dist/client/service-client.d.ts +4 -8
- package/dist/client/service-client.d.ts.map +1 -1
- package/dist/client/service-client.js +94 -34
- package/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -1
- package/dist/registry/service-registry.d.ts.map +1 -1
- package/dist/registry/service-registry.js +13 -2
- package/dist/utils/filter.d.ts +10 -0
- package/dist/utils/filter.d.ts.map +1 -0
- package/dist/utils/filter.js +39 -0
- package/dist/utils/logger.d.ts +21 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +34 -0
- package/dist/utils/validation.d.ts +36 -0
- package/dist/utils/validation.d.ts.map +1 -0
- package/dist/utils/validation.js +109 -0
- package/package.json +7 -5
package/LICENSE
CHANGED
|
@@ -1,21 +1,192 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
Copyright 2024 HazelJS Team
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
See the License for the specific language governing permissions and
|
|
17
|
+
limitations under the License.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
22
|
+
|
|
23
|
+
1. Definitions.
|
|
24
|
+
|
|
25
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
26
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
27
|
+
|
|
28
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
29
|
+
the copyright owner that is granting the License.
|
|
30
|
+
|
|
31
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
32
|
+
other entities that control, are controlled by, or are under common
|
|
33
|
+
control with that entity. For the purposes of this definition,
|
|
34
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
35
|
+
direction or management of such entity, whether by contract or
|
|
36
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
37
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
38
|
+
|
|
39
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
40
|
+
exercising permissions granted by this License.
|
|
41
|
+
|
|
42
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
43
|
+
including but not limited to software source code, documentation
|
|
44
|
+
source, and configuration files.
|
|
45
|
+
|
|
46
|
+
"Object" form shall mean any form resulting from mechanical
|
|
47
|
+
transformation or translation of a Source form, including but
|
|
48
|
+
not limited to compiled object code, generated documentation,
|
|
49
|
+
and conversions to other media types.
|
|
50
|
+
|
|
51
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
52
|
+
Object form, made available under the License, as indicated by a
|
|
53
|
+
copyright notice that is included in or attached to the work
|
|
54
|
+
(an example is provided in the Appendix below).
|
|
55
|
+
|
|
56
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
57
|
+
form, that is based on (or derived from) the Work and for which the
|
|
58
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
59
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
60
|
+
of this License, Derivative Works shall not include works that remain
|
|
61
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
62
|
+
the Work and Derivative Works thereof.
|
|
63
|
+
|
|
64
|
+
"Contribution" shall mean any work of authorship, including
|
|
65
|
+
the original version of the Work and any modifications or additions
|
|
66
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
67
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
68
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
69
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
70
|
+
means any form of electronic, verbal, or written communication sent
|
|
71
|
+
to the Licensor or its representatives, including but not limited to
|
|
72
|
+
communication on electronic mailing lists, source code control systems,
|
|
73
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
74
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
75
|
+
excluding communication that is conspicuously marked or otherwise
|
|
76
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
77
|
+
|
|
78
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
79
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
80
|
+
subsequently incorporated within the Work.
|
|
81
|
+
|
|
82
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
83
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
84
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
85
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
86
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
87
|
+
Work and such Derivative Works in Source or Object form.
|
|
88
|
+
|
|
89
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
90
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
91
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
92
|
+
(except as stated in this section) patent license to make, have made,
|
|
93
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
94
|
+
where such license applies only to those patent claims licensable
|
|
95
|
+
by such Contributor that are necessarily infringed by their
|
|
96
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
97
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
98
|
+
institute patent litigation against any entity (including a
|
|
99
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
100
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
101
|
+
or contributory patent infringement, then any patent licenses
|
|
102
|
+
granted to You under this License for that Work shall terminate
|
|
103
|
+
as of the date such litigation is filed.
|
|
104
|
+
|
|
105
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
106
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
107
|
+
modifications, and in Source or Object form, provided that You
|
|
108
|
+
meet the following conditions:
|
|
109
|
+
|
|
110
|
+
(a) You must give any other recipients of the Work or
|
|
111
|
+
Derivative Works a copy of this License; and
|
|
112
|
+
|
|
113
|
+
(b) You must cause any modified files to carry prominent notices
|
|
114
|
+
stating that You changed the files; and
|
|
115
|
+
|
|
116
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
117
|
+
that You distribute, all copyright, patent, trademark, and
|
|
118
|
+
attribution notices from the Source form of the Work,
|
|
119
|
+
excluding those notices that do not pertain to any part of
|
|
120
|
+
the Derivative Works; and
|
|
121
|
+
|
|
122
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
123
|
+
distribution, then any Derivative Works that You distribute must
|
|
124
|
+
include a readable copy of the attribution notices contained
|
|
125
|
+
within such NOTICE file, excluding those notices that do not
|
|
126
|
+
pertain to any part of the Derivative Works, in at least one
|
|
127
|
+
of the following places: within a NOTICE text file distributed
|
|
128
|
+
as part of the Derivative Works; within the Source form or
|
|
129
|
+
documentation, if provided along with the Derivative Works; or,
|
|
130
|
+
within a display generated by the Derivative Works, if and
|
|
131
|
+
wherever such third-party notices normally appear. The contents
|
|
132
|
+
of the NOTICE file are for informational purposes only and
|
|
133
|
+
do not modify the License. You may add Your own attribution
|
|
134
|
+
notices within Derivative Works that You distribute, alongside
|
|
135
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
136
|
+
that such additional attribution notices cannot be construed
|
|
137
|
+
as modifying the License.
|
|
138
|
+
|
|
139
|
+
You may add Your own copyright statement to Your modifications and
|
|
140
|
+
may provide additional or different license terms and conditions
|
|
141
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
142
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
143
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
144
|
+
the conditions stated in this License.
|
|
145
|
+
|
|
146
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
147
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
148
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
149
|
+
this License, without any additional terms or conditions.
|
|
150
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
151
|
+
the terms of any separate license agreement you may have executed
|
|
152
|
+
with Licensor regarding such Contributions.
|
|
153
|
+
|
|
154
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
155
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
156
|
+
except as required for reasonable and customary use in describing the
|
|
157
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
158
|
+
|
|
159
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
160
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
161
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
162
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
163
|
+
implied, including, without limitation, any warranties or conditions
|
|
164
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
165
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
166
|
+
appropriateness of using or redistributing the Work and assume any
|
|
167
|
+
risks associated with Your exercise of permissions under this License.
|
|
168
|
+
|
|
169
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
170
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
171
|
+
unless required by applicable law (such as deliberate and grossly
|
|
172
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
173
|
+
liable to You for damages, including any direct, indirect, special,
|
|
174
|
+
incidental, or consequential damages of any character arising as a
|
|
175
|
+
result of this License or out of the use or inability to use the
|
|
176
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
177
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
178
|
+
other commercial damages or losses), even if such Contributor
|
|
179
|
+
has been advised of the possibility of such damages.
|
|
180
|
+
|
|
181
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
182
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
183
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
184
|
+
or other liability obligations and/or rights consistent with this
|
|
185
|
+
License. However, in accepting such obligations, You may act only
|
|
186
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
187
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
188
|
+
defend, and hold each Contributor harmless for any liability
|
|
189
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
190
|
+
of your accepting any such warranty or additional liability.
|
|
191
|
+
|
|
192
|
+
END OF TERMS AND CONDITIONS
|
package/README.md
CHANGED
|
@@ -1,20 +1,27 @@
|
|
|
1
1
|
# @hazeljs/discovery
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Microservices that find each other.**
|
|
4
|
+
|
|
5
|
+
Service registry, health checks, load balancing. Round Robin, Least Connections, Zone Aware — 6 strategies. Memory, Redis, Consul, or Kubernetes. Eureka-style, without the Java.
|
|
4
6
|
|
|
5
7
|
[](https://www.npmjs.com/package/@hazeljs/discovery)
|
|
6
|
-
[](https://www.npmjs.com/package/@hazeljs/discovery)
|
|
9
|
+
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
7
10
|
|
|
8
11
|
## Features
|
|
9
12
|
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
13
|
+
- **Service Registration & Discovery** - Automatic service registration with health checks
|
|
14
|
+
- **Load Balancing** - 6 built-in strategies (Round Robin, Random, Least Connections, Weighted Round Robin, IP Hash, Zone Aware)
|
|
15
|
+
- **Health Checks** - Automatic health monitoring with heartbeat
|
|
16
|
+
- **Service Filtering** - Filter by zone, tags, metadata, and status
|
|
17
|
+
- **Multiple Backends** - Memory (dev), Redis, Consul, Kubernetes
|
|
18
|
+
- **Decorator Support** - Clean integration with HazelJS apps
|
|
19
|
+
- **Caching** - Built-in service discovery caching with auto-refresh
|
|
20
|
+
- **Auto-Cleanup** - Automatic removal of expired instances
|
|
21
|
+
- **Smart Retries** - Only retries on transient/network errors, not client errors
|
|
22
|
+
- **Pluggable Logging** - Bring your own logger or use the built-in console logger
|
|
23
|
+
- **Config Validation** - Runtime validation of all configuration objects
|
|
24
|
+
- **Graceful Shutdown** - Proper cleanup of intervals, connections, and resources
|
|
18
25
|
|
|
19
26
|
## Installation
|
|
20
27
|
|
|
@@ -22,6 +29,21 @@ Service Discovery and Registry for HazelJS microservices - inspired by Netflix E
|
|
|
22
29
|
npm install @hazeljs/discovery
|
|
23
30
|
```
|
|
24
31
|
|
|
32
|
+
### Optional peer dependencies
|
|
33
|
+
|
|
34
|
+
Install the backend you need:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Redis backend
|
|
38
|
+
npm install ioredis
|
|
39
|
+
|
|
40
|
+
# Consul backend
|
|
41
|
+
npm install consul
|
|
42
|
+
|
|
43
|
+
# Kubernetes backend
|
|
44
|
+
npm install @kubernetes/client-node
|
|
45
|
+
```
|
|
46
|
+
|
|
25
47
|
## Quick Start
|
|
26
48
|
|
|
27
49
|
### 1. Register a Service
|
|
@@ -41,6 +63,9 @@ const registry = new ServiceRegistry({
|
|
|
41
63
|
});
|
|
42
64
|
|
|
43
65
|
await registry.register();
|
|
66
|
+
|
|
67
|
+
// On shutdown
|
|
68
|
+
await registry.deregister();
|
|
44
69
|
```
|
|
45
70
|
|
|
46
71
|
### 2. Discover Services
|
|
@@ -51,6 +76,7 @@ import { DiscoveryClient } from '@hazeljs/discovery';
|
|
|
51
76
|
const client = new DiscoveryClient({
|
|
52
77
|
cacheEnabled: true,
|
|
53
78
|
cacheTTL: 30000,
|
|
79
|
+
refreshInterval: 15000, // auto-refresh cache every 15s
|
|
54
80
|
});
|
|
55
81
|
|
|
56
82
|
// Get all instances
|
|
@@ -58,6 +84,9 @@ const instances = await client.getInstances('user-service');
|
|
|
58
84
|
|
|
59
85
|
// Get one instance with load balancing
|
|
60
86
|
const instance = await client.getInstance('user-service', 'round-robin');
|
|
87
|
+
|
|
88
|
+
// On shutdown
|
|
89
|
+
client.close();
|
|
61
90
|
```
|
|
62
91
|
|
|
63
92
|
### 3. Call Services
|
|
@@ -70,10 +99,12 @@ const serviceClient = new ServiceClient(discoveryClient, {
|
|
|
70
99
|
loadBalancingStrategy: 'round-robin',
|
|
71
100
|
timeout: 5000,
|
|
72
101
|
retries: 3,
|
|
102
|
+
retryDelay: 1000,
|
|
73
103
|
});
|
|
74
104
|
|
|
75
|
-
// Automatic service discovery + load balancing
|
|
105
|
+
// Automatic service discovery + load balancing + smart retries
|
|
76
106
|
const user = await serviceClient.get('/users/123');
|
|
107
|
+
const created = await serviceClient.post('/users', { name: 'John' });
|
|
77
108
|
```
|
|
78
109
|
|
|
79
110
|
### 4. With HazelJS Decorators
|
|
@@ -105,36 +136,44 @@ export class OrderService {
|
|
|
105
136
|
## Load Balancing Strategies
|
|
106
137
|
|
|
107
138
|
### Round Robin
|
|
139
|
+
|
|
108
140
|
```typescript
|
|
109
141
|
const instance = await client.getInstance('service-name', 'round-robin');
|
|
110
142
|
```
|
|
111
143
|
|
|
112
144
|
### Random
|
|
145
|
+
|
|
113
146
|
```typescript
|
|
114
147
|
const instance = await client.getInstance('service-name', 'random');
|
|
115
148
|
```
|
|
116
149
|
|
|
117
150
|
### Least Connections
|
|
151
|
+
|
|
152
|
+
Tracks active connections per instance. When used with `ServiceClient`, connection counts are automatically incremented/decremented on each request.
|
|
153
|
+
|
|
118
154
|
```typescript
|
|
119
155
|
const instance = await client.getInstance('service-name', 'least-connections');
|
|
120
156
|
```
|
|
121
157
|
|
|
122
158
|
### Weighted Round Robin
|
|
159
|
+
|
|
123
160
|
```typescript
|
|
124
161
|
// Set weight in service metadata
|
|
125
162
|
const registry = new ServiceRegistry({
|
|
126
163
|
name: 'api-service',
|
|
164
|
+
port: 3000,
|
|
127
165
|
metadata: { weight: 5 }, // Higher weight = more traffic
|
|
128
|
-
// ...
|
|
129
166
|
});
|
|
130
167
|
```
|
|
131
168
|
|
|
132
169
|
### IP Hash (Sticky Sessions)
|
|
170
|
+
|
|
133
171
|
```typescript
|
|
134
172
|
const instance = await client.getInstance('service-name', 'ip-hash');
|
|
135
173
|
```
|
|
136
174
|
|
|
137
175
|
### Zone Aware
|
|
176
|
+
|
|
138
177
|
```typescript
|
|
139
178
|
const factory = client.getLoadBalancerFactory();
|
|
140
179
|
const strategy = factory.create('zone-aware', { zone: 'us-east-1' });
|
|
@@ -143,6 +182,8 @@ const strategy = factory.create('zone-aware', { zone: 'us-east-1' });
|
|
|
143
182
|
## Service Filtering
|
|
144
183
|
|
|
145
184
|
```typescript
|
|
185
|
+
import { ServiceStatus } from '@hazeljs/discovery';
|
|
186
|
+
|
|
146
187
|
const instances = await client.getInstances('user-service', {
|
|
147
188
|
zone: 'us-east-1',
|
|
148
189
|
status: ServiceStatus.UP,
|
|
@@ -151,17 +192,35 @@ const instances = await client.getInstances('user-service', {
|
|
|
151
192
|
});
|
|
152
193
|
```
|
|
153
194
|
|
|
195
|
+
The `applyServiceFilter` utility is also exported for use in custom backends or application code:
|
|
196
|
+
|
|
197
|
+
```typescript
|
|
198
|
+
import { applyServiceFilter } from '@hazeljs/discovery';
|
|
199
|
+
|
|
200
|
+
const filtered = applyServiceFilter(instances, { zone: 'us-east-1' });
|
|
201
|
+
```
|
|
202
|
+
|
|
154
203
|
## Registry Backends
|
|
155
204
|
|
|
156
205
|
### Memory (Development)
|
|
206
|
+
|
|
207
|
+
The default backend. Stores everything in-process memory -- suitable for development and testing.
|
|
208
|
+
|
|
157
209
|
```typescript
|
|
158
210
|
import { MemoryRegistryBackend } from '@hazeljs/discovery';
|
|
159
211
|
|
|
160
|
-
const backend = new MemoryRegistryBackend();
|
|
212
|
+
const backend = new MemoryRegistryBackend(90000); // optional expiration in ms
|
|
161
213
|
const registry = new ServiceRegistry(config, backend);
|
|
162
214
|
```
|
|
163
215
|
|
|
164
216
|
### Redis (Production)
|
|
217
|
+
|
|
218
|
+
Distributed registry using Redis with TTL-based expiration. Uses `SCAN` (not `KEYS`) for production safety and `MGET` for efficient batch lookups. Includes connection error handling with automatic reconnection support.
|
|
219
|
+
|
|
220
|
+
```bash
|
|
221
|
+
npm install ioredis
|
|
222
|
+
```
|
|
223
|
+
|
|
165
224
|
```typescript
|
|
166
225
|
import Redis from 'ioredis';
|
|
167
226
|
import { RedisRegistryBackend } from '@hazeljs/discovery';
|
|
@@ -173,14 +232,24 @@ const redis = new Redis({
|
|
|
173
232
|
});
|
|
174
233
|
|
|
175
234
|
const backend = new RedisRegistryBackend(redis, {
|
|
176
|
-
keyPrefix: 'myapp:discovery:',
|
|
177
|
-
ttl: 90, // seconds
|
|
235
|
+
keyPrefix: 'myapp:discovery:', // default: 'hazeljs:discovery:'
|
|
236
|
+
ttl: 90, // seconds, default: 90
|
|
178
237
|
});
|
|
179
238
|
|
|
180
239
|
const registry = new ServiceRegistry(config, backend);
|
|
240
|
+
|
|
241
|
+
// On shutdown
|
|
242
|
+
await backend.close();
|
|
181
243
|
```
|
|
182
244
|
|
|
183
245
|
### Consul
|
|
246
|
+
|
|
247
|
+
Integrates with HashiCorp Consul using TTL-based health checks.
|
|
248
|
+
|
|
249
|
+
```bash
|
|
250
|
+
npm install consul
|
|
251
|
+
```
|
|
252
|
+
|
|
184
253
|
```typescript
|
|
185
254
|
import Consul from 'consul';
|
|
186
255
|
import { ConsulRegistryBackend } from '@hazeljs/discovery';
|
|
@@ -191,14 +260,24 @@ const consul = new Consul({
|
|
|
191
260
|
});
|
|
192
261
|
|
|
193
262
|
const backend = new ConsulRegistryBackend(consul, {
|
|
194
|
-
ttl: '30s',
|
|
263
|
+
ttl: '30s', // TTL check interval (supports "30s", "5m", "1h")
|
|
195
264
|
datacenter: 'dc1',
|
|
196
265
|
});
|
|
197
266
|
|
|
198
267
|
const registry = new ServiceRegistry(config, backend);
|
|
268
|
+
|
|
269
|
+
// On shutdown
|
|
270
|
+
await backend.close();
|
|
199
271
|
```
|
|
200
272
|
|
|
201
273
|
### Kubernetes
|
|
274
|
+
|
|
275
|
+
Read-only discovery backend that integrates with Kubernetes Endpoints API. Registration, deregistration, heartbeat, and status updates are no-ops since Kubernetes manages these through its own primitives (Services, Endpoints, probes).
|
|
276
|
+
|
|
277
|
+
```bash
|
|
278
|
+
npm install @kubernetes/client-node
|
|
279
|
+
```
|
|
280
|
+
|
|
202
281
|
```typescript
|
|
203
282
|
import { KubeConfig } from '@kubernetes/client-node';
|
|
204
283
|
import { KubernetesRegistryBackend } from '@hazeljs/discovery';
|
|
@@ -211,11 +290,66 @@ const backend = new KubernetesRegistryBackend(kubeConfig, {
|
|
|
211
290
|
labelSelector: 'app.kubernetes.io/managed-by=hazeljs',
|
|
212
291
|
});
|
|
213
292
|
|
|
214
|
-
// In Kubernetes, service registration is handled by the platform
|
|
215
293
|
// Use the backend for service discovery only
|
|
216
294
|
const client = new DiscoveryClient({}, backend);
|
|
217
295
|
```
|
|
218
296
|
|
|
297
|
+
## Smart Retry Logic
|
|
298
|
+
|
|
299
|
+
`ServiceClient` only retries on transient errors. Client errors (4xx) are thrown immediately without wasting retries:
|
|
300
|
+
|
|
301
|
+
| Error Type | Retried? |
|
|
302
|
+
|---|---|
|
|
303
|
+
| Network errors (ECONNREFUSED, timeout) | Yes |
|
|
304
|
+
| 502 Bad Gateway | Yes |
|
|
305
|
+
| 503 Service Unavailable | Yes |
|
|
306
|
+
| 504 Gateway Timeout | Yes |
|
|
307
|
+
| 408 Request Timeout | Yes |
|
|
308
|
+
| 429 Too Many Requests | Yes |
|
|
309
|
+
| 400 Bad Request | No |
|
|
310
|
+
| 401 Unauthorized | No |
|
|
311
|
+
| 403 Forbidden | No |
|
|
312
|
+
| 404 Not Found | No |
|
|
313
|
+
| Other 4xx | No |
|
|
314
|
+
|
|
315
|
+
## Custom Logging
|
|
316
|
+
|
|
317
|
+
By default, the package logs to the console with a `[discovery]` prefix. You can plug in your own logger (e.g., Winston, Pino, Bunyan):
|
|
318
|
+
|
|
319
|
+
```typescript
|
|
320
|
+
import { DiscoveryLogger } from '@hazeljs/discovery';
|
|
321
|
+
|
|
322
|
+
DiscoveryLogger.setLogger({
|
|
323
|
+
debug: (msg, ...args) => myLogger.debug(msg, ...args),
|
|
324
|
+
info: (msg, ...args) => myLogger.info(msg, ...args),
|
|
325
|
+
warn: (msg, ...args) => myLogger.warn(msg, ...args),
|
|
326
|
+
error: (msg, ...args) => myLogger.error(msg, ...args),
|
|
327
|
+
});
|
|
328
|
+
|
|
329
|
+
// Reset to default console logger
|
|
330
|
+
DiscoveryLogger.resetLogger();
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
## Config Validation
|
|
334
|
+
|
|
335
|
+
All configuration objects are validated at construction time. Invalid configs throw a `ConfigValidationError` with a descriptive message:
|
|
336
|
+
|
|
337
|
+
```typescript
|
|
338
|
+
import { ServiceRegistry, ConfigValidationError } from '@hazeljs/discovery';
|
|
339
|
+
|
|
340
|
+
try {
|
|
341
|
+
const registry = new ServiceRegistry({
|
|
342
|
+
name: '', // invalid: empty string
|
|
343
|
+
port: -1, // invalid: negative port
|
|
344
|
+
});
|
|
345
|
+
} catch (error) {
|
|
346
|
+
if (error instanceof ConfigValidationError) {
|
|
347
|
+
console.error(error.message);
|
|
348
|
+
// => 'ServiceRegistryConfig: "name" is required and must be a non-empty string'
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
```
|
|
352
|
+
|
|
219
353
|
## API Reference
|
|
220
354
|
|
|
221
355
|
### ServiceRegistry
|
|
@@ -239,6 +373,8 @@ class DiscoveryClient {
|
|
|
239
373
|
getInstance(serviceName: string, strategy?: string, filter?: ServiceFilter): Promise<ServiceInstance | null>;
|
|
240
374
|
getAllServices(): Promise<string[]>;
|
|
241
375
|
clearCache(serviceName?: string): void;
|
|
376
|
+
getLoadBalancerFactory(): LoadBalancerFactory;
|
|
377
|
+
close(): void;
|
|
242
378
|
}
|
|
243
379
|
```
|
|
244
380
|
|
|
@@ -248,10 +384,41 @@ class DiscoveryClient {
|
|
|
248
384
|
class ServiceClient {
|
|
249
385
|
constructor(discoveryClient: DiscoveryClient, config: ServiceClientConfig);
|
|
250
386
|
get<T>(path: string, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
|
|
251
|
-
post<T>(path: string, data?:
|
|
252
|
-
put<T>(path: string, data?:
|
|
387
|
+
post<T>(path: string, data?: unknown, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
|
|
388
|
+
put<T>(path: string, data?: unknown, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
|
|
253
389
|
delete<T>(path: string, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
|
|
254
|
-
patch<T>(path: string, data?:
|
|
390
|
+
patch<T>(path: string, data?: unknown, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
|
|
391
|
+
}
|
|
392
|
+
```
|
|
393
|
+
|
|
394
|
+
### Configuration Types
|
|
395
|
+
|
|
396
|
+
```typescript
|
|
397
|
+
interface ServiceRegistryConfig {
|
|
398
|
+
name: string;
|
|
399
|
+
port: number;
|
|
400
|
+
host?: string;
|
|
401
|
+
protocol?: 'http' | 'https' | 'grpc';
|
|
402
|
+
healthCheckPath?: string; // default: '/health'
|
|
403
|
+
healthCheckInterval?: number; // default: 30000 (ms)
|
|
404
|
+
metadata?: Record<string, unknown>;
|
|
405
|
+
zone?: string;
|
|
406
|
+
tags?: string[];
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
interface DiscoveryClientConfig {
|
|
410
|
+
cacheEnabled?: boolean;
|
|
411
|
+
cacheTTL?: number; // default: 30000 (ms)
|
|
412
|
+
refreshInterval?: number; // auto-refresh cache interval (ms)
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
interface ServiceClientConfig {
|
|
416
|
+
serviceName: string;
|
|
417
|
+
loadBalancingStrategy?: string; // default: 'round-robin'
|
|
418
|
+
filter?: ServiceFilter;
|
|
419
|
+
timeout?: number; // default: 5000 (ms)
|
|
420
|
+
retries?: number; // default: 3
|
|
421
|
+
retryDelay?: number; // default: 1000 (ms)
|
|
255
422
|
}
|
|
256
423
|
```
|
|
257
424
|
|
|
@@ -265,13 +432,15 @@ See the [examples](./examples) directory for complete working examples.
|
|
|
265
432
|
npm test
|
|
266
433
|
```
|
|
267
434
|
|
|
435
|
+
The package includes 145+ unit tests across 9 test suites with 85%+ code coverage.
|
|
436
|
+
|
|
268
437
|
## Contributing
|
|
269
438
|
|
|
270
439
|
Contributions are welcome! Please read our [Contributing Guide](../../CONTRIBUTING.md) for details.
|
|
271
440
|
|
|
272
441
|
## License
|
|
273
442
|
|
|
274
|
-
|
|
443
|
+
Apache 2.0 © [HazelJS](https://hazeljs.com)
|
|
275
444
|
|
|
276
445
|
## Links
|
|
277
446
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consul-backend.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/consul-backend.test.ts"],"names":[],"mappings":"AAAA;;;GAGG"}
|