-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathconfig-schema.json
More file actions
1533 lines (1533 loc) · 45.8 KB
/
Copy pathconfig-schema.json
File metadata and controls
1533 lines (1533 loc) · 45.8 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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Root",
"type": "object",
"oneOf": [
{
"type": "object",
"required": [
"postgres"
],
"properties": {
"postgres": {
"$ref": "#/definitions/Postgres"
}
},
"additionalProperties": false
},
{
"type": "object",
"required": [
"file_system"
],
"properties": {
"file_system": {
"$ref": "#/definitions/FileSystem"
}
},
"additionalProperties": false
}
],
"properties": {
"api_peer": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/ApiPeer"
},
{
"type": "null"
}
]
},
"auth": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Auth"
},
{
"type": "null"
}
]
},
"cache": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Cache"
},
{
"type": "null"
}
]
},
"clickhouse": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/ClickHouse"
},
{
"type": "null"
}
]
},
"guard": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Guard"
},
{
"type": "null"
}
]
},
"logs": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Logs"
},
{
"type": "null"
}
]
},
"metrics": {
"default": {
"host": null,
"port": null
},
"allOf": [
{
"$ref": "#/definitions/Metrics"
}
]
},
"pegboard": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Pegboard"
},
{
"type": "null"
}
]
},
"pyroscope": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Pyroscope"
},
{
"type": "null"
}
]
},
"runtime": {
"default": {
"allow_version_rollback": null,
"force_shutdown_duration": null,
"gasoline_prune_eligibility_duration": null,
"gasoline_prune_interval_duration": null,
"guard_shutdown_duration": null,
"worker_cpu_max": null,
"worker_load_shedding_beta": null,
"worker_load_shedding_curve": null,
"worker_shutdown_duration": null
},
"allOf": [
{
"$ref": "#/definitions/Runtime"
}
]
},
"sqlite": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Sqlite"
},
{
"type": "null"
}
]
},
"telemetry": {
"default": {
"enabled": true
},
"allOf": [
{
"$ref": "#/definitions/Telemetry"
}
]
},
"topology": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Topology"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false,
"definitions": {
"ApiPeer": {
"description": "Configuration for the private API service.",
"type": "object",
"properties": {
"host": {
"type": [
"string",
"null"
],
"format": "ip"
},
"port": {
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
}
},
"additionalProperties": false
},
"Auth": {
"type": "object",
"required": [
"admin_token"
],
"properties": {
"admin_token": {
"$ref": "#/definitions/Secret<String>"
}
},
"additionalProperties": false
},
"Cache": {
"description": "Configuration for the cache layer.",
"type": "object",
"required": [
"enabled"
],
"properties": {
"driver": {
"anyOf": [
{
"$ref": "#/definitions/CacheDriver"
},
{
"type": "null"
}
]
},
"enabled": {
"type": "boolean"
}
},
"additionalProperties": false
},
"CacheDriver": {
"type": "string",
"enum": [
"in_memory"
]
},
"ClickHouse": {
"type": "object",
"required": [
"http_url",
"native_url",
"username"
],
"properties": {
"http_url": {
"description": "URL to the HTTP access port for ClickHouse.",
"type": "string",
"format": "uri"
},
"native_url": {
"description": "URL to the native access port for ClickHouse.",
"type": "string",
"format": "uri"
},
"password": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Secret<String>"
},
{
"type": "null"
}
]
},
"secure": {
"default": false,
"type": "boolean"
},
"username": {
"type": "string"
}
},
"additionalProperties": false
},
"Datacenter": {
"type": "object",
"required": [
"datacenter_label",
"is_leader",
"peer_url",
"public_url"
],
"properties": {
"datacenter_label": {
"type": "integer",
"format": "uint16",
"minimum": 0.0
},
"is_leader": {
"type": "boolean"
},
"name": {
"description": "When configuring `datacenters` via a hashmap this is automatically derived from the key. Required when configuring via list (which is deprecated)",
"default": "",
"type": "string"
},
"peer_url": {
"description": "URL of the api-peer service",
"type": "string",
"format": "uri"
},
"proxy_url": {
"description": "URL of the guard service that other datacenters can access privately. Goes to the same place as",
"type": [
"string",
"null"
],
"format": "uri"
},
"public_url": {
"description": "Public origin that can be used to connect to this region.",
"type": "string",
"format": "uri"
},
"valid_hosts": {
"description": "List of hosts that are valid to connect to this region with. This is used in regional endpoints to validate that incoming requests to this datacenter are going to a region-specific domain.\n\nIMPORTANT: Do not use a global origin that routes to multiple different regions. This will cause unpredictable behavior when requests are expected to go to a specific region.",
"default": null,
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"DatacentersRepr": {
"anyOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Datacenter"
}
},
{
"description": "Deprecated.",
"type": "array",
"items": {
"$ref": "#/definitions/Datacenter"
}
}
]
},
"EnvoyLoadBalancer": {
"oneOf": [
{
"description": "Current default. Finds the highest protocol version, then seeks from a random ping timestamp.",
"type": "object",
"required": [
"random_ping_timestamp"
],
"properties": {
"random_ping_timestamp": {
"type": "object",
"properties": {
"use_snapshot_read": {
"default": true,
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
{
"description": "Finds the highest protocol version, then chooses the newest fresh ping timestamp. This is purely for testing behavior that pins allocations to a single Envoy.",
"type": "object",
"required": [
"newest_ping_timestamp"
],
"properties": {
"newest_ping_timestamp": {
"type": "object",
"properties": {
"use_snapshot_read": {
"default": true,
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
{
"description": "Reads the full highest-version Envoy load-balancer range and chooses a random eligible Envoy.",
"type": "object",
"required": [
"random_full_range"
],
"properties": {
"random_full_range": {
"type": "object",
"properties": {
"use_snapshot_read": {
"default": true,
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
{
"description": "Hash-ring-based envoy selection backed by `EnvoyHashIdxKey`.\n\n`samples` controls the algorithm: - `1`: uniform random pick — draws one random ring pivot and returns the first fresh envoy. **Short-circuits past the `SlotsKey` read**, so this variant is strictly cheaper than `samples >= 2`. Pick when actor cost per envoy is uniform or measurements don't justify load awareness. - `>= 2`: power-of-K choices. Draws K independent random pivots, reads `SlotsKey` for each, picks min slots with uniform random tiebreak. Recommended default.",
"type": "object",
"required": [
"hash"
],
"properties": {
"hash": {
"type": "object",
"properties": {
"max_scan": {
"description": "Maximum stale entries walked per `scan_for_fresh` call before aborting and returning `None`. Circuit breaker against pathological drain scenarios. Default 16. Range 1..=256.",
"default": 16,
"type": "integer",
"format": "uint32",
"minimum": 0.0
},
"samples": {
"description": "Number of independent ring samples per allocation. `1` = uniform pick (no slot read), `>= 2` = power-of-K-choices.",
"default": 2,
"type": "integer",
"format": "uint8",
"minimum": 0.0
},
"slot_jitter": {
"description": "Additive random integer added to each candidate's slot count before the min-slot comparison. Decorrelates concurrent allocators reading the same stale `SlotsKey` snapshot. Only relevant when `samples >= 2`. `0` disables. Range 0..=64. Default 4.\n\nSee `slot_jitter` block in `engine/packages/pegboard/src/workflows/actor2/alloc_serverful/hash.rs` for how the default was sized.",
"default": 4,
"type": "integer",
"format": "uint8",
"minimum": 0.0
},
"use_snapshot_read": {
"default": true,
"type": "boolean"
},
"virtual_nodes": {
"default": 8,
"type": "integer",
"format": "uint8",
"minimum": 0.0
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
]
},
"FileSystem": {
"type": "object",
"required": [
"path"
],
"properties": {
"path": {
"type": "string"
}
},
"additionalProperties": false
},
"Guard": {
"type": "object",
"properties": {
"actor_force_wake_pending_timeout_ms": {
"description": "Timeout sent with actor force-wake requests in milliseconds.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"actor_ready_timeout_ms": {
"description": "Timeout for waiting for an actor to become ready in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"enable_websocket_health_route": {
"description": "Enables the internal websocket health route for debug and latency testing. This is intended for websocket ping/pong verification and should remain disabled in normal deployments.",
"type": [
"boolean",
"null"
]
},
"host": {
"description": "Host for HTTP traffic",
"type": [
"string",
"null"
],
"format": "ip"
},
"http_max_request_body_size": {
"description": "Max HTTP request body size in bytes (first line of defense).",
"type": [
"integer",
"null"
],
"format": "uint",
"minimum": 0.0
},
"https": {
"description": "Enable & configure HTTPS",
"anyOf": [
{
"$ref": "#/definitions/Https"
},
{
"type": "null"
}
]
},
"port": {
"description": "Port for HTTP traffic",
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
},
"route_api_public_timeout_ms": {
"description": "Timeout for resolving api-public routes in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_auth_check_timeout_ms": {
"description": "Timeout for guard-owned route authorization checks in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_cache_ttl_ms": {
"description": "TTL for cached route lookups in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_compute_timeout_ms": {
"description": "Timeout for resolving compute routes in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_dispatch_timeout_ms": {
"description": "Timeout for dispatching to each guard routing module in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_pegboard_auth_check_timeout_ms": {
"description": "Timeout for pegboard actor route authorization checks in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_pegboard_fetch_actor_timeout_ms": {
"description": "Timeout for fetching pegboard actor routing state in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_pegboard_resolve_query_timeout_ms": {
"description": "Timeout for resolving pegboard actor query routes in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_pegboard_subscribe_timeout_ms": {
"description": "Timeout for subscribing to pegboard actor routing events in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_pegboard_wake_signal_timeout_ms": {
"description": "Timeout for sending pegboard actor wake signals in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"route_timeout_ms": {
"description": "Backstop timeout for route resolution in milliseconds. Primary timeout signals live inside each guard routing phase.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"tcp_nodelay": {
"description": "Enables TCP_NODELAY on accepted Guard sockets.",
"type": [
"boolean",
"null"
]
},
"trace_propagation": {
"description": "Enables W3C trace context propagation (extract from incoming requests, inject into upstream requests/websockets).",
"type": [
"boolean",
"null"
]
}
},
"additionalProperties": false
},
"Https": {
"type": "object",
"required": [
"port",
"tls"
],
"properties": {
"port": {
"type": "integer",
"format": "uint16",
"minimum": 0.0
},
"tls": {
"$ref": "#/definitions/Tls"
}
},
"additionalProperties": false
},
"Logs": {
"type": "object",
"properties": {
"redirect_logs_dir": {
"default": null,
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
},
"Memory": {
"type": "object",
"properties": {
"channel": {
"default": "default",
"type": "string"
},
"disable_memory_optimization": {
"description": "When true, force every UPS publish to round-trip through the memory driver instead of taking the in-process fast path for subjects that have a local subscriber on the same engine pod. Opt-in diagnostic; default false.",
"default": false,
"type": "boolean"
}
},
"additionalProperties": false
},
"Metrics": {
"description": "Configuration for the metrics service.",
"type": "object",
"properties": {
"host": {
"type": [
"string",
"null"
],
"format": "ip"
},
"port": {
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
}
},
"additionalProperties": false
},
"Nats": {
"type": "object",
"required": [
"addresses"
],
"properties": {
"addresses": {
"type": "array",
"items": {
"type": "string"
}
},
"client_capacity": {
"description": "Capacity of the async-nats client command queue.\n\nWhen this fills, client operations such as subscribe, publish, and drain wait until the connection task catches up.",
"default": 1048576,
"type": "integer",
"format": "uint",
"minimum": 0.0
},
"disable_memory_optimization": {
"description": "When true, force every UPS publish to round-trip through NATS instead of taking the in-process fast path for subjects that have a local subscriber on the same engine pod. Opt-in diagnostic; default false.",
"default": false,
"type": "boolean"
},
"password": {
"default": null,
"anyOf": [
{
"$ref": "#/definitions/Secret<String>"
},
{
"type": "null"
}
]
},
"port": {
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
},
"subscription_capacity": {
"description": "Capacity of each individual NATS subscriber message buffer.\n\nWhen this fills, async-nats drops the message and emits `SlowConsumer`. Rivet logs this as `nats slow consumer`.",
"default": 262144,
"type": "integer",
"format": "uint",
"minimum": 0.0
},
"username": {
"default": null,
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
},
"Pegboard": {
"type": "object",
"properties": {
"actor_allocation_candidate_sample_size": {
"description": "Amount of runners to query from the allocation queue and choose at random when allocating an actor.",
"type": [
"integer",
"null"
],
"format": "uint",
"minimum": 0.0
},
"actor_allocation_threshold": {
"description": "How long to wait for an ack response from the outbound request layer before setting actor as lost.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"actor_create_rate_limit_drip_rate_ms": {
"description": "Time to regain one actor creation token per namespace.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"actor_create_rate_limit_requests": {
"description": "Max burst of actor creations per namespace before throttling.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"actor_retry_duration_threshold": {
"description": "How long to wait after starting to attempt to reallocate before before setting actor to sleep.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"actor_start_threshold": {
"description": "How long to wait after creating and not receiving a starting state before setting actor as lost.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"actor_stop_threshold": {
"description": "How long to wait after stopping and not receiving a stop state before setting actor as lost.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"base_retry_timeout": {
"description": "Time to delay an actor from rescheduling after a rescheduling failure.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint",
"minimum": 0.0
},
"default_metadata_poll_interval": {
"description": "Default metadata poll interval for serverless runners when not specified in runner config.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"envoy_eligible_threshold": {
"description": "How long after last ping before considering a envoy ineligible for allocation.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"envoy_event_demuxer_gc_interval": {
"description": "GC interval for actor event demuxer in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"envoy_event_demuxer_max_last_seen_threshold": {
"description": "Max time since last seen before actor is considered stale, in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"envoy_expire_scheduler_max_concurrent_expires": {
"description": "Maximum concurrent background expire operations spawned by the read-path envoy expire scheduler.",
"type": [
"integer",
"null"
],
"format": "uint",
"minimum": 0.0
},
"envoy_expire_scheduler_max_pending": {
"description": "Maximum pending envoys tracked by the read-path envoy expire scheduler.",
"type": [
"integer",
"null"
],
"format": "uint",
"minimum": 0.0
},
"envoy_load_balancer": {
"description": "Strategy for choosing an Envoy when allocating a serverful actor.",
"anyOf": [
{
"$ref": "#/definitions/EnvoyLoadBalancer"
},
{
"type": "null"
}
]
},
"envoy_lost_threshold": {
"description": "How long to wait before considering an envoy lost and evicting all of its actors.\n\nUnit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"envoy_max_response_payload_size": {
"description": "Max response payload size in bytes from actors.",
"type": [
"integer",
"null"
],
"format": "uint",
"minimum": 0.0
},
"envoy_ping_timeout": {
"description": "Max time since last pong before the envoy connection is terminated. Unit is in milliseconds.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"envoy_update_ping_interval": {
"description": "Ping interval for envoy updates in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"envoy_websocket_rate_limit_drip_rate_us": {
"description": "Time to regain one inbound WebSocket message token on a single envoy connection.\n\nUnit is in microseconds. The envoy connection multiplexes every actor on a runner, so the sustained ceiling is far higher than the per-client gateway limit and needs sub-millisecond granularity to express.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"envoy_websocket_rate_limit_requests": {
"description": "Max burst of inbound WebSocket messages on a single envoy connection before throttling.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"gateway_gc_interval_ms": {
"description": "GC interval for in-flight requests in milliseconds.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0
},
"gateway_http_max_request_body_size": {
"description": "Max HTTP request body size in bytes for requests to actors.",
"type": [
"integer",
"null"
],
"format": "uint",
"minimum": 0.0
},
"gateway_hws_max_pending_size": {
"description": "Max pending message buffer size for hibernating WebSockets in bytes.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0.0