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
Describe the bug
When processing a large batch of jobs (e.g., 300), nexrender occasionally skips some jobs (e.g., 20 out of 300). Smaller batches (5–10 jobs) work fine without any issues. This skipping may be related to the ffmpeg process not completing before the next job starts, but I am not entirely sure.
I have temporarily resolved the issue by introducing a delay (await sleep(2500)) between jobs, which ensures they are processed sequentially. However, this is a workaround, and I believe the issue could be addressed at the core level.
Steps to Reproduce
Create a batch of jobs (e.g., 300) using the provided sample code and JSON configuration.
Process the jobs without adding any delay between them.
Hey there,
Could you provide any logs related to the skips? For all my time working with Nexrender, both locally and in the cloud, I have not seen that happen. It would be interesting to know more.
Describe the bug
When processing a large batch of jobs (e.g., 300), nexrender occasionally skips some jobs (e.g., 20 out of 300). Smaller batches (5–10 jobs) work fine without any issues. This skipping may be related to the ffmpeg process not completing before the next job starts, but I am not entirely sure.
I have temporarily resolved the issue by introducing a delay (
await sleep(2500)
) between jobs, which ensures they are processed sequentially. However, this is a workaround, and I believe the issue could be addressed at the core level.Steps to Reproduce
Example Code
Example Job JSON:
Information about environment
Expected behavior
All jobs in the batch should process sequentially without skipping any.
Screenshots
Not applicable, as the issue is not visually apparent.
The text was updated successfully, but these errors were encountered: