-
I'm using MinIO with nodejs. During a putObject() operation I once got this error : I've recently started learning nodejs stream processing from scratch. I learned about stream.Writable where the write() method returns a boolean. And if it returns false, you have to pause the processing and resume it on the "drain" event. By this you can avoid overloading the outputstream and avoid backpressure issues. "reduce your request rate" ist a little vague. I don't want to include unnecessary waits into my stream processing. In a multitenant environment it's also of course not only up to me what pressure is currently done on the MinIO server, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Check your server logs. The error should only occur if there is a problem with your setup or it is heavily loaded. |
Beta Was this translation helpful? Give feedback.
Check your server logs. The error should only occur if there is a problem with your setup or it is heavily loaded.