how to run a sequential file stage in parallel if the stage is used on the TARGET side
Answer / Surash Shing
To run a sequential file stage in parallel when it's utilized on the TARGET side, you can use Apache NiFi's 'ParallelProcess' and 'MergeContent' processors. By connecting your sequential file stage to 'ParallelProcess', you can split the data into multiple threads for processing simultaneously. After processing each thread, use 'MergeContent' to combine the results back into a single flow file.
| Is This Answer Correct ? | 0 Yes | 0 No |
how to handle null values in sequential file?
Hi Can any one help regarding below INPUT NAME LOC Ram hyd Ram ban Raj chn Raj Pun Sam del OUPUT NAME LOC Ram Hyd ban Raj chn pun sam del
Input Data is: Emp_Id, EmpInd 100, 0 100, 0 100, 0 101, 1 101, 1 102, 0 102, 0 102, 1 103, 1 103, 1 I want Output 100, 0 100, 0 100, 0 101, 1 101, 1 Means Indicator should either all ZEROs or all ONEs per EmpId. Impliment this using SQL and DataStage both.
How many Nodes configuration file you used in your last project?
What is RCP?
What is the difference between operational data stage (ods) and data warehouse?
Difference between the Sequence and Sequencer in DS?
what is main difference between change capture and change apply stages
can we see the data in fixed width file? how can u change the datatype of fixed width files?
What are the steps needed to create a simple basic datastage job?
Converting Vertical PIVOTing without using PIVOT stage in DataStage. Ex: DEPT_NO EMPNAME 10 Subhash 10 Suresh 10 sravs Output: DEPT_NO EMP1 EMP2 EMP3 10 subhash suresh sravs 2) How to implement Horizontal PIVOTing without using PIVOT stage.
I have 2 Files like fileA fileB Output1 Output2 Output3 1 6 1 6 11 2 7 2 7 12 3 8 3 8 13 4 9 4 9 14 5 10 5 10 15 6 11 7 12 8 13 9 14 10 15 please let know