What is exact difference between Parallel Jobs and server Jobs..
Answers were Sorted based on User's Feedback
Answer / sathya seenu priya.a
SERVER JOBS PARALLEL JOB
RUN ON SINGLE NODE MULTIPLE NODE
PIPELINING &
PARTITIONING DOES NOT SUPPORT SUPPORTS
LOADS WHEN 1 JOB FINISH SYNCHRONIZED
SERVER JOBS USES
SYMMETRICMULTIPROCESSING
PARALLEL JOBS
BOTH MASSIVE PARALLEL PROCESSING AND
SYMMETRICMULTIPROCESSING
| Is This Answer Correct ? | 41 Yes | 2 No |
Answer / bharath
SERVER JOBS
->Runs on single node
->Executes on DS Server Engine
->Handles less volume of data
->Slow data processing
->Having less no. of components(i.e, palette)
->Compiled into Basic language.
PARALLEL JOBS
->Runs on multiple nodes.
->Executes on DS parallel engine.
->Handles Huge volume of data
->Faster data processing.
->Having more no. of components
->Compiled into OSH(orchestrate shell script) except transformer( C++ and OSH )
| Is This Answer Correct ? | 26 Yes | 1 No |
Answer / poonam
Parallel jobs are carriedout on miltiple nodes/processors
but in server jobs no multitasking is there to talk in
simple terms. There are many technical differences like no
server sort stage etc but this is the basic difference
| Is This Answer Correct ? | 19 Yes | 9 No |
Answer / manash roy chawdhury
Parallel jobs are carriedout on miltiple nodes/processors
but in server jobs no multitasking is there to talk in
simple terms.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / geed
Parallel job run on multithreading where as server job run
on singlethread.
parallel job we can use millions of data to run by using
nodes and partition where server job we can use small amount
of data so that the output will be retrived faster,since it
single threading.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / karan khera
PARALLEL SERVER
Multinode Single node
Many processes can run ||lly Single process at a time
Much more stages Very less stages
Easy functionality Hard functionality
Datasets are there Datasets are not present
APT_CONFIG_FILE present No APT_CONFIG_FILE
More environment variable Meagre Environment vrbls
Join,lookup is there No join,lkup by x-frmr
Run faster due to multinode for large data run slow
Partition is there No partition
OSH compiled code BASIC compiled code
Database System File system
Works on Unix system Works on Windows system
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / shali
In parallel we can have multiprocessing (multinodes), But
in server its not there.
Server working with pipeline concept,parallel working in
the principle of parallelism
| Is This Answer Correct ? | 4 Yes | 8 No |
Answer / chenna
Parallel Jobs haveing a huge amount of data to maintains.
server Jobs haveing a low amount of data to maintains.
Parallel Jobs it having a more stages comperies server
Jobs .
Parallel Jobs or supports smp,mpp.
server Jobs does not support smp,mpp.
| Is This Answer Correct ? | 5 Yes | 9 No |
What is use Array size in datastage
How to remove duplicates in transformer stage? in parallel mode
Difference between the Sequence and Sequencer in DS?
What are the types of containers?
why do u need the IOS upgradation in a FC switch
How to create a file using vi editor? 2)how to delete a file in vi editor? 3)How to connect the server datastage to unix? what r the command lines we r using? 4)30 jobs r runnig in unix i want to find out my job. how to do this? give me command?
How to clean the datastage repository?
What is audit table?
If there is a file that contains 1000 records, I need the ouput to contain these 1000 records with the header as file name concatenated with the current timestamp and trailer as the count of records
How the ipc stage work?
How to reverse the string using SQL?
INPUT file 'A' contains: 1 2 3 4 5 6 7 8 9 10 input file 'B' contains: 6 7 8 9 10 11 12 13 14 15 Output file 'X' contains: 1 2 3 4 5 Output file 'Y' contains: 6 7 8 9 10 Output file 'Z' contains: 11 12 13 14 15 How can we implement this in a single ds job?