# MariaDB Enterprise Server InnoDB I/O Threads

## Overview

Starting with MariaDB Enterprise Server 10.5 and MariaDB Community Server 10.5, the InnoDB I/O Threads were replaced by the asynchronous I/O functionality in the [InnoDB Background Thread Pool](/docs/server/server-usage/storage-engines/innodb/innodb-architecture-for-mariadb-enterprise-server/mariadb-enterprise-server-innodb-background-thread-pool.md).

## Feature Summary

| Feature        | Detail                                                                                                                                                                                                                                                                       | Resources                                                                                                                                                           |
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Thread         | InnoDB I/O Threads                                                                                                                                                                                                                                                           |                                                                                                                                                                     |
| Storage Engine | InnoDB                                                                                                                                                                                                                                                                       |                                                                                                                                                                     |
| Purpose        | Reading data from disk / Writing data to disk                                                                                                                                                                                                                                |                                                                                                                                                                     |
| Availability   |                                                                                                                                                                                                                                                                              | [MariaDB Enterprise Server](https://mariadb.com/docs/platform/)                                                                                                     |
| Quantity       | Set by [innodb\_read\_io\_threads](/docs/server/server-usage/storage-engines/innodb/innodb-system-variables.md#innodb_read_io_threads) and [innodb\_write\_io\_threads](/docs/server/server-usage/storage-engines/innodb/innodb-system-variables.md#innodb_write_io_threads) | [Configure the InnoDB I/O Threads](/docs/server/server-usage/storage-engines/innodb/mariadb-enterprise-server-innodb-operations/configure-the-innodb-io-threads.md) |

## Basic Configuration

```ini
[mariadb]
...
innodb_read_io_threads=8
innodb_write_io_threads=8
```

```sql
SET GLOBAL innodb_read_io_threads=8;
SET GLOBAL innodb_write_io_threads=8;

SHOW GLOBAL VARIABLES
   LIKE 'innodb_%_io_threads';
```

```
+-------------------------+-------+
| Variable_name           | Value |
+-------------------------+-------+
| innodb_read_io_threads  | 8     |
| innodb_write_io_threads | 8     |
+-------------------------+-------+
```

<sub>*This page is: Copyright © 2025 MariaDB. All rights reserved.*</sub>

{% @marketo/form formId="4316" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mariadb.com/docs/server/server-usage/storage-engines/innodb/innodb-architecture-for-mariadb-enterprise-server/mariadb-enterprise-server-innodb-io-threads.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
