You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see you are working on new query the status API. Can we use that to get how many jobs in queue and cancel the job?
I am using express API and don't want to queue the job if there are more then 10 (n) jobs already in queue. So better to throw error, instead gateway timeout.
In another case, if I queued a job and it didn't completed in 60 (n) seconds. Can I cancel it using this new API? I see the job is still running on backend while http client timed out. Because HTTP client is disconnected with express timeout (502 - gateway timeout) error after 30-60 seconds and it's doesn't make sense to complete that job until I am using a database to store the result of job.
Can I get the jobId when running cluster.execute() or cluster.queue() to store the result in database when job is completed.
The text was updated successfully, but these errors were encountered:
I see you are working on new query the status API. Can we use that to get how many jobs in queue and cancel the job?
cluster.execute()
orcluster.queue()
to store the result in database when job is completed.The text was updated successfully, but these errors were encountered: