GitHub user EricTonissen added a comment to the discussion: Pipeline keeps
running on simple 'Stream Lookup' action.
And if I look in the StreamLookup.java, then the size of this array is 512
entries.
StreamLookup.java
if (data.hashIndex == null) {
data.hashIndex = new ByteArrayHashIndex(keyMeta);
}
Uses the contructor without size argument.
public ByteArrayHashIndex(IRowMeta keyRowMeta) {
this(keyRowMeta, 512);
}
factor2size will end with 512.
int factor2Size = 1;
while (factor2Size < size) {
factor2Size <<= 1; // Multiply by 2
}
GitHub link:
https://github.com/apache/hop/discussions/6152#discussioncomment-15208602
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]