I'm using the community version of confluent-schema-registry. As far as I understand, too many schema under same topics may cause compatibility issues later. I tried hard to delete useless schemas in the schema registry with the methods mentioned in the link below: https://docs.confluent.io/4.0.0/schema-registry/docs/schema-deletion-guidelines.html
Afterwards the subject (topic) is empty (curl -X GET schema-registry:8081/subjects/, return []), but the schema is still there (curl -X GET schema-registry:8081/schemas/ids/25, return schema). I even tried removing the topic in the kafka-topics.sh. However, the schema seems to be still there and can be retrieved by id.
Has anyone run into the same problem? I'm curious if there is a way to remove the schema. Appreciate your help!