performa/performa/scenarios/mq/omsimulator-ha-cast.rst

1.6 KiB

Oslo.messaging simulator HA report

This report is result of message_queue_performance execution with Oslo.messaging Simulator

RPC CAST failover throughput test

Summary

{{'''

title: Execution summary fields: a1: Client sent, msg b1: Server received, msg b2: Loss, msg c1: Avg. latency, ms c2: Max latency, ms collection: records pipeline: - $match: { task: omsimulator, mode: cast } - $project: a1: "$client.count" b1: "$server.count" b2: { $subtract: ["$client.count", "$server.count" ] } c1: { $multiply: ["$server.latency", 1000] } c2: { $multiply: ["$server.max_latency", 1000] }

''' | info }}

Messages sent by the client

{{'''

title: RPC CAST sent messages axes: x: time y: sent, msg chart: line collection: series pipeline: - { $match: { task: omsimulator, mode: cast, name: client_0 }} - { $project: { x: "$seq", y: "$count" }} - { $sort: { x: 1 }}

''' | chart }}

Messages received by the server

{{'''

title: RPC CAST received messages axes: x: time y: round-trip, msg y2: latency, ms chart: line collection: series pipeline: - { $match: { task: omsimulator, mode: cast, name: server }} - { $project: { x: "$seq", y: "$count", y2: { $multiply: ["$latency", 1000] } }} - { $sort: { x: 1 }}

''' | chart }}