fskorgen commented on issue #6864: URL: https://github.com/apache/hop/issues/6864#issuecomment-4140570739
Hi! I have checked out lateste version of 2.18.0-SNAPSHOT and tested the porblem with the StreamLookup transform. The problem still exists. I will add my test pipeline as XML, so you can paste in to your "Hop" project. <img width="1134" height="973" alt="Image" src="https://github.com/user-attachments/assets/ac468492-dfc1-4310-9dc5-c449a72d212a" /> <?xml version="1.0" encoding="UTF-8"?> <pipeline-transforms> <transforms> <transform> <name>Dummy (do nothing)</name> <type>Dummy</type> <description/> <distribute>Y</distribute> <custom_distribution/> <copies>1</copies> <partitioning> <method>none</method> <schema_name/> </partitioning> <attributes></attributes> <GUI> <xloc>400</xloc> <yloc>224</yloc> </GUI> </transform> <transform> <name>Generate rows 10 rows</name> <type>RowGenerator</type> <description/> <distribute>Y</distribute> <custom_distribution/> <copies>1</copies> <partitioning> <method>none</method> <schema_name/> </partitioning> <fields> <field> <length>-1</length> <name>id</name> <nullif>1</nullif> <precision>-1</precision> <set_empty_string>N</set_empty_string> <type>Integer</type> </field> <field> <length>-1</length> <name>lookupId</name> <nullif>2</nullif> <precision>-1</precision> <set_empty_string>N</set_empty_string> <type>Integer</type> </field> </fields> <interval_in_ms>5000</interval_in_ms> <last_time_field>FiveSecondsAgo</last_time_field> <limit>10</limit> <never_ending>N</never_ending> <row_time_field>now</row_time_field> <attributes></attributes> <GUI> <xloc>80</xloc> <yloc>224</yloc> </GUI> </transform> <transform> <name>Lookup values</name> <type>RowGenerator</type> <description/> <distribute>Y</distribute> <custom_distribution/> <copies>1</copies> <partitioning> <method>none</method> <schema_name/> </partitioning> <fields> <field> <length>-1</length> <name>lookupId</name> <nullif>2</nullif> <precision>-1</precision> <set_empty_string>N</set_empty_string> <type>Integer</type> </field> <field> <length>-1</length> <name>name1</name> <nullif>n1</nullif> <precision>-1</precision> <set_empty_string>N</set_empty_string> <type>String</type> </field> <field> <length>-1</length> <name>name2</name> <nullif>n2</nullif> <precision>-1</precision> <set_empty_string>N</set_empty_string> <type>String</type> </field> <field> <length>-1</length> <name>name3</name> <nullif>n3</nullif> <precision>-1</precision> <set_empty_string>N</set_empty_string> <type>String</type> </field> </fields> <interval_in_ms>5000</interval_in_ms> <last_time_field>FiveSecondsAgo</last_time_field> <limit>10</limit> <never_ending>N</never_ending> <row_time_field>now</row_time_field> <attributes></attributes> <GUI> <xloc>240</xloc> <yloc>80</yloc> </GUI> </transform> <transform> <name>Stream lookup</name> <type>StreamLookup</type> <description/> <distribute>Y</distribute> <custom_distribution/> <copies>1</copies> <partitioning> <method>none</method> <schema_name/> </partitioning> <from>Lookup values</from> <input_sorted>N</input_sorted> <preserve_memory>Y</preserve_memory> <sorted_list>N</sorted_list> <integer_pair>N</integer_pair> <lookup> <key> <name>lookupId</name> <field>lookupId</field> </key> <value> <name>name1</name> <rename>name1</rename> <default/> <type>String</type> </value> </lookup> <attributes></attributes> <GUI> <xloc>240</xloc> <yloc>224</yloc> </GUI> </transform> </transforms> <order> <hop> <from>Generate rows 10 rows</from> <to>Stream lookup</to> <enabled>Y</enabled> </hop> <hop> <from>Lookup values</from> <to>Stream lookup</to> <enabled>Y</enabled> </hop> <hop> <from>Stream lookup</from> <to>Dummy (do nothing)</to> <enabled>Y</enabled> </hop> </order> <notepads> </notepads> <transform_error_handling> </transform_error_handling> </pipeline-transforms> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
