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
Copy file name to clipboardExpand all lines: pages/spicedb/concepts/datastores.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ In order to reduce operational complexity, SpiceDB leverages existing, popular s
6
6
7
7
AuthZed has standardized our managed services on CockroachDB, but we give self-hosted customers the option to pick the datastore that best suits their operational requirements.
8
8
9
-
-[CockroachDB](#cockroachdb) - Recomended for self hosted deployments with high throughput and/or multi-region requirements
9
+
-[CockroachDB](#cockroachdb) - Recommended for self hosted deployments with high throughput and/or multi-region requirements
10
10
-[Cloud Spanner](#cloud-spanner) - Recommended for self-hosted Google Cloud deployments
11
11
-[PostgreSQL](#postgresql) - Recommended for self-hosted single-region deployments
12
12
-[MySQL](#mysql) - Not recommended; only use if you cannot use PostgreSQL
@@ -93,7 +93,7 @@ The available strategies are:
93
93
| --- | --- |
94
94
|`static` (default) | All writes overlap to guarantee safety at the cost of write throughput |
95
95
|`prefix`| Only writes that contain objects with same prefix overlap (e.g. `tenant1/user` and `tenant2/user` can be written in concurrently) |
96
-
|`request`| Only writes with the same `io.spicedb.requestoverlapkey` header overlap enabling applications to decide on-the-fly which writes have causual dependencies. Writes without any header act the same as `insecure`. |
96
+
|`request`| Only writes with the same `io.spicedb.requestoverlapkey` header overlap enabling applications to decide on-the-fly which writes have causal dependencies. Writes without any header act the same as `insecure`. |
97
97
|`insecure`| No writes overlap, providing the best write throughput, but possibly leaving you vulnerable to the [New Enemy Problem]|
98
98
99
99
For more information, refer to the [CockroachDB datastore README][crdb-readme] or our blog post "[The One Crucial Difference Between Spanner and CockroachDB][crdb-blog]".
@@ -257,7 +257,7 @@ Because this counter is instance-specific, there are ways in which the data in t
257
257
Two concrete examples are the use of `pg_dump` and `pg_restore` to transfer data between an old instance and a new instance and setting up
258
258
logical replication between a previously-existing instance and a newly-created instance.
259
259
260
-
If you encounter this, SpiceDB can behave as though there is no schema written, because the data (including the schema) is associated with a future transaction ID and therefore isn't "visible" to Spicedb.
260
+
If you encounter this, SpiceDB can behave as though there is no schema written, because the data (including the schema) is associated with a future transaction ID and therefore isn't "visible" to SpiceDB.
261
261
If you run into this issue, the fix is [documented here](https://authzed.com/docs/spicedb/concepts/commands#reference-spicedb-datastore-repair)
Copy file name to clipboardExpand all lines: pages/spicedb/getting-started/faq.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ SpiceDB is a database designed to be integrated into applications.
25
25
There are some organizations with homegrown IT use-cases that use SpiceDB.
26
26
However, for most IT use cases, this is probably more low-level than what you need.
27
27
28
-
We recommend looking into tools designed around specific IT workflows such as auditing ([Orca], [PrismaCloud]), goverance, access management ([Indent], [ConductorOne]).
28
+
We recommend looking into tools designed around specific IT workflows such as auditing ([Orca], [PrismaCloud]), governance, access management ([Indent], [ConductorOne]).
Copy file name to clipboardExpand all lines: pages/spicedb/modeling/developing-a-schema.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -371,7 +371,7 @@ of relations.
371
371
372
372
### Adding an administrator user
373
373
374
-
Now that we've declared that all users in `administrator` on the organization are also granted the `view` permission, let's define at least one user in our test data to be an adminstrator:
374
+
Now that we've declared that all users in `administrator` on the organization are also granted the `view` permission, let's define at least one user in our test data to be an administrator:
0 commit comments