Skip to content

Commit 3ef7ce1

Browse files
committed
DLPX-93560 HOP: Delimited/Fixed-width file masking with multiple record type is slower on Apache Hop compared to Kettle
1 parent 1ed93b3 commit 3ef7ce1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/src/main/java/org/apache/hop/pipeline/transform/BaseTransform.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,8 @@ public BaseTransform(
419419
dispatch();
420420

421421
if (pipeline != null) {
422-
upperBufferBoundary = (int) (pipeline.getRowSetSize() * 0.99);
423-
lowerBufferBoundary = (int) (pipeline.getRowSetSize() * 0.01);
422+
upperBufferBoundary = (int) (pipeline.getRowSetSize() * 0.999);
423+
lowerBufferBoundary = (int) (pipeline.getRowSetSize() * 0.001);
424424
} else {
425425
upperBufferBoundary = 100;
426426
lowerBufferBoundary = 10;

0 commit comments

Comments
 (0)