Hoovinator
Hoovinator
Just to note, we pass about 500,000 files through this library about 4 times a day (within 1 hour) with our custom `timer` check and it works flawlessly. Basically, `stat`...
How can I get the SRC code for debugging?
I think `blockSize` is necessary for larger files due to XHR max requests for a single URL. I changed to `blockSize: 65535 * 5` and it worked
We had the same EMFILE issue but even more so, this module completely crashed our server. We have 6 CPUs and they pegged to 299% and then completely obliterated all...
I like this idea in the consumer creation. Something with configuration on startup such as `handleMessageAckMethod` with three values, `default`, `rejectContinue`, `rejectStop`. Meaning, the default behavior is to acknowledge first...
Just delete your own messages then within your batch handler: handleMessageBatch: async (messages) => { messages.forEach(message => { // check success of message const success = await processMessage(message); if (success)...
`instance` is the main variable you assign from `const instance = Consumer.create({`
Sounds like you need an additional message to be sent to the Queue for a log running job. You can tweak the acknowledgment visibility timeout and I believe it is...
I think that devs are mis-using AWS technologies and asking for features in libraries to do things that they SHOULD NOT do. I see so many situations where a dev...
@ypicard If you are able to disclose more of the "problem you are trying to to fix", perhaps insight can be given as to a better means to meet those...