pack_write_chunk_size
A transaction is broken up into chunks as it is written to the pack. This option specifies the abstract size of that chunk in bytes. Setting the value too low may result in inefficient database open/recovery, and/or inefficient vacuuming.
- Default Value
- If the
pack_write_chunk_size
option is not defined, the default value of131072
is used.
- Example
-
pack_write_chunk_size=131072
- Database Configuration Options
This option key is associated with the RDM_DB handle (or RDM_CPP::Db for C++) and can be set using one of the following functions:
- SQLSetConnectAttr()
- rdm_dbSetOption()
- rdm_dbSetOptions()
- RDM_CPP::Db::SetOption()
- RDM_CPP::Db::SetOptions()