Info
Error Code:
309
MongoDB Error 309: Exhaust Cursor Finished Notification
Description
Error 309, 'Exhaust Command Finished', indicates that a MongoDB exhaust cursor has successfully completed streaming all its results to the client. This is typically an informational message, signifying the normal termination of a long-running query that uses an exhaust cursor to optimize data transfer.
Error Message
Exhaust Command Finished
Known Causes
3 known causesStandard Cursor Completion
The exhaust cursor has successfully transmitted all available documents for the query and closed as expected.
Client Disconnection
The client application terminated the connection or closed the cursor before all potential results were processed.
Empty Result Set
The query associated with the exhaust cursor yielded no documents, leading to an immediate completion of the cursor.
Solutions
Coming SoonGeneral Troubleshooting Tips
- Check the error message carefully for specific details
- Review recent changes that might have caused the error
- Search for the exact error code in the official documentation
- Check log files for additional context
- Try restarting the application or service