Could you please try to "describe" the affected topic using command below:
kafka-topics.sh --describe --zookeeper <zkHost:zkPort> --topic TEST_KAFKA_TOPIC
Please share the output.
Are you able to consume from this topic? you can test by using kafka APIs below:
kafka-console-consumer.sh --bootstrap-server <brokerHost:brokerPort> --topic TEST_KAFKA_TOPIC --new-consumer --from-beginning
Note: If you're using kerberos, make sure to have a valid ticket and include --security-protocol SASL_PLAINTEXT
Thanks.