The eXtremeDB disk manager supports asynchronous I/O and different multi-file formats as described in the following sections.
Asynchronous file I/O
By default, AIO is disabled. In order to use the asynchronous I/O mode, the application sets the
DB_USE_AIObit in theDatabase.Parameters.modebitmask. The default parameters for AIO aremax_queue_length=10007(the size of the asynchronous transaction buffer) andn_workers=1(the number of worker threads writing data to the persistent media.) If these parameters need to be altered the Database methodaioStart()must be called after the Database constructor but before the Database methodOpen(). TheaioStart()API signature is as follows:public static void aioStart(long max_queue_length, long n_workers);And when closing the database, AIO processing should be closed explicitly by calling Database method
aioStop(). For example:Database db = new Database(Database.MCO_CFG_DISK_SUPPORT); Database.Parameters params = new Database.Parameters(); Database.Device devs[]; ... params.mode |= Database.DB_USE_AIO; ... db.aioStart(1000,2); db.Open("opendb", params, devs); ... // Database processing db.aioStop();By default, one AIO thread is started for each database and the default queue size is set to 10007. Sometimes it could be beneficial to change the number of AIO threads (for example if the database is comprised of multiple physical IO devices, or is resided on a RAID) and/or the queue size. However note that the number of I/O threads won't exceed the number of databases created in a process, regardless of the value of worker's threads passed by the application (the runtime does not allow more than one AIO thread to serve a database)
(Applications do not need to call either of these methods,
aioStart()oraioStop(), if the default values are acceptable.)
Multi-file databases
Multi-file devices are defined in the same manner as other persistent memory devices except that they are of type
MultiFileDeviceorRaidDevice.For multifile implementations, segments can be added at runtime by means of Database method
extend(). Note that multifile segments cannot be removed.