-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathRestateComponentsProperties.java
More file actions
353 lines (325 loc) · 12.6 KB
/
RestateComponentsProperties.java
File metadata and controls
353 lines (325 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
// Copyright (c) 2023 - Restate Software, Inc., Restate GmbH
//
// This file is part of the Restate Java SDK,
// which is released under the MIT license.
//
// You can find a copy of the license in file LICENSE in the root
// directory of this repository or package, or at
// https://github.com/restatedev/sdk-java/blob/main/LICENSE
package dev.restate.sdk.springboot;
import java.time.Duration;
import java.util.HashMap;
import java.util.Map;
import org.jspecify.annotations.Nullable;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Properties for configuring Restate services.
*
* <p>Top-level fields (e.g. {@code restate.inactivity-timeout}) act as defaults applied to all
* services. Per-service configuration in {@link #getComponents()} takes precedence over these
* defaults.
*
* <p>Example configuration in {@code application.properties}:
*
* <pre>{@code
* # Default configuration applied to all services
* restate.executor=myGlobalExecutor
* restate.inactivity-timeout=10m
* restate.retry-policy.max-attempts=5
*
* # Per-service configuration (overrides defaults)
* restate.components.MyService.executor=myServiceExecutor
* restate.components.MyService.inactivity-timeout=5m
* restate.components.MyService.abort-timeout=1m
* restate.components.MyService.idempotency-retention=1d
* restate.components.MyService.journal-retention=7d
* restate.components.MyService.ingress-private=false
* restate.components.MyService.enable-lazy-state=true
* restate.components.MyService.documentation=My service description
* restate.components.MyService.metadata.version=1.0
* restate.components.MyService.metadata.team=platform
* restate.components.MyService.retry-policy.initial-interval=100ms
* restate.components.MyService.retry-policy.exponentiation-factor=2.0
* restate.components.MyService.retry-policy.max-interval=10s
* restate.components.MyService.retry-policy.max-attempts=10
* restate.components.MyService.retry-policy.on-max-attempts=PAUSE
*
* # Per-handler configuration
* restate.components.MyService.handlers.myHandler.inactivity-timeout=5m
* restate.components.MyService.handlers.myHandler.ingress-private=true
* restate.components.MyService.handlers.myHandler.documentation=Handler description
* restate.components.MyService.handlers.myWorkflowHandler.workflow-retention=30d
* }</pre>
*/
@ConfigurationProperties(prefix = "restate")
public class RestateComponentsProperties {
@Nullable private String executor;
@Nullable private String documentation;
@Nullable private Map<String, String> metadata;
@Nullable private Duration inactivityTimeout;
@Nullable private Duration abortTimeout;
@Nullable private Duration idempotencyRetention;
@Nullable private Duration workflowRetention;
@Nullable private Duration journalRetention;
@Nullable private Boolean ingressPrivate;
@Nullable private Boolean enableLazyState;
@Nullable private RetryPolicyProperties retryPolicy;
// Map keyed by service name (e.g. restate.components.MyService.inactivity-timeout)
private Map<String, RestateComponentProperties> components = new HashMap<>();
/**
* Name of the {@link java.util.concurrent.Executor} bean to use for running handlers of all
* services. Can be overridden per-service in {@link #getComponents()}.
*
* <p><b>NOTE:</b> This option is only used for Java services, not Kotlin services.
*
* <p>If not specified, virtual threads are used for Java >= 21, otherwise {@link
* java.util.concurrent.Executors#newCachedThreadPool()} is used. See {@code
* HandlerRunner.Options.withExecutor()} for more details.
*/
public @Nullable String getExecutor() {
return executor;
}
/**
* Name of the {@link java.util.concurrent.Executor} bean to use for running handlers of all
* services. Can be overridden per-service in {@link #getComponents()}.
*
* <p><b>NOTE:</b> This option is only used for Java services, not Kotlin services.
*
* <p>If not specified, virtual threads are used for Java >= 21, otherwise {@link
* java.util.concurrent.Executors#newCachedThreadPool()} is used. See {@code
* HandlerRunner.Options.withExecutor()} for more details.
*/
public void setExecutor(@Nullable String executor) {
this.executor = executor;
}
/**
* Default documentation for all services, as shown in the UI, Admin REST API, and the generated
* OpenAPI documentation. Can be overridden per-service in {@link #getComponents()}.
*/
public @Nullable String getDocumentation() {
return documentation;
}
/**
* Default documentation for all services, as shown in the UI, Admin REST API, and the generated
* OpenAPI documentation. Can be overridden per-service in {@link #getComponents()}.
*/
public void setDocumentation(@Nullable String documentation) {
this.documentation = documentation;
}
/**
* Default metadata for all services, as propagated in the Admin REST API. Can be overridden
* per-service in {@link #getComponents()}.
*/
public @Nullable Map<String, String> getMetadata() {
return metadata;
}
/**
* Default metadata for all services, as propagated in the Admin REST API. Can be overridden
* per-service in {@link #getComponents()}.
*/
public void setMetadata(@Nullable Map<String, String> metadata) {
this.metadata = metadata;
}
/**
* Default inactivity timeout for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*
* @see RestateComponentProperties#getInactivityTimeout()
*/
public @Nullable Duration getInactivityTimeout() {
return inactivityTimeout;
}
/**
* Default inactivity timeout for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*/
public void setInactivityTimeout(@Nullable Duration inactivityTimeout) {
this.inactivityTimeout = inactivityTimeout;
}
/**
* Default abort timeout for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*
* @see RestateComponentProperties#getAbortTimeout()
*/
public @Nullable Duration getAbortTimeout() {
return abortTimeout;
}
/**
* Default abort timeout for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*/
public void setAbortTimeout(@Nullable Duration abortTimeout) {
this.abortTimeout = abortTimeout;
}
/**
* Default idempotency retention for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*
* @see RestateComponentProperties#getIdempotencyRetention()
*/
public @Nullable Duration getIdempotencyRetention() {
return idempotencyRetention;
}
/**
* Default idempotency retention for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*/
public void setIdempotencyRetention(@Nullable Duration idempotencyRetention) {
this.idempotencyRetention = idempotencyRetention;
}
/**
* Default workflow retention for all workflow services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*
* @see RestateComponentProperties#getWorkflowRetention()
*/
public @Nullable Duration getWorkflowRetention() {
return workflowRetention;
}
/**
* Default workflow retention for all workflow services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*/
public void setWorkflowRetention(@Nullable Duration workflowRetention) {
this.workflowRetention = workflowRetention;
}
/**
* Default journal retention for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*
* @see RestateComponentProperties#getJournalRetention()
*/
public @Nullable Duration getJournalRetention() {
return journalRetention;
}
/**
* Default journal retention for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*/
public void setJournalRetention(@Nullable Duration journalRetention) {
this.journalRetention = journalRetention;
}
/**
* Default ingress-private setting for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*
* @see RestateComponentProperties#getIngressPrivate()
*/
public @Nullable Boolean getIngressPrivate() {
return ingressPrivate;
}
/**
* Default ingress-private setting for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*/
public void setIngressPrivate(@Nullable Boolean ingressPrivate) {
this.ingressPrivate = ingressPrivate;
}
/**
* Default lazy-state setting for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*
* @see RestateComponentProperties#getEnableLazyState()
*/
public @Nullable Boolean getEnableLazyState() {
return enableLazyState;
}
/**
* Default lazy-state setting for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.4, otherwise service discovery will fail.
*/
public void setEnableLazyState(@Nullable Boolean enableLazyState) {
this.enableLazyState = enableLazyState;
}
/**
* Default retry policy for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.5, otherwise service discovery will fail.
*
* @see RestateComponentProperties#getRetryPolicy()
*/
public @Nullable RetryPolicyProperties getRetryPolicy() {
return retryPolicy;
}
/**
* Default retry policy for all services. Can be overridden per-service in {@link
* #getComponents()}.
*
* <p><b>NOTE:</b> You can set this field only if you register services against restate-server >=
* 1.5, otherwise service discovery will fail.
*/
public void setRetryPolicy(@Nullable RetryPolicyProperties retryPolicy) {
this.retryPolicy = retryPolicy;
}
/**
* Per-component configuration, keyed by component/service name. Overrides any top-level defaults.
*
* <p>Example configuration in {@code application.properties}:
*
* <pre>
* restate.components.MyService.inactivity-timeout=10m
* restate.components.MyService.handlers.myHandler.ingress-private=true
* </pre>
*/
public Map<String, RestateComponentProperties> getComponents() {
return components;
}
/**
* Per-component configuration, keyed by component/service name. Overrides any top-level defaults.
*
* <p>Example configuration in {@code application.properties}:
*
* <pre>
* restate.components.MyService.inactivity-timeout=10m
* restate.components.MyService.handlers.myHandler.ingress-private=true
* </pre>
*/
public void setComponents(Map<String, RestateComponentProperties> components) {
this.components = components;
}
}