From ad08321b83c6605506ce0c4df5e7bd97e9a1fcb1 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Tue, 12 Sep 2023 16:30:35 +0000 Subject: [PATCH] metrics: Add Cassandra Metrics documentation This PR adds the Cassandra Metrics documentation for kata metrics. Fixes #7922 Signed-off-by: Gabriela Cervantes --- tests/metrics/disk/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/metrics/disk/README.md diff --git a/tests/metrics/disk/README.md b/tests/metrics/disk/README.md new file mode 100644 index 0000000000..274fb97301 --- /dev/null +++ b/tests/metrics/disk/README.md @@ -0,0 +1,18 @@ +# Kata Containers Cassandra Metrics + +Kata Containers provides a series of read and write performance tests using +Cassandra Stress tool. The Cassandra Stress tool is a Java-based stress testing +utility for basic benchmarking and load testing a cluster. This tool helps us +to populate a cluster and stress test CQL tables and queries. This test is +based in two operations, the first one is writing against the cluster or +populating the database and the second one is reading the cluster that was +populated by the writing test. + +## Running the test + +Individual tests can be run by hand, for example: + +``` +$ cd metrics/disk/cassandra_kubernetes +$ ./cassandra.sh +```