Bird
0
0

You want to configure RabbitMQ to trigger a memory alarm when free memory falls below 500MB. Which configuration snippet achieves this?

hard📝 Application Q8 of 15
RabbitMQ - Performance Tuning
You want to configure RabbitMQ to trigger a memory alarm when free memory falls below 500MB. Which configuration snippet achieves this?
Avm_memory_high_watermark = 500MB
Bvm_memory_high_watermark.absolute = 524288000
Cmemory_alarm_threshold = 500000000
Dvm_memory_high_watermark.absolute = 500000
Step-by-Step Solution
Solution:
  1. Step 1: Identify correct parameter for memory alarm

    vm_memory_high_watermark.absolute sets memory alarm threshold in bytes.
  2. Step 2: Convert 500MB to bytes

    500MB = 500 * 1024 * 1024 = 524288000 bytes, so set this value.
  3. Final Answer:

    vm_memory_high_watermark.absolute = 524288000 -> Option B
  4. Quick Check:

    Memory alarm threshold = bytes integer [OK]
Quick Trick: Use vm_memory_high_watermark.absolute in bytes for memory alarm [OK]
Common Mistakes:
MISTAKES
  • Using units like MB directly
  • Using wrong parameter names

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More RabbitMQ Quizzes