2
2
3
3
import ai .wanaku .api .types .management .State ;
4
4
import io .quarkus .arc .lookup .LookupIfProperty ;
5
- import io .quarkus .arc .properties .IfBuildProperty ;
6
5
import io .valkey .StreamEntryID ;
7
6
import io .valkey .params .XAddParams ;
8
7
import io .valkey .resps .StreamEntry ;
26
25
import java .util .List ;
27
26
import java .util .Map ;
28
27
import java .util .Set ;
28
+
29
+ import org .eclipse .microprofile .config .inject .ConfigProperty ;
29
30
import org .jboss .logging .Logger ;
30
31
31
32
/**
@@ -48,6 +49,15 @@ public class ValkeyRegistry implements ServiceRegistry {
48
49
@ Inject
49
50
JedisPool jedisPool ;
50
51
52
+ /**
53
+ * In case of a deregister event is not triggered (for example, kill -9),
54
+ * The entry in Valkey will be removed after expireTime.
55
+ *
56
+ * NB {wanaku.service.expire-time} > {wanaku.service.provider.registration.interval}
57
+ */
58
+ @ ConfigProperty (name = "wanaku.service.expire-time" , defaultValue = "60" )
59
+ private int expireTime ;
60
+
51
61
/**
52
62
* Registers a new service with the given configurations.
53
63
*
@@ -67,13 +77,17 @@ public void register(ServiceTarget serviceTarget, Map<String, String> configurat
67
77
LOG .infof ("Service %s with target %s registered" , serviceTarget .getService (), serviceTarget .toAddress ());
68
78
69
79
for (var entry : configurations .entrySet ()) {
70
- if (jedis .hget (serviceTarget .getService (), entry .getKey ()) == null ) {
80
+ if (! jedis .hexists (serviceTarget .getService (), entry .getKey ())) {
71
81
LOG .infof ("Registering configuration %s for service %s" , entry .getKey (), serviceTarget .getService ());
72
82
Configuration configuration = new Configuration ();
73
83
configuration .setDescription (entry .getValue ());
74
84
jedis .hset (serviceTarget .getService (), entry .getKey (), configuration .toJson ());
75
85
}
76
86
}
87
+
88
+ jedis .expire (serviceTarget .getService (), expireTime );
89
+ // Need to wait for https://github.com/valkey-io/valkey/issues/640
90
+ // jedis.expireMember(serviceKey, serviceTarget.getService(), EXPIRE_TIME);
77
91
} catch (Exception e ) {
78
92
LOG .errorf (e , "Failed to register service %s: %s" , serviceTarget .getService (), e .getMessage ());
79
93
}
@@ -176,7 +190,9 @@ public Map<String, Service> getEntries(ServiceType serviceType) {
176
190
for (String key : services ) {
177
191
Service service = newService (jedis , key );
178
192
179
- entries .put (key , service );
193
+ if (service != null ) {
194
+ entries .put (key , service );
195
+ }
180
196
}
181
197
182
198
} catch (Exception e ) {
@@ -223,8 +239,15 @@ private static Service newService(Jedis jedis, String key) {
223
239
* @return A Service object representing the created service.
224
240
*/
225
241
private static Service toService (Jedis jedis , String key , Set <String > configs ) {
242
+ String address = jedis .hget (key , ReservedKeys .WANAKU_TARGET_ADDRESS );
243
+ if (address == null ) {
244
+ return null ;
245
+ }
246
+
226
247
Service service = new Service ();
227
248
249
+ service .setTarget (address );
250
+
228
251
Map <String , Configuration > configurationMap = new HashMap <>();
229
252
230
253
for (String config : configs ) {
@@ -238,9 +261,6 @@ private static Service toService(Jedis jedis, String key, Set<String> configs) {
238
261
configurations .setConfigurations (configurationMap );
239
262
service .setConfigurations (configurations );
240
263
241
- String address = jedis .hget (key , ReservedKeys .WANAKU_TARGET_ADDRESS );
242
- service .setTarget (address );
243
-
244
264
return service ;
245
265
}
246
266
0 commit comments