You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a pipe separated text input file and add some data with headers in it. (emp_id,ename,salary,dept)
create a oracle database table employee with fields emp_id, ename, salary, dept
create a pipeline to read data from the text file input
Add a database join transformation to the pipeline & save it.
select
emp_id
, ename
, salary
from employee
where emp_id = ?
Parameter Field is emp_id (String) from the text file input
save & execute this pipeline
The time it took was 9 min 42sec to execute the database join step (added screenshot for the similar database join transform showing execution time)
Apache Hop version?
2.8.0
Java version?
11
Operating system
Windows
What happened?
Steps to reproduce:
select
emp_id
, ename
, salary
from employee
where emp_id = ?
Parameter Field is emp_id (String) from the text file input
The time it took was 9 min 42sec to execute the database join step (added screenshot for the similar database join transform showing execution time)
Issue Priority
Priority: 2
Issue Component
Component: Transforms