Skip to content

Commit 312d27c

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 4f784af commit 312d27c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

versioned_docs/version-3.15/scalardb-cluster/scalardb-cluster-configurations.mdx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,24 @@ The following are additional configurations available for ScalarDB Cluster:
223223
| `scalar.db.consensus_commit.include_metadata.enabled` | When using Consensus Commit, if this is set to `true`, `Get` and `Scan` operations results will contain transaction metadata. To see the transaction metadata columns details for a given table, you can use the `DistributedTransactionAdmin.getTableMetadata()` method, which will return the table metadata augmented with the transaction metadata columns. Using this configuration can be useful to investigate transaction-related issues. | `false` |
224224
| `scalar.db.default_namespace_name` | The given namespace name will be used by operations that do not already specify a namespace. | |
225225

226+
### ABAC configurations
227+
228+
The following shows the attribute-based access control (ABAC) configurations for ScalarDB Cluster.
229+
230+
:::warning
231+
232+
- The single CRUD operation transaction manager does not support ABAC.
233+
- If you enable the ABAC feature, you will also need to do the following:
234+
- Enable authentication and authorization. For more information, see [Authenticate and Authorize Users](./scalardb-auth-with-sql.mdx).
235+
- Set [`scalar.db.cross_partition_scan.enabled`](#cross-partition-scan-configurations) to `true` for the system namespace (`scalardb` by default). This is because the ABAC feature performs cross-partition scans internally.
236+
237+
:::
238+
239+
| Name | Description | Default |
240+
|------------------------------------|---------------------------------------------|---------|
241+
| `scalar.db.cluster.abac.enabled` | Whether the ABAC feature is enabled. | `false` |
242+
| `scalar.db.cluster.abac.cache_expiration_time_millis` | The cache expiration time of the ABAC metadata cache in milliseconds. If you update the ABAC metadata, for example, the policy configuration, you might need to wait until this expiration time is reached for the changes to be applied. Setting this property to a low number may increase the number of accesses to the backend database and decrease performance. | `60000` (1 minute) |
243+
226244
## Client configurations
227245

228246
This section describes the general configurations for the ScalarDB Cluster client.

0 commit comments

Comments
 (0)