|
For the latest stable version, please use Korvet 0.12.5! |
Troubleshooting
Common issues and solutions for Korvet.
Connection Issues
Cannot connect to Korvet
Symptoms: Kafka clients timeout or fail to connect
Solutions:
-
Check Korvet is running:
curl http://localhost:8080/actuator/health -
Verify port is accessible:
telnet localhost 9092 -
Check firewall rules allow port 9092
Cannot connect to Redis
Symptoms: Korvet fails to start or logs Redis connection errors
Solutions:
-
Verify Redis is running:
redis-cli ping -
Check Redis connection settings:
export KORVET_REDIS_URI=redis://localhost:6379 export KORVET_REDIS_USERNAME=default export KORVET_REDIS_PASSWORD=secret -
Test Redis connectivity:
redis-cli -h localhost -p 6379 ping
Performance Issues
Data Issues
Messages not appearing
Symptoms: Produced messages don’t show up when consuming
Solutions:
-
Check topic exists:
kafka-topics --bootstrap-server localhost:9092 --list -
Verify partition assignment
-
Check consumer is reading from correct offset
-
Enable debug logging:
export LOGGING_LEVEL_COM_REDIS_KORVET=DEBUG
Resource Issues
Getting Help
If you can’t resolve the issue:
-
Check logs with debug level enabled
-
Collect metrics from
/actuator/prometheus -
File an issue at https://github.com/redis-field-engineering/korvet-dist/issues