000-349 · Question #62
Which of the following settings might prevent multiple instances of a map from running at the same time?
No correct answer was supplied for this question. Among the choices, Workspace = Memory is the option most technically associated with restricting concurrent map execution due to shared in-memory resource constraints.
Question
Which of the following settings might prevent multiple instances of a map from running at the same time?
Options
- AMapRetry Switch = Off
- BMapAudit Switch = On
- CBackup Switch = On
- DWorkspace = Memory
Why each option
No correct answer was supplied for this question. Among the choices, Workspace = Memory is the option most technically associated with restricting concurrent map execution due to shared in-memory resource constraints.
MapRetry Switch = Off disables automatic retry behavior for failed maps but places no restriction on how many map instances can execute concurrently.
MapAudit Switch = On activates audit trail logging for map activity but has no effect on whether multiple map instances are permitted to run simultaneously.
Backup Switch = On governs whether map run data is backed up during processing and does not impose any single-instance execution constraint.
Workspace = Memory directs the map to use an in-memory workspace rather than disk, and because this memory resource is not shareable across instances, it effectively prevents multiple concurrent executions of the same map.
Concept tested: Map concurrency control via workspace and switch settings
Topics
Community Discussion
No community discussion yet for this question.