mirror of
https://github.com/MariaDB/server.git
synced 2025-08-10 20:41:44 +02:00

This controls which linux implementation to use for
innodb_use_native_aio=ON.
innodb_linux_aio=auto is equivalent to innodb_linux_aio=io_uring when
it is available, and falling back to innodb_linux_aio=aio when not.
Debian packaging is no longer aio exclusive or uring, so
for those older Debian or Ubuntu releases, its a remove_uring directive.
For more recent releases, add mandatory liburing for consistent packaging.
WITH_LIBAIO is now an independent option from WITH_URING.
LINUX_NATIVE_AIO preprocessor constant is renamed to HAVE_LIBAIO,
analogous to existing HAVE_URING.
tpool::is_aio_supported(): A common feature check.
is_linux_native_aio_supported(): Remove. This had originally been added in
mysql/mysql-server@0da310b69d in 2012
to fix an issue where io_submit() on CentOS 5.5 would return EINVAL
for a /tmp/#sql*.ibd file associated with CREATE TEMPORARY TABLE.
But, starting with commit 2e814d4702
InnoDB
temporary tables will be written to innodb_temp_data_file_path.
The 2012 commit said that the error could occur on "old kernels".
Any GNU/Linux distribution that we currently support should be based
on a newer Linux kernel; for example, Red Hat Enterprise Linux 7
was released in 2014.
tpool::create_linux_aio(): Wraps the Linux implementations:
create_libaio() and create_liburing(), each defined in separate
compilation units (aio_linux.cc, aio_libaio.cc, aio_liburing.cc).
The CMake definitions are simplified using target_sources() and
target_compile_definitions(), all available since CMake 2.8.12.
With this change, there is no need to include ${CMAKE_SOURCE_DIR}/tpool
or add TPOOL_DEFINES flags anymore, target_link_libraries(lib tpool)
does all that.
This is joint work with Daniel Black and Vladislav Vaintroub.
73 lines
2.2 KiB
C++
73 lines
2.2 KiB
C++
/* Copyright (C) 2025 MariaDB Corporation.
|
|
|
|
This program is free software; you can redistribute itand /or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/
|
|
|
|
/*
|
|
This file exports create_linux_aio() function which is used to create
|
|
an asynchronous IO implementation for Linux (currently either libaio or
|
|
uring).
|
|
*/
|
|
|
|
#include "tpool.h"
|
|
#include <stdio.h>
|
|
namespace tpool
|
|
{
|
|
|
|
// Forward declarations of aio implementations
|
|
#ifdef HAVE_LIBAIO
|
|
// defined in aio_libaio.cc
|
|
aio *create_libaio(thread_pool *pool, int max_io);
|
|
#endif
|
|
#if defined HAVE_URING
|
|
// defined in aio_uring.cc
|
|
aio *create_uring(thread_pool *pool, int max_io);
|
|
#endif
|
|
|
|
/*
|
|
@brief
|
|
Choose native linux aio implementation based on availability and user
|
|
preference.
|
|
|
|
@param pool - thread pool to use for aio operations
|
|
@param max_io - maximum number of concurrent io operations
|
|
@param impl - implementation to use, can be one of the following:
|
|
|
|
@returns
|
|
A pointer to the aio implementation object, or nullptr if no suitable
|
|
implementation is available.
|
|
|
|
If impl is OS_IO_DEFAULT, it will try uring first, fallback to libaio
|
|
If impl is OS_IO_URING or OS_IO_LIBAIO, it won't fallback
|
|
*/
|
|
aio *create_linux_aio(thread_pool *pool, int max_io, aio_implementation impl)
|
|
{
|
|
#ifdef HAVE_URING
|
|
if (impl != OS_IO_LIBAIO)
|
|
{
|
|
aio *ret= create_uring(pool, max_io);
|
|
if (ret)
|
|
return ret;
|
|
else if (impl != OS_IO_DEFAULT)
|
|
return nullptr; // uring is not available
|
|
else
|
|
fprintf(stderr, "create_uring failed: falling back to libaio\n");
|
|
}
|
|
#endif
|
|
#ifdef HAVE_LIBAIO
|
|
if (impl != OS_IO_URING)
|
|
return create_libaio(pool, max_io);
|
|
#endif
|
|
return nullptr;
|
|
}
|
|
} // namespace tpool
|