From 26793353eca7b2c7b723978e384b0bc9c9ccb0ba Mon Sep 17 00:00:00 2001 From: Michael Warkentin Date: Thu, 17 Apr 2014 14:35:58 -0400 Subject: [PATCH] Fix typo --- website/source/intro/vs/zookeeper.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/intro/vs/zookeeper.html.markdown b/website/source/intro/vs/zookeeper.html.markdown index 6355897652..eeab0d1996 100644 --- a/website/source/intro/vs/zookeeper.html.markdown +++ b/website/source/intro/vs/zookeeper.html.markdown @@ -37,7 +37,7 @@ to the number of nodes and place the demand on a fixed number of servers. Additi failure detection window is at least as long as the TTL. ZooKeeper provides ephemeral nodes which are K/V entries that are removed when a client disconnects. These are more sophisticated than a heartbeat system, but also have inherent scalability issues and add -client side complexity. All clients must maintain active connecitons to the ZooKeeper servers, +client side complexity. All clients must maintain active connections to the ZooKeeper servers, and perform keep-alives. Additionally, this requires "thick clients", which are difficult to write and often result in difficult to debug issues.