Table of Contents
This detailed workload setup provides a comprehensive overview of the Kafka consumer environment on Linux, detailing how cloud events are handled, system resource configurations, and message publishing mechanisms.
Test Flow Description
According to requirements the test flow included following steps:
- Use docker compose (C:\CPS\master\cps\docker-compose\docker-compose.yml) to make all the required containers running
docker-compose --profile dmi-stub --profile monitoring up -d
- Stop "cps-and-ncmp" container.
- Use K6 script (k6-tests\once-off-test\kafka\produce-avc-event.js) to publish cm avc cloud events to topic "dmi-cm-events"
- Verify number of messages published to topic "dmi-cm-events" using kafka UI "http://localhost:8089/"
- Start "cps-and-ncmp" container again
- Verify number of messages consumed by topic "cm-events" using kafka UI "http://localhost:8089/"
- Login grafana http://localhost:3000/ to capture CPU, Memory and Threads.
Load:
The flow was repeated in a loop multiple times (defined with
circles
parameter);
Test Environment
# | Environment/Workload | Description |
---|---|---|
1 | Tested on Linux | Laptop : Dell Inc. XPS 15 9530 |
2 | Tested on Windows | Laptop : Lenovo ThinkPad |
2 | Number of CPS Instance | 1 |
NCMP resource config | YAML Configuration: Defines deployment resources for the NCMP service: Replicas: 1 CPU Reservations: 2 CPUs Memory Reservations: 2 GB CPU Limits: 3 CPUs Memory Limits: 3 GB | |
Kafka Topic configuration | CM Notification Topic Configuration: Enabled: false Group ID: cm_events Topic Name: dmi-cm-events | |
Publishing topic name | dmi-cm-events | |
Forwarded topic name | cm-events | |
4 | Total number of Cm Avc cloud events | 100,000 Kafka messages sent through the Kafka topic. |
5 | Cloud event headers | The headers for each Kafka message contain the following fields: ce_type: "org.onap.cps.ncmp.events.avc1_0_0.AvcEvent" ce_source: "DMI" ce_destination: "dmi-cm-events" ce_specversion: "1.0" ce_time: ISO-formatted timestamp ce_id: A unique ID generated using crypto.randomUUID() ce_dataschema: "urn:cps.onap.cps.ncmp.events.avc1_0_0.AvcEvent:1.0.0" ce_correlationid: Correlation ID generated using crypto.randomUUID() |
6 | Kafka payload | |
8 | Number of DMI Plugin stub | 1 DMI Plugin Stub is used for testing purposes. |
9 | Commit ID | 81eb7dfc2f100a72692d2cbd7ce16540ee0a0fd4 |
10 | Commit ID link | Commit Link |
11 | K6 script (to publish cloud events) | The test script used to publish cloud events is located at: ..\cps\k6-tests\once-off-test\kafka\produce-avc-event.js |
Performance Comparison Between Linux and Windows Kafka Consumers:
Test Environment | Linux | Windows | Linux | Windows |
Total number of kafka messages | 100,000 | 200,000 | ||
CPU (%) | 44.2 | 82.1 | 78.3 | 72.6 |
Memory (MB) | 244 | 195 | 212 | 222 |
Total number of threads | 321 | 320 | 320 | 319 |
1st kaka message forwarded (HH:MM:SS) | 16:37:11 | 17:30:51 | 16.52.54 | 17.42.56 |
Last kaka message forwarded (HH:MM:SS) | 16:37:14 | 17:31:03 | 16.52.59 | 17.43.10 |
Time taken to consume and forward kafka messages (Seconds) | 3 | 12 | 5 | 14 |
Consumption rate (Messages / second) | 33,333 | 8,333 | 40,000 | 14,286 |
Kafka Consumer Performance on Linux:
CPU Efficiency:
- Linux consumes 113.98% CPU, which is much lower compared to Windows (268.01%). For a Kafka consumer, this indicates that Linux efficiently handles Kafka message consumption with a lower CPU overhead. This is crucial in production environments where maximizing resource efficiency is key.
Memory Usage:
- 522 MB of memory is used by the Kafka consumer on Linux. While Linux consumes slightly more memory than Windows, this difference is not significant. The memory footprint appears stable and manageable, showing that Linux maintains Kafka consumption processes effectively.
Network Data:
- The Kafka consumer on Linux sends 59.6 MB of data and receives 113 MB of data, indicating a balanced network workload. Lower network data usage could imply efficient message batching or optimized data handling strategies, which are often critical in Kafka consumers for reducing latency and improving throughput.
Thread Management:
- The 360-361 threads on Linux suggest a stable and scalable multi-threading architecture for consuming Kafka messages. Since Kafka consumers can handle parallel processing of messages, this thread count shows Linux is performing within a controlled range without overloading the system with too many threads.
Message Consumption Rate:
- 33,333 messages per second on Linux is an exceptionally high consumption rate compared to Windows (16,667). This suggests that the Linux environment is highly optimized for Kafka consumers, allowing it to process a large volume of messages in real-time scenarios. This high throughput is vital in scenarios with large-scale data streams, where message backlogs need to be minimized.
Message Latency:
- The first Kafka message is forwarded at 13:49:25 and the last at 13:49:28, showing a minimal delay between the start and completion of message forwarding. This low latency is essential in Kafka-based systems that rely on quick, real-time message processing, and it demonstrates that Linux provides fast message handling.
Conclusion for Kafka Consumers on Linux:
- Efficient Resource Usage: Linux is shown to handle Kafka consumer tasks with efficient CPU usage and a stable memory footprint.
- Superior Throughput: The 33,333 messages/second throughput shows Linux can handle very high message ingestion rates, making it suitable for data-intensive Kafka streams.
- Low Latency: The minimal lag in forwarding Kafka messages indicates that Linux performs well under real-time processing demands.
- Optimized for Network and Threads: Balanced network data handling and stable thread management further highlight Linux’s ability to maintain performance under high workloads.
Overall, Linux is an excellent environment for running Kafka consumers, especially in scenarios that demand high throughput, low latency, and efficient resource management.
Key Observations:
- CPU Usage:
- Linux shows significantly lower CPU usage (113.98%) compared to Windows (268.01%), indicating that the process is more CPU-efficient on Linux.
- Memory Usage:
- Linux uses slightly more memory (522 MB) than Windows (497.3 MB), but the difference is minimal.
- Network Data:
- Linux sends less data (59.6 MB) than Windows (120 MB) but also receives less data (113 MB vs 168 MB). This could indicate different network handling efficiencies or workload patterns.
- Threads:
- The number of threads is almost identical between the two environments, so thread management is consistent.
- Kafka Message Timing:
- Linux processed Kafka messages earlier (13:49:25) than Windows (14:56:33). The processing duration is almost the same, but Linux starts earlier.
- Consumption Rate:
- Linux has a much higher message consumption rate (33,333 messages/second) than Windows (16,667 messages/second). This suggests that Linux is significantly more efficient in handling Kafka messages.
Conclusion:
- Linux demonstrates better performance overall in terms of CPU usage and message consumption rate. Despite similar memory usage, Linux handles Kafka message forwarding faster and consumes more messages per second.
- Windows consumes significantly more CPU resources and handles Kafka messages at a slower rate, making it less efficient for high-performance use cases.
If high throughput and CPU efficiency are critical, Linux would be the better environment for this application based on these metrics.