Errors Reported Continuously After the Kafka Script Is Run
Symptom
After the Kafka script is executed, errors are continuously reported.
Key Process and Cause Analysis
None
Conclusion and Solution
- Stop the producer process.
1kill -9 $(ps -ef | grep producer | grep -v grep | awk '{print $2}')
- Stop the consumer process.
1kill -9 $(ps -ef | grep consumer | grep -v grep | awk '{print $2}')
You can also restart the Kafka component to resolve the problem.
Parent topic: Cluster Testing