kv_client.py 2.9 KB
Newer Older
K
kuizhiqing 已提交
1
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2
#
K
kuizhiqing 已提交
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
6
#
K
kuizhiqing 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
K
kuizhiqing 已提交
9 10 11 12 13 14 15 16 17 18 19
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import requests
import time


class KVClient(object):
20

K
kuizhiqing 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    def __init__(self, endpoint='localhost:2379'):
        self.endpoint = endpoint if endpoint.startswith(
            "http://") else "http://{}".format(endpoint)

    def put(self, key, value):
        key = key if key.startswith('/') else "/{}".format(key)
        u = "{}{}".format(self.endpoint, key)
        try:
            r = requests.post(u, data=value, timeout=3)
            if r.status_code == 200:
                return True
            else:
                return False
        except:
            return False

    def get(self, key):
        key = key if key.startswith('/') else "/{}".format(key)
        u = "{}{}".format(self.endpoint, key)
        try:
            r = requests.get(u, timeout=3)
            if r.status_code == 200:
                ret = r.json()
                return ret.get(key, '')
            else:
                return "error"
        except:
            return ""

    def get_prefix(self, key):
        key = key if key.startswith('/') else "/{}".format(key)
        u = "{}{}".format(self.endpoint, key)
        try:
            r = requests.get(u, timeout=3)
            if r.status_code == 200:
                return r.json()
        except:
            return ""

    def delete(self, key):
        key = key if key.startswith('/') else "/{}".format(key)
        u = "{}{}".format(self.endpoint, key)
        try:
            r = requests.delete(u, timeout=3)
            if r.status_code == 200:
                return True
            else:
                return False
        except:
            return False

    def wait_server_ready(self, timeout=3):
        end = time.time() + timeout
        while time.time() < end:
            if self.get("/healthy") == "ok":
                return True


if __name__ == '__main__':
    cli = PKVClient("http://localhost:8090")
    data = {"/workers/1": "rank1", "/workers/2": "rank2"}
    for k, v in data.items():
        cli.put(k, v)
    x = cli.get_prefix("/workers")
    print(x)
    for k, v in data.items():
        assert x[k] == v

    cli.put("key", "value")
    print(cli.get("key"))
    assert cli.get("key") == "value"
    cli.delete("key")
    print(cli.get("/key"))
    print(cli.get("/healthy"))
    assert cli.get("/healthy") == "ok"