What does HRESULT 0xC8000069 (hrTooManyIO) mean?

 
Previous Next
hrOutOfThreads hrBFInUse

hrTooManyIO

Why this result matters

For hrTooManyIO, this code narrows the investigation to one engine boundary and should not be flattened into a generic exception. The decisive boundary is the engine reached its outstanding-I/O throttle and refused to queue more storage work.

The stored Value is 0xC8000069 (negative JET error -105; -105). The HRESULT carries failure severity, so output state must be treated according to the individual API contract. Current ESE documentation uses JET_errTooManyIO for the corresponding published JET condition.

The first useful distinction is that the storage subsystem can be healthy but saturated; hrDiskIO means an actual I/O operation failed. Start by capture queue depth, latency, outstanding reads/writes by file, checkpoint lag, backup concurrency, and storage errors. That separates a reproducible incident from a later generic cleanup or service error.

Do not confuse it with

This result specifically means that the storage subsystem can be healthy but saturated; hrDiskIO means an actual I/O operation failed. Related values below can appear in the same workflow but require a different response:

hrOutOfThreadsESE could not start a worker thread needed by the requested operation
hrFileCloseESE could not complete the operating-system close of a database, log, temporary, or backup file
hrInvalidBackupSequencebackup APIs were called in an order that violates the ESE external-backup state machine

Keep the original constant and hexadecimal value in telemetry. Replacing this result with “backup failed” or “database warning” removes the state information needed to select the next legal API call.

Forensic checklist

Preserve the first result before retries, cleanup, service restart, or file replacement changes the evidence. The diagnostic record should identify the exact API phase and the owner of every handle or artifact involved.

  • Code-specific observation: capture queue depth, latency, outstanding reads/writes by file, checkpoint lag, backup concurrency, and storage errors.
  • System commit and volume state: record it together with this result and the timestamp of the first occurrence.
  • Concurrency at first failure: record it together with it and the timestamp of the first occurrence.
  • Win32 status and file/operation: record it together with it and the timestamp of the first occurrence.
  • Thread, handle, and I/O counts: record it together with it and the timestamp of the first occurrence.

Use hashes, lengths, IDs, generation numbers, and redacted samples instead of copying directory contents or sensitive database values into routine logs. For this it investigation, a complete provenance chain is often more useful than a second automatic retry.

Objects and state involved

Diagnostic layeroperating-system file, thread, and asynchronous-I/O resources used by ESE
Relevant API surfacedatabase/log file I/O, worker creation, backup reads, and background tasks
Code-specific boundarythe engine reached its outstanding-I/O throttle and refused to queue more storage work
Narrow corrective directionreduce parallelism and resolve latency before retrying rather than creating an I/O retry storm

The first lower-level Win32 error is more useful than later cascading ESE failures., resource exhaustion should be measured at the moment of failure, before retries alter counts.

Actions that can make diagnosis worse

  • do not create unbounded retries under resource pressure.
  • do not discard a close or flush error during cleanup.
  • do not discard the first lower-level Win32, RPC, or JET result merely because a later cleanup call returned a more familiar error.

Validation after correction

  1. Record it, 0xC8000069, the API name, the current phase, and all live context or file owners.
  2. Verify the decisive condition by capture queue depth, latency, outstanding reads/writes by file, checkpoint lag, backup concurrency, and storage errors.
  3. Apply only the narrow correction: reduce parallelism and resolve latency before retrying rather than creating an I/O retry storm.
  4. After it, recreate any context invalidated by the failure; do not carry stale HBC, cursor, file, or restore-map state into the retry.
  5. repeat the smallest non-destructive test that reaches the same boundary, then verify both the return value and the resulting file, cursor, backup, or database state.

Acceptance criteria for a fix

A useful regression test for this HRESULT should force the condition “the engine reached its outstanding-I/O throttle and refused to queue more storage work”, call one documented API transition, and assert the exact HRESULT. The corrected the case should change only the decisive precondition and should verify cleanup as well as the primary output. For the result backup or restore path, also prove that the resulting set can be enumerated and that no file handle or context remains active after finalization.

Technical references


Looking for a different code? Search another status or error code.