Skip to content

Commit 4330c42

Browse files
authored
Increase max features limit for copy to 200M (#1816)
Signed-off-by: qGYdXbY2 <47661341+qGYdXbY2@users.noreply.github.com>
1 parent 4675378 commit 4330c42

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • xyz-jobs/xyz-job-service/src/main/java/com/here/xyz/jobs/steps/compiler

xyz-jobs/xyz-job-service/src/main/java/com/here/xyz/jobs/steps/compiler/SpaceCopy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public static CompilationStepGraph compile(String jobId, DatasetDescription.Spac
127127
long sourceFeatureCount = sourceStatistics.getCount().getValue(),
128128
targetFeatureCount = targetStatistics.getCount().getValue();
129129

130-
long MAX_FEATURE_NOT_USING_FILTER = 60_100_000l;
130+
long MAX_FEATURE_NOT_USING_FILTER = 200_100_000l;
131131
if( MAX_FEATURE_NOT_USING_FILTER <= sourceFeatureCount && !usingFilter(filters) )
132132
throw new CompilationError( String.format("too many features (%d > %d) to copy from %s ", sourceFeatureCount, MAX_FEATURE_NOT_USING_FILTER ,sourceSpaceId) );
133133

0 commit comments

Comments
 (0)