Kafka rest proxy fails when trying some of the parameters provided in the confluent docs.
When tried with parameters like consumer.instance.timeout.ms
which is provided in documentation[https://docs.confluent.io/current/kafka-rest/config.html] fails.
Request
curl -X POST http://172.16.x.x:8082/consumers/onerp -H "Content-Type: application/vnd.kafka.v2+json" -d '{"name": "ins-b", "format": "binary", "auto.offset.reset": "earliest", "auto.commit.enable": "false", "consumer.instance.timeout.ms": 180000}'
Response
{"error_code":422,"message":"Unrecognized field: consumer.instance.timeout.ms"}
However, request with minimum config options succeeds:
curl -X POST http://172.16.x.x:8082/consumers/onerp -H "Content-Type: application/vnd.kafka.v2+json" -d '{"name": "ins-b", "format": "binary", "auto.offset.reset": "earliest", "auto.commit.enable": "false"}'
I'm running a recent version of confluent platform 5.5.1 on docker with only zookeeper, kafka, schema-registry and rest-proxy services.
Is this not the correct way of using the configurations options or is there any other way to use these config options?