We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently its difficult to create static consumers because group.instance.id property is not supported:
curl -X POST -H "Content-Type: application/vnd.kafka.v2+json" -H "Accept: application/vnd.kafka.v2+json" \ -d '{"group.instance.id": "my_consumer_instance", "format": "json", "auto.offset.reset": "earliest"}' \ http://localhost:8082/consumers/my_json_consumer
{"error_code":422,"message":"Unrecognized field: group.instance.id"}
It is possible to use KAFKA_REST_CONSUMER_GROUP_INSTANCE_ID env variable, but in this case all consumers have same group.instance.id.
Are there any plans to add this property to consumers constructor?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently its difficult to create static consumers because group.instance.id property is not supported:
It is possible to use KAFKA_REST_CONSUMER_GROUP_INSTANCE_ID env variable, but in this case all consumers have same group.instance.id.
Are there any plans to add this property to consumers constructor?
The text was updated successfully, but these errors were encountered: