adajani opened a new issue, #5547: URL: https://github.com/apache/couchdb/issues/5547
[NOTE]: # ( ^^ Provide a general summary of the issue in the title above. ^^ ) ## Description Configuring the disk monitor feature to let couchdb reacts proactively when disk space gets low is not triggered inside the container with single node . ## Steps to Reproduce 1. Edit default.ini to enable [disk_monitor]  2. Run the container: ` sudo docker run -d --name my-couchdb -e COUCHDB_USER=*** -e COUCHDB_PASSWORD=*** -p 5984:5984 -v /mnt/couchdb_mount:/opt/couchdb/data -v ./default.ini:/opt/couchdb/etc/default.ini couchdb ` 3. Fill the couchdb volume with dump data using dd tool to exceed the write threshold 4. Create a databae by sending PUT request ` curl -i -X PUT http://***:***@localhost:5984/test2 ` ## Expected Behaviour [NOTE]: # ( Tell us what you expected to happen. ) I expect couchdb to return 507 (Insufficient Storage) response status, or 500 (internal error), while the value I've got is 201 created. ## Your Environment [TIP]: # ( Include as many relevant details about your environment as possible. ) [TIP]: # ( You can paste the output of curl http://YOUR-COUCHDB:5984/ here. ) * Docker version: 26.1.3, build 26.1.3-0ubuntu1~22.04.1 * CouchDB version used: 3.50 * Browser name and version: curl tool version 7.81.0 * Operating system and version: Ubuntu 22.04.2 LTS ## Additional Context [TIP]: # ( Add any other context about the problem here. ) The disk status before the request:  Verify the disk image is enabled  Send the request  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
