Which four statements are correct about communication between parallel execution process?

Which four statements are correct about communication between parallel execution process?

Which four statements are correct about communication between parallel execution process?

A.
The number of logical pathways between parallel execution producers and consumers depends
on the degree parallelism.

B.
The shared pool can be used for parallel execution messages buffers.

C.
The large pool can be used for parallel execution messages buffers.

D.
The buffer cache can be used for parallel execution message buffers.

E.
Communication between parallel execution processes is never required if a query uses full
partition-wise joins.

F.
Each parallel execution process has an additional connection to the parallel execution
coordinator.

Explanation:
A: Note that the degree of parallelism applies directly only to intra-operation
parallelism. If inter-operation parallelism is possible, the total number of parallel execution servers
for a statement can be twice the specified degree of parallelism. No more than two sets of parallel
execution servers can run simultaneously. Each set of parallel execution servers may process
multiple operations. Only two sets of parallel execution servers need to be active to guarantee
optimal inter-operation parallelism.
B: By default, Oracle allocates parallel execution buffers from the shared pool.
F: When executing a parallel operation, the parallel execution coordinator obtains parallel
execution servers from the pool and assigns them to the operation. If necessary, Oracle can
create additional parallel execution servers for the operation. These parallel execution servers
remain with the operation throughout job execution, then become available for other operations.
After the statement has been processed completely, the parallel execution servers return to the
pool.
Reference: Oracle Database Data Warehousing Guide, Using Parallel Execution



Leave a Reply 3

Your email address will not be published. Required fields are marked *


vasya_pupkin

vasya_pupkin

A,B,C,F – correct

B,C: when using Automatic Memory Management of Automatic Shared Memory Management,
a large pool will be configured, and the Parallel Exection Message Buffers will be stored in that pool, regardless of whether you have explicitly set the large_pool parameter. The parallel execution message buffers will be store in the shared pool only if you meet this pair of conditions: first, you must have disabled automatic memory configuration; and second, you must not have set the large_pool parameter.

F: Each parallel execution server actually has an additional connection to the parallel execution coordinator.
http://docs.oracle.com/cd/B19306_01/server.102/b14223/usingpe.htm

A: The number of virtual connections between parallel execution servers increases as the square of the degree of parallelism.
http://docs.oracle.com/cd/B19306_01/server.102/b14223/usingpe.htm

sasa

sasa

I think A,B,E,F