Skip to content

Commit 523efff

Browse files
authored
[cuebot] Increase jobSpec layer limit (AcademySoftwareFoundation#1867)
This limit was established a long time ago and is no longer compatible with current production loads. Some crowd shots and complex pipelines require more than 1,000 layers. This PR proposes doubling the limit to assess any impacts on overall performance. If there are no issues, further increases can be suggested in the near future.
1 parent c8b9b6d commit 523efff

File tree

1 file changed

+1
-1
lines changed
  • cuebot/src/main/java/com/imageworks/spcue/service

1 file changed

+1
-1
lines changed

cuebot/src/main/java/com/imageworks/spcue/service/JobSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class JobSpec {
8989
* it. The more layers you have the longer a job takes to dispatch which could lead to
9090
* dispatches being dropped.
9191
*/
92-
public static final int MAX_LAYERS = 1000;
92+
public static final int MAX_LAYERS = 2000;
9393

9494
/**
9595
* The maximum number of frames a job can have. Increase this with care. The more frames a job

0 commit comments

Comments
 (0)