Kafka - Kubernetes and Cloud Deployment
Analyze this Kafka auto-scaling snippet:
What will be the output?
cpu_load = 90
if (cpu_load >= 85) {
add_broker()
print("Scaling up")
} else {
print("Stable")
}What will be the output?
