Vaughn Iverson
Vaughn Iverson
Hi, thanks for reporting, but I need specific, detailed steps to reproduce this error.
Right, isn't this just the CoffeeScript 2 issue addressed here? https://github.com/vsivsi/meteor-job-collection/pull/268
Hi, just so you know, I'm about to drop off the internet for almost a month, so I won't be able to look into this until around June 20th. Sorry...
Hi, a lot of questions in there... I'll try to quickly answer the big ones: > But how do I stop a type from being executed? In this code: ```js...
Hi, thanks for reporting this behavior. When running in the pure node.js environment, meteor-job is completely dependent on the node-ddp package for communication with the server, and to the extent...
Hi, yes, you should easily be able to do this. Job-collection allows jobs to be scheduled with a dependency on the successful completion of one or more already scheduled jobs...
Failed jobs can be configured to automatically retry using `job.retry(options)`. If a failing job exhausts its automatic retries, or if it has a fatal failure, then any dependent jobs will...
Interesting... Thanks for sharing. If I'm reading this correctly, it seems that it is critical that there is only one (non-concurrent) worker for the "guard jobs" or else you may...
Finishing that final thought, you could probably increase throughput by eliminating some of the overhead using the `payload` option to `jc.processJobs()` to set the number of jobs provided to the...
The observe pattern works better it you care about the latency between when a job becomes ready and when a worker requests the job. If minutes are fine, then there's...