Skip to content

Commit 39e9ae2

Browse files
authored
Merge pull request #216 from nick-zh/doc-remove-deprecated-configs
remove deprecated configs from readme
2 parents 8bef798 + 27c9850 commit 39e9ae2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,13 @@ librdkafka can store offsets in a local file, or on the broker. The default is l
177177

178178
By default, the file is created in the current directory, with a name based on the topic and the partition. The directory can be changed by setting the ``offset.store.path`` [configuration property](https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md).
179179

180-
Other interesting properties are: ``offset.store.sync.interval.ms``, ``offset.store.method``, ``auto.commit.interval.ms``, ``auto.commit.enable``, ``offset.store.method``, ``group.id``.
180+
Other interesting properties are: ``auto.commit.interval.ms``, ``auto.commit.enable``, ``group.id``, ``max.poll.interval.ms``.
181181

182182
``` php
183183
<?php
184184

185185
$topicConf = new RdKafka\TopicConf();
186186
$topicConf->set("auto.commit.interval.ms", 1e3);
187-
$topicConf->set("offset.store.sync.interval.ms", 60e3);
188187

189188
$topic = $rk->newTopic("test", $topicConf);
190189

@@ -219,7 +218,7 @@ pcntl_sigprocmask(SIG_BLOCK, array(SIGIO));
219218
$conf->set('internal.termination.signal', SIGIO);
220219
```
221220

222-
### socket.blocking.max.ms
221+
### socket.blocking.max.ms (librdkafka < 1.0.0)
223222

224223
> Maximum time a broker socket operation may block. A lower value improves responsiveness at the expense of slightly higher CPU usage.
225224

0 commit comments

Comments
 (0)