You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--skip-release-check if true, skips checking for new SpiceDB releases
310
318
```
311
319
320
+
321
+
312
322
## Reference: `spicedb lsp`
313
323
314
324
serve language server protocol
@@ -332,17 +342,20 @@ spicedb lsp [flags]
332
342
--skip-release-check if true, skips checking for new SpiceDB releases
333
343
```
334
344
345
+
346
+
335
347
## Reference: `spicedb man`
336
348
337
349
Generate a man page for SpiceDB.
338
-
The output can be redirected to a file and installed to the system:
350
+
The output can be redirected to a file and installed to the system:
339
351
340
352
```
341
353
spicedb man > spicedb.1
342
354
sudo mv spicedb.1 /usr/share/man/man1/
343
355
sudo mandb # Update man page database
344
356
```
345
357
358
+
346
359
```
347
360
spicedb man
348
361
```
@@ -355,6 +368,8 @@ spicedb man
355
368
--skip-release-check if true, skips checking for new SpiceDB releases
356
369
```
357
370
371
+
372
+
358
373
## Reference: `spicedb serve`
359
374
360
375
start a SpiceDB server
@@ -473,6 +488,7 @@ spicedb serve [flags]
473
488
--dispatch-upstream-ca-path string local path to the TLS CA used when connecting to the dispatch cluster
474
489
--dispatch-upstream-timeout duration maximum duration of a dispatch call an upstream cluster before it times out (default 1m0s)
475
490
--enable-experimental-watchable-schema-cache enables the experimental schema cache, which uses the Watch API to keep the schema up to date
491
+
--enable-memory-protection-middleware enables middleware that does a best effort at preventing OOM (Out of Memory) if the server's memory usage is too high by returning ResourceExhausted on incoming requests (default true)
476
492
--enable-performance-insight-metrics enables performance insight metrics, which are used to track the latency of API calls by shape
477
493
--enable-revision-heartbeat enables support for revision heartbeat, used to create a synthetic revision on an interval defined by the quantization window (Postgres driver only) (default true)
478
494
--experimental-dispatch-secondary-maximum-primary-hedging-delays stringToString maximum number of hedging delays to use for each request type to delay the primary request. default is 5ms (default [])
@@ -487,7 +503,7 @@ spicedb serve [flags]
487
503
--grpc-max-workers uint32 set the number of workers for this server (0 value means 1 worker per request)
488
504
--grpc-network string network type to serve gRPC ("tcp", "tcp4", "tcp6", "unix", "unixpacket") (default "tcp")
489
505
--grpc-preshared-key strings (required) preshared key(s) that must be provided by clients to authenticate requests
490
-
--grpc-shutdown-grace-period duration amount of time after receiving sigint to continue serving
506
+
--grpc-shutdown-grace-period duration time limit given to the server to shutdown gracefully after it receives SIGINT or SIGTERM. A value of zero means no limit
491
507
--grpc-tls-cert-path string local path to the TLS certificate used to serve gRPC
492
508
--grpc-tls-key-path string local path to the TLS key used to serve gRPC
493
509
--http-addr string address to listen on to serve proxy (default ":8443")
@@ -542,6 +558,8 @@ spicedb serve [flags]
542
558
--skip-release-check if true, skips checking for new SpiceDB releases
543
559
```
544
560
561
+
562
+
545
563
## Reference: `spicedb serve-testing`
546
564
547
565
An in-memory spicedb server which serves completely isolated datastores per client-supplied auth token used.
@@ -603,6 +621,8 @@ spicedb serve-testing [flags]
603
621
--skip-release-check if true, skips checking for new SpiceDB releases
0 commit comments