Skip to content

Commit ad44fe9

Browse files
committed
Update fdb 620 includes to 6.2.20
1 parent fd63c3c commit ad44fe9

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

foundationdb-gen/include/620/fdb.options

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ description is not currently required but encouraged.
158158
defaultFor="500"/>
159159
<Option name="transaction_retry_limit" code="501"
160160
paramType="Int" paramDescription="number of times to retry"
161-
description="Set a timeout in milliseconds which, when elapsed, will cause a transaction automatically to be cancelled. This sets the ``retry_limit`` option of each transaction created by this database. See the transaction option description for more information."
161+
description="Set a maximum number of retries after which additional calls to ``onError`` will throw the most recently seen error code. This sets the ``retry_limit`` option of each transaction created by this database. See the transaction option description for more information."
162162
defaultFor="501"/>
163163
<Option name="transaction_max_retry_delay" code="502"
164164
paramType="Int" paramDescription="value in milliseconds of maximum delay"
@@ -172,7 +172,7 @@ description is not currently required but encouraged.
172172
description="The read version will be committed, and usually will be the latest committed, but might not be the latest committed in the event of a simultaneous fault and misbehaving clock."
173173
defaultFor="20"/>
174174
<Option name="transaction_include_port_in_address" code="505"
175-
description="Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 700, and this option will be deprecated."
175+
description="Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 630, and this option will be deprecated."
176176
defaultFor="23"/>
177177
</Scope>
178178

@@ -183,7 +183,7 @@ description is not currently required but encouraged.
183183
description="The read version will be committed, and usually will be the latest committed, but might not be the latest committed in the event of a simultaneous fault and misbehaving clock."/>
184184
<Option name="causal_read_disable" code="21" />
185185
<Option name="include_port_in_address" code="23"
186-
description="Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 700, and this option will be deprecated." />
186+
description="Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 630, and this option will be deprecated." />
187187
<Option name="next_write_no_write_conflict_range" code="30"
188188
description="The next write performed on this transaction will not generate a write conflict range. As a result, other transactions which read the key(s) being modified by the next write will not conflict with this transaction. Care needs to be taken when using this option on a transaction that is shared between multiple threads. When setting this option, write conflict ranges will be disabled on the next write operation, regardless of what thread it is on." />
189189
<Option name="commit_on_first_proxy" code="40"
@@ -217,7 +217,7 @@ description is not currently required but encouraged.
217217
<Option name="debug_transaction_identifier" code="403" paramType="String" paramDescription="String identifier to be used when tracing or profiling this transaction. The identifier must not exceed 100 characters."
218218
description="Sets a client provided identifier for the transaction that will be used in scenarios like tracing or profiling. Client trace logging or transaction profiling must be separately enabled." />
219219
<Option name="log_transaction" code="404"
220-
description="Enables tracing for this transaction and logs results to the client trace logs. The DEBUG_TRANSACTION_IDENTIFIER option must be set before using this option, and client trace logging must be enabled and to get log output." />
220+
description="Enables tracing for this transaction and logs results to the client trace logs. The DEBUG_TRANSACTION_IDENTIFIER option must be set before using this option, and client trace logging must be enabled to get log output." />
221221
<Option name="transaction_logging_max_field_length" code="405" paramType="Int" paramDescription="Maximum length of escaped key and value fields."
222222
description="Sets the maximum escaped length of key and value fields to be logged to the trace file via the LOG_TRANSACTION option, after which the field will be truncated. A negative value disables truncation." />
223223
<Option name="timeout" code="500"
@@ -240,7 +240,7 @@ description is not currently required but encouraged.
240240
<Option name="snapshot_ryw_disable" code="601"
241241
description="Snapshot read operations will not see the results of writes done in the same transaction. This was the default behavior prior to API version 300." />
242242
<Option name="lock_aware" code="700"
243-
description="The transaction can read and write to locked databases, and is resposible for checking that it took the lock."/>
243+
description="The transaction can read and write to locked databases, and is responsible for checking that it took the lock."/>
244244
<Option name="used_during_commit_protection_disable" code="701"
245245
description="By default, operations that are performed on a transaction while it is being committed will not only fail themselves, but they will attempt to fail other in-flight operations (such as the commit) as well. This behavior is intended to help developers discover situations where operations could be unintentionally executed after the transaction has been reset. Setting this option removes that protection, causing only the offending operation to fail."/>
246246
<Option name="read_lock_aware" code="702"
@@ -258,7 +258,7 @@ description is not currently required but encouraged.
258258
<Option name="want_all" code="-2"
259259
description="Client intends to consume the entire range and would like it all transferred as early as possible." />
260260
<Option name="iterator" code="-1"
261-
description="The default. The client doesn't know how much of the range it is likely to used and wants different performance concerns to be balanced. Only a small portion of data is transferred to the client initially (in order to minimize costs if the client doesn't read the entire range), and as the caller iterates over more items in the range larger batches will be transferred in order to minimize latency." />
261+
description="The default. The client doesn't know how much of the range it is likely to used and wants different performance concerns to be balanced. Only a small portion of data is transferred to the client initially (in order to minimize costs if the client doesn't read the entire range), and as the caller iterates over more items in the range larger batches will be transferred in order to minimize latency. After enough iterations, the iterator mode will eventually reach the same byte limit as ``WANT_ALL``" />
262262
<Option name="exact" code="0"
263263
description="Infrequently used. The client has passed a specific row limit and wants that many rows delivered in a single batch. Because of iterator operation in client drivers make request batches transparent to the user, consider ``WANT_ALL`` StreamingMode instead. A row limit must be specified if this mode is used." />
264264
<Option name="small" code="1"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.2.10
1+
6.2.20

foundationdb-sys/include/620/fdb_c_options.g.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ typedef enum {
186186
// Parameter: (Int) value in milliseconds of timeout
187187
FDB_DB_OPTION_TRANSACTION_TIMEOUT=500,
188188

189-
// Set a timeout in milliseconds which, when elapsed, will cause a transaction automatically to be cancelled. This sets the ``retry_limit`` option of each transaction created by this database. See the transaction option description for more information.
189+
// Set a maximum number of retries after which additional calls to ``onError`` will throw the most recently seen error code. This sets the ``retry_limit`` option of each transaction created by this database. See the transaction option description for more information.
190190
// Parameter: (Int) number of times to retry
191191
FDB_DB_OPTION_TRANSACTION_RETRY_LIMIT=501,
192192

@@ -202,7 +202,7 @@ typedef enum {
202202
// Parameter: Option takes no parameter
203203
FDB_DB_OPTION_TRANSACTION_CAUSAL_READ_RISKY=504,
204204

205-
// Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 700, and this option will be deprecated.
205+
// Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 630, and this option will be deprecated.
206206
// Parameter: Option takes no parameter
207207
FDB_DB_OPTION_TRANSACTION_INCLUDE_PORT_IN_ADDRESS=505
208208
} FDBDatabaseOption;
@@ -220,7 +220,7 @@ typedef enum {
220220
// Parameter: Option takes no parameter
221221
FDB_TR_OPTION_CAUSAL_READ_DISABLE=21,
222222

223-
// Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 700, and this option will be deprecated.
223+
// Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 630, and this option will be deprecated.
224224
// Parameter: Option takes no parameter
225225
FDB_TR_OPTION_INCLUDE_PORT_IN_ADDRESS=23,
226226

@@ -280,7 +280,7 @@ typedef enum {
280280
// Parameter: (String) String identifier to be used when tracing or profiling this transaction. The identifier must not exceed 100 characters.
281281
FDB_TR_OPTION_DEBUG_TRANSACTION_IDENTIFIER=403,
282282

283-
// Enables tracing for this transaction and logs results to the client trace logs. The DEBUG_TRANSACTION_IDENTIFIER option must be set before using this option, and client trace logging must be enabled and to get log output.
283+
// Enables tracing for this transaction and logs results to the client trace logs. The DEBUG_TRANSACTION_IDENTIFIER option must be set before using this option, and client trace logging must be enabled to get log output.
284284
// Parameter: Option takes no parameter
285285
FDB_TR_OPTION_LOG_TRANSACTION=404,
286286

@@ -312,7 +312,7 @@ typedef enum {
312312
// Parameter: Option takes no parameter
313313
FDB_TR_OPTION_SNAPSHOT_RYW_DISABLE=601,
314314

315-
// The transaction can read and write to locked databases, and is resposible for checking that it took the lock.
315+
// The transaction can read and write to locked databases, and is responsible for checking that it took the lock.
316316
// Parameter: Option takes no parameter
317317
FDB_TR_OPTION_LOCK_AWARE=700,
318318

@@ -333,7 +333,7 @@ typedef enum {
333333
// Client intends to consume the entire range and would like it all transferred as early as possible.
334334
FDB_STREAMING_MODE_WANT_ALL=-2,
335335

336-
// The default. The client doesn't know how much of the range it is likely to used and wants different performance concerns to be balanced. Only a small portion of data is transferred to the client initially (in order to minimize costs if the client doesn't read the entire range), and as the caller iterates over more items in the range larger batches will be transferred in order to minimize latency.
336+
// The default. The client doesn't know how much of the range it is likely to used and wants different performance concerns to be balanced. Only a small portion of data is transferred to the client initially (in order to minimize costs if the client doesn't read the entire range), and as the caller iterates over more items in the range larger batches will be transferred in order to minimize latency. After enough iterations, the iterator mode will eventually reach the same byte limit as ``WANT_ALL``
337337
FDB_STREAMING_MODE_ITERATOR=-1,
338338

339339
// Infrequently used. The client has passed a specific row limit and wants that many rows delivered in a single batch. Because of iterator operation in client drivers make request batches transparent to the user, consider ``WANT_ALL`` StreamingMode instead. A row limit must be specified if this mode is used.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.2.10
1+
6.2.20

0 commit comments

Comments
 (0)