2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 05:27:55 +00:00

added supported values and link to documentation

This commit is contained in:
Razvan Becheriu 2019-03-18 17:04:04 +02:00
parent d4519a8c4e
commit 90787d36d3
3 changed files with 60 additions and 0 deletions

View File

@ -49,10 +49,36 @@
"tcp-nodelay": true,
// This parameter configures consistency level. The default is "quorum".
// Supported values:
// - any
// - one
// - two
// - three
// - quorum
// - all
// - local-quorum
// - each-quorum
// - serial
// - local-serial
// - local-one
// See https://docs.datastax.com/en/cassandra/3.0/cassandra/dml/dmlConfigConsistency.html for more details.
"consistency": "quorum",
// This parameter configures serial consistency level which manages
// lightweight transaction isolation. The default is "serial".
// Supported values:
// - any
// - one
// - two
// - three
// - quorum
// - all
// - local-quorum
// - each-quorum
// - serial
// - local-serial
// - local-one
// See https://docs.datastax.com/en/cassandra/3.0/cassandra/dml/dmlConfigSerialConsistency.html for more details.
"serial-consistency": "serial"
},

View File

@ -48,10 +48,36 @@
"tcp-nodelay": true,
// This parameter configures consistency level. The default is "quorum".
// Supported values:
// - any
// - one
// - two
// - three
// - quorum
// - all
// - local-quorum
// - each-quorum
// - serial
// - local-serial
// - local-one
// See https://docs.datastax.com/en/cassandra/3.0/cassandra/dml/dmlConfigConsistency.html for more details.
"consistency": "quorum",
// This parameter configures serial consistency level which manages
// lightweight transaction isolation. The default is "serial".
// Supported values:
// - any
// - one
// - two
// - three
// - quorum
// - all
// - local-quorum
// - each-quorum
// - serial
// - local-serial
// - local-one
// See https://docs.datastax.com/en/cassandra/3.0/cassandra/dml/dmlConfigSerialConsistency.html for more details.
"serial-consistency": "serial"
},

View File

@ -598,12 +598,20 @@ The default value for Cassandra is 2000 ms.
<listitem><simpara>
<command>consistency</command> - configures consistency level.
The default is "quorum".
Supported values: any, one, two, three, quorum, all, local-quorum, each-quorum,
serial, local-serial, local-one.
See <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://docs.datastax.com/en/cassandra/3.0/cassandra/dml/dmlConfigConsistency.html">Cassandra consistency</link>
for more details.
</simpara></listitem>
<listitem><simpara>
<command>serial-consistency</command> - configures serial consistency
level which manages lightweight transaction isolation. The default is
"serial".
Supported values: any, one, two, three, quorum, all, local-quorum, each-quorum,
serial, local-serial, local-one.
See <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://docs.datastax.com/en/cassandra/3.0/cassandra/dml/dmlConfigSerialConsistency.html">Cassandra serial consistency</link>
for more details.
</simpara></listitem>
</itemizedlist>