From 02844012b304ba80d1c48d51f6fe10bb622490cc Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Mon, 17 Mar 2025 18:51:33 -0400 Subject: aio: Basic subsystem initialization This commit just does the minimal wiring up of the AIO subsystem, added in the next commit, to the rest of the system. The next commit contains more details about motivation and architecture. This commit is kept separate to make it easier to review, separating the changes across the tree, from the implementation of the new subsystem. We discussed squashing this commit with the main commit before merging AIO, but there has been a mild preference for keeping it separate. Reviewed-by: Heikki Linnakangas Reviewed-by: Noah Misch Discussion: https://postgr.es/m/uvrtrknj4kdytuboidbhwclo4gxhswwcpgadptsjvjqcluzmah%40brqs62irg4dt --- doc/src/sgml/config.sgml | 51 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) (limited to 'doc/src') diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 3d62c8bd274..7ec18bb7627 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -2638,6 +2638,57 @@ include_dir 'conf.d' + + + io_max_concurrency (integer) + + io_max_concurrency configuration parameter + + + + + Controls the maximum number of I/O operations that one process can + execute simultaneously. + + + The default setting of -1 selects a number based + on and the maximum number of + processes (, , and ), but not more than + 64. + + + This parameter can only be set at server start. + + + + + + io_method (enum) + + io_method configuration parameter + + + + + Selects the method for executing asynchronous I/O. + Possible values are: + + + + sync (execute asynchronous-eligible I/O synchronously) + + + + + + This parameter can only be set at server start. + + + + -- cgit v1.2.3