nerdexam
IBM

000-349 · Question #1

Out of all the available settings for the location of the workspace, which one of the following is the most optimal setting for performance when processing small transactions such as MQ messages?

The correct answer is C. Workspace = Memory. For small, high-frequency transactions like MQ messages, the Memory workspace setting provides the best performance by keeping all workspace data in RAM and eliminating disk I/O overhead.

Performance Monitoring and Tuning

Question

Out of all the available settings for the location of the workspace, which one of the following is the most optimal setting for performance when processing small transactions such as MQ messages?

Options

  • AWorkspace = File
  • BWorkspace = Burst
  • CWorkspace = Memory
  • DWorkspace = Page

How the community answered

(31 responses)
  • A
    10% (3)
  • B
    6% (2)
  • C
    81% (25)
  • D
    3% (1)

Why each option

For small, high-frequency transactions like MQ messages, the Memory workspace setting provides the best performance by keeping all workspace data in RAM and eliminating disk I/O overhead.

AWorkspace = File

Workspace = File writes workspace data to disk, introducing file I/O latency that degrades performance for high-frequency small transactions.

BWorkspace = Burst

Workspace = Burst is designed for handling large-volume data in chunks and does not provide the in-memory efficiency needed for small, frequent transactions.

CWorkspace = MemoryCorrect

Workspace = Memory stores all workspace data entirely in RAM, avoiding any disk read/write operations during map execution. For small transactions such as MQ messages that arrive at high frequency, this eliminates I/O latency and maximizes throughput. No serialization to or from disk occurs, making it the fastest available workspace option for this workload type.

DWorkspace = Page

Workspace = Page uses a paging mechanism that incurs overhead from managing page boundaries, making it slower than a pure in-memory workspace for small transactions.

Concept tested: Workspace memory setting for small transaction performance

Source: https://www.ibm.com/docs/en/wtx/8.4.1?topic=maps-workspace-settings

Topics

#workspace settings#memory workspace#MQ messages#performance

Community Discussion

No community discussion yet for this question.

Full 000-349 Practice