Skip to content

Commit

Permalink
Improve bootstrap.servers docs
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhill committed Mar 16, 2017
1 parent 890f9c8 commit a99edd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CONFIGURATION.md
Expand Up @@ -5,7 +5,7 @@ Property | C/P | Range | Default
-----------------------------------------|-----|-----------------|--------------:|--------------------------
builtin.features | * | | gzip, snappy, ssl, sasl, regex, lz4 | Indicates the builtin features for this build of librdkafka. An application can either query this value or attempt to set it with its list of required features to check for library support. <br>*Type: CSV flags*
client.id | * | | rdkafka | Client identifier. <br>*Type: string*
metadata.broker.list | * | | | Initial list of brokers. The application may also use `rd_kafka_brokers_add()` to add brokers during runtime. <br>*Type: string*
metadata.broker.list | * | | | Initial list of brokers as a CSV list of broker host or host:port. The application may also use `rd_kafka_brokers_add()` to add brokers during runtime. <br>*Type: string*
bootstrap.servers | * | | | Alias for `metadata.broker.list`
message.max.bytes | * | 1000 .. 1000000000 | 1000000 | Maximum transmit message size. <br>*Type: integer*
message.copy.max.bytes | * | 0 .. 1000000000 | 65535 | Maximum size for message to be copied to buffer. Messages larger than this will be passed by reference (zero-copy) at the expense of larger iovecs. <br>*Type: integer*
Expand Down
2 changes: 1 addition & 1 deletion src/rdkafka_conf.c
Expand Up @@ -130,7 +130,7 @@ static const struct rd_kafka_property rd_kafka_properties[] = {
"Client identifier.",
.sdef = "rdkafka" },
{ _RK_GLOBAL, "metadata.broker.list", _RK_C_STR, _RK(brokerlist),
"Initial list of brokers. "
"Initial list of brokers as a CSV list of broker host or host:port. "
"The application may also use `rd_kafka_brokers_add()` to add "
"brokers during runtime." },
{ _RK_GLOBAL, "bootstrap.servers", _RK_C_ALIAS, 0,
Expand Down

0 comments on commit a99edd7

Please sign in to comment.