Site icon EfmSoft

What does HRESULT 0xC0370003 (ERROR_VID_QUEUE_FULL) mean?

 
Could be also:
ConstantTypeOS
STATUS_VID_QUEUE_FULLNTSTATUSWindows
Previous Next
ERROR_VID_TOO_MANY_HANDLERS ERROR_VID_HANDLER_NOT_PRESENT

ERROR_VID_QUEUE_FULL

ERROR_VID_QUEUE_FULL is HRESULT 0xC0370003 in the VID message queue backpressure area of the Windows virtualization stack. It applies to a host-side VID message queue that cannot accept another item.

Object lifecycle behind the result

Producers have outrun consumption or the consumer is blocked, stopped, or unable to acknowledge work. Queue depth and oldest-item age are more useful than generic CPU or network checks.

Neighboring result: MESSAGE_QUEUE_CLOSED is a lifecycle end state; QUEUE_FULL means the queue still exists but has no capacity for the new message.

Diagnostic evidence matrix

EvidenceWhy it changes the diagnosis
Queue identityRecord partition, queue name/handle, producer, and consumer.
Depth timelineCapture capacity, current depth, oldest item age, enqueue rate, and dequeue rate.
Consumer stateKeep thread wait reason, VP/worker state, and the last successfully processed message.
Backpressure policyRecord retry, drop, coalescing, and acknowledgement behavior.

Test one variable at a time

  1. Pause producers in a controlled test and verify whether the queue drains.
  2. Inspect the oldest unconsumed message before clearing the queue.
  3. Bound retries and preserve ordering for stateful messages.
  4. Test consumer failure and restart without losing queue ownership.

Reproduce this condition with bounded producers and a fully instrumented consumer. Preserve message ordering, queue generation, handler ownership, target VP, and acknowledgement timestamps while changing only one concurrency condition.

How to read the controls

ControlInterpretationHold constant
Single producer and consumerIf it disappears with serialized ownership, the queue, handler, acknowledgement, or delivery race is implicated.Preserve message type, partition, target VP, and queue capacity.
Fresh channel generationA new queue or handler generation changing it points to stale registration, backlog, or incomplete teardown.Keep payload, producer order, and host build unchanged in the test.
Controlled stall or burstDeliberately slow the consumer or bound the producer rate. The threshold at which it appears identifies backpressure versus lifecycle failure.Record queue depth, oldest-item age, and acknowledgement timing.

Scope of this status

Regression proof

The repair maintains bounded queue latency under expected peak load and recovers cleanly after a deliberately stalled consumer.

Technical references


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

Exit mobile version