Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0673E200C53 for ; Tue, 11 Apr 2017 18:57:46 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0500F160B7D; Tue, 11 Apr 2017 16:57:46 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 53F12160B9B for ; Tue, 11 Apr 2017 18:57:45 +0200 (CEST) Received: (qmail 30810 invoked by uid 500); 11 Apr 2017 16:57:44 -0000 Mailing-List: contact dev-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list dev@zookeeper.apache.org Received: (qmail 30799 invoked by uid 99); 11 Apr 2017 16:57:44 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Apr 2017 16:57:44 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id E9E6CC002D for ; Tue, 11 Apr 2017 16:57:43 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id P2Ihhmn0wtOE for ; Tue, 11 Apr 2017 16:57:42 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 8E2A25FC6F for ; Tue, 11 Apr 2017 16:57:42 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id D5E1EE0D3D for ; Tue, 11 Apr 2017 16:57:41 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 9142724067 for ; Tue, 11 Apr 2017 16:57:41 +0000 (UTC) Date: Tue, 11 Apr 2017 16:57:41 +0000 (UTC) From: "Marco P. (JIRA)" To: dev@zookeeper.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (ZOOKEEPER-2748) Admin command to voluntarily drop client connections MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 11 Apr 2017 16:57:46 -0000 [ https://issues.apache.org/jira/browse/ZOOKEEPER-2748?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marco P. updated ZOOKEEPER-2748: -------------------------------- Summary: Admin command to voluntarily drop client connections (was: Four-letter command to voluntarily drop client connections) Re-titling: s/4-letter command/admin command/ > Admin command to voluntarily drop client connections > ---------------------------------------------------- > > Key: ZOOKEEPER-2748 > URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2748 > Project: ZooKeeper > Issue Type: New Feature > Components: server > Reporter: Marco P. > Assignee: Marco P. > Priority: Minor > > In certain circumstances, it would be useful to be able to move clients from one server to another. > One example: a quorum that consists of 3 servers (A,B,C) with 1000 active client session, where 900 clients are connected to server A, and the remaining 100 are split over B and C (see example below for an example of how this can happen). > A will do a lot more work than B, C. > Overall throughput will benefit by having the clients more evenly divided. > In case of A failure, all its client will create an avalanche by migrating en masse to a different server. > There are other possible use cases for a mechanism to move clients: > - Migrate away all clients before a server restart > - Migrate away part of clients in response to runtime metrics (CPU/Memory usage, ...) > - Shuffle clients after adding more server capacity (i.e. adding Observer nodes) > The simplest form of rebalancing which does not require major changes of protocol or client code consists of requesting a server to voluntarily drop some number of connections. > Clients should be able to transparently move to a different server. > Patch introducing 4-letter commands to shed clients: > https://github.com/apache/zookeeper/pull/215 > -- -- -- > How client imbalance happens in the first place, an example. > Imagine servers A, B, C and 1000 clients connected. > Initially clients are spread evenly (i.e. 333 clients per server). > A: 333 (restarts: 0) > B: 333 (restarts: 0) > C: 334 (restarts: 0) > Now restart servers a few times, always in A, B, C order (e.g. to pick up a software upgrades or configuration changes). > Restart A: > A: 0 (restarts: 1) > B: 499 (restarts: 0) > C: 500 (restarts: 0) > Restart B: > A: 250 (restarts: 1) > B: 0 (restarts: 1) > C: 750 (restarts: 0) > Restart C: > A: 625 (restarts: 1) > B: 375 (restarts: 1) > C: 0 (restarts: 1) > The imbalance is pretty bad already. C is idle while A has a lot of work. > A second round of restarts makes the situation even worse: > Restart A: > A: 0 (restarts: 2) > B: 688 (restarts: 1) > C: 313 (restarts: 1) > Restart B: > A: 344 (restarts: 2) > B: 657 (restarts: 1) > C: 0 (restarts: 1) > Restart C: > A: 673 (restarts: 2) > B: 328 (restarts: 1) > C: 0 (restarts: 1) > Large cluster (5, 7, 9 servers) make the imbalance even more evident. -- This message was sent by Atlassian JIRA (v6.3.15#6346)