summary refs log tree commit diff
path: root/docs/tcp_replication.rst (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (#5849) Convert rst to markdown (#6040)dstipp2019-09-171-249/+0
| | | | | Converting some of the rst documentation to markdown. Attempted to preserve whitespace and line breaks to minimize cosmetic change.
* Fix tightloop over connecting to replication serverErik Johnston2019-02-261-1/+3
| | | | | | | | | | | | | | | If the client failed to process incoming commands during the initial set up of the replication connection it would immediately disconnect and reconnect, resulting in a tightloop. This can happen, for example, when subscribing to a stream that has a row that is too long in the backlog. The fix here is to not consider the connection successfully set up until the client has succesfully subscribed and caught up with the streams. This ensures that the retry logic timers aren't reset until then, meaning that if an error does happen during start up the client will continue backing off before retrying again.
* DocsErik Johnston2019-02-191-0/+5
|
* DocumentationErik Johnston2019-02-191-1/+20
|
* Add a brief list of commands to docsErik Johnston2017-03-311-0/+46
|
* Fix up docsErik Johnston2017-03-311-8/+8
|
* Fix indentation in docs/Erik Johnston2017-03-301-25/+28
|
* Initial TCP protocol implementationErik Johnston2017-03-301-0/+174
This defines the low level TCP replication protocol