Skip to content

Commit ba90272

Browse files
authored
Update README.md
1 parent b00a9ae commit ba90272

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,10 @@ client.Select("SELECT id, name FROM test.numbers", [] (const Block& block)
7676
client.Execute("DROP TABLE test.numbers");
7777
```
7878
Please note that `Client` instance is NOT thread-safe. I.e. you must create a separate `Client` for each thread or utilize some synchronization techniques.
79+
80+
## Retries
81+
If you wish to implement some retry logic atop of `clickhouse::Client` there are few simple rules to make you life easier:
82+
- If previous attempt threw an exception, then make sure to call `clickhouse::Client::ResetConnection()` before the next try.
83+
- For `clickhouse::Client::Insert()` you can reuse a block from previous try, no need to rebuild it from scratch.
84+
85+
See https://github.com/ClickHouse/clickhouse-cpp/issues/184 for details.

0 commit comments

Comments
 (0)