./bin/kafka-rest-start --consumer.request.timeout.ms=100
but it didn't work and using --help didn't print anything useful. In the document on http://docs.confluent.io/1.0/kafka-rest/docs/index.html, I couldn't find any examples of how to set these properties. I'm sure it's an easy thing to do, but I only see documentation of the options, not how to actually set them. Thanks for any help.
wes
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/28f89a85-658b-41ea-9ea0-437fea8cb877%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Wes,You pass a config file as a command line parameter, much like other Kafka and Confluent Platform scripts:./bin/kafka-rest-start config/kafka-rest.propertiesSee that file for a few (commented out) examples of how to override settings. The defaults are setup to work well with a local test configuration, which minimizes typing when you're just testing or getting started. But for pretty much any production setup you'll need at least a few settings changed, most obviously the zookeeper and schema registry URL settings.-Ewen
On Mon, Sep 21, 2015 at 4:15 PM, <w...@addimation.com> wrote:
How do you set consumer.request.timeout.ms on the REST API server? I tried./bin/kafka-rest-start --consumer.request.timeout.ms=100
but it didn't work and using --help didn't print anything useful. In the document on http://docs.confluent.io/1.0/kafka-rest/docs/index.html, I couldn't find any examples of how to set these properties. I'm sure it's an easy thing to do, but I only see documentation of the options, not how to actually set them. Thanks for any help.
wes
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platform+unsub...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/28f89a85-658b-41ea-9ea0-437fea8cb877%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--Thanks,
Ewen