brpc_ps_server.h 7.2 KB
Newer Older
T
tangwei12 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
//
// 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
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// 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.

#pragma once

#include "brpc/channel.h"
#include "brpc/controller.h"
#include "brpc/server.h"
20 21
#include "paddle/fluid/distributed/ps/service/brpc_utils.h"
#include "paddle/fluid/distributed/ps/service/server.h"
T
tangwei12 已提交
22

23 24 25 26 27 28 29 30 31 32
namespace brpc {
class Controller;
}  // namespace brpc
namespace google {
namespace protobuf {
class Closure;
class RpcController;
}  // namespace protobuf
}  // namespace google

T
tangwei12 已提交
33 34 35
namespace paddle {
namespace distributed {

36 37 38 39
class PsRequestMessage;
class PsResponseMessage;
class Table;

T
tangwei12 已提交
40 41 42 43
class BrpcPsServer : public PSServer {
 public:
  BrpcPsServer() {}
  virtual ~BrpcPsServer() {}
Z
zhaocaibei123 已提交
44 45
  virtual uint64_t Start(const std::string &ip, uint32_t port);
  virtual int32_t Stop() {
T
tangwei12 已提交
46 47 48 49 50 51 52 53
    std::unique_lock<std::mutex> lock(mutex_);
    stoped_ = true;
    cv_.notify_all();

    _server.Stop(1000);
    _server.Join();
    return 0;
  }
Z
zhaocaibei123 已提交
54
  int32_t Port();
T
tangwei12 已提交
55

Z
zhaocaibei123 已提交
56 57 58 59 60 61
  virtual int32_t StartS2S() override;
  virtual ::std::future<int32_t> SendPServer2PServerMsg(
      int msg_type, int to_pserver_id, const std::string &msg) override;
  virtual int32_t ReceiveFromPServer(int msg_type, int pserver_id,
                                     const std::string &msg) override;

T
tangwei12 已提交
62
 private:
Z
zhaocaibei123 已提交
63
  virtual int32_t Initialize();
T
tangwei12 已提交
64 65 66 67 68 69 70 71
  mutable std::mutex mutex_;
  std::condition_variable cv_;
  bool stoped_ = false;
  brpc::Server _server;
  std::shared_ptr<PsBaseService> _service;
  std::vector<std::shared_ptr<brpc::Channel>> _pserver_channels;
};

T
tangwei12 已提交
72
class BrpcPsService;
T
tangwei12 已提交
73

T
tangwei12 已提交
74
typedef int32_t (BrpcPsService::*serviceHandlerFunc)(
T
tangwei12 已提交
75 76 77
    Table *table, const PsRequestMessage &request, PsResponseMessage &response,
    brpc::Controller *cntl);

T
tangwei12 已提交
78
class BrpcPsService : public PsBaseService {
T
tangwei12 已提交
79
 public:
Z
zhaocaibei123 已提交
80
  virtual int32_t Initialize() override;
T
tangwei12 已提交
81 82

  virtual void service(::google::protobuf::RpcController *controller,
T
tangwei12 已提交
83 84
                       const PsRequestMessage *request,
                       PsResponseMessage *response,
T
tangwei12 已提交
85 86 87
                       ::google::protobuf::Closure *done) override;

 private:
Z
zhaocaibei123 已提交
88 89 90 91 92 93
  int32_t InitializeShardInfo();
  int32_t PullDense(Table *table, const PsRequestMessage &request,
                    PsResponseMessage &response, brpc::Controller *cntl);
  int32_t PushDense(Table *table, const PsRequestMessage &request,
                    PsResponseMessage &response, brpc::Controller *cntl);
  int32_t PushDenseParam(Table *table, const PsRequestMessage &request,
T
tangwei12 已提交
94
                         PsResponseMessage &response, brpc::Controller *cntl);
Z
zhaocaibei123 已提交
95 96 97 98 99 100 101
  int32_t PushSparseParam(Table *table, const PsRequestMessage &request,
                          PsResponseMessage &response, brpc::Controller *cntl);
  int32_t PullSparse(Table *table, const PsRequestMessage &request,
                     PsResponseMessage &response, brpc::Controller *cntl);
  int32_t PullGeoParam(Table *table, const PsRequestMessage &request,
                       PsResponseMessage &response, brpc::Controller *cntl);
  int32_t Barrier(Table *table, const PsRequestMessage &request,
T
tangwei12 已提交
102
                  PsResponseMessage &response, brpc::Controller *cntl);
Z
zhaocaibei123 已提交
103 104 105
  int32_t PushSparse(Table *table, const PsRequestMessage &request,
                     PsResponseMessage &response, brpc::Controller *cntl);
  int32_t LoadOneTable(Table *table, const PsRequestMessage &request,
T
tangwei12 已提交
106
                       PsResponseMessage &response, brpc::Controller *cntl);
Z
zhaocaibei123 已提交
107 108 109 110 111 112 113
  int32_t LoadAllTable(Table *table, const PsRequestMessage &request,
                       PsResponseMessage &response, brpc::Controller *cntl);
  int32_t SaveOneTable(Table *table, const PsRequestMessage &request,
                       PsResponseMessage &response, brpc::Controller *cntl);
  int32_t SaveAllTable(Table *table, const PsRequestMessage &request,
                       PsResponseMessage &response, brpc::Controller *cntl);
  int32_t ShrinkTable(Table *table, const PsRequestMessage &request,
T
tangwei12 已提交
114
                      PsResponseMessage &response, brpc::Controller *cntl);
Z
zhaocaibei123 已提交
115
  int32_t ClearOneTable(Table *table, const PsRequestMessage &request,
T
tangwei12 已提交
116
                        PsResponseMessage &response, brpc::Controller *cntl);
Z
zhaocaibei123 已提交
117 118 119 120 121 122 123 124
  int32_t ClearAllTable(Table *table, const PsRequestMessage &request,
                        PsResponseMessage &response, brpc::Controller *cntl);
  int32_t StopServer(Table *table, const PsRequestMessage &request,
                     PsResponseMessage &response, brpc::Controller *cntl);
  int32_t StartProfiler(Table *table, const PsRequestMessage &request,
                        PsResponseMessage &response, brpc::Controller *cntl);
  int32_t StopProfiler(Table *table, const PsRequestMessage &request,
                       PsResponseMessage &response, brpc::Controller *cntl);
T
tangwei12 已提交
125

Z
zhaocaibei123 已提交
126 127
  int32_t PrintTableStat(Table *table, const PsRequestMessage &request,
                         PsResponseMessage &response, brpc::Controller *cntl);
T
tangwei12 已提交
128

Z
zhaocaibei123 已提交
129 130
  int32_t PushGlobalStep(Table *table, const PsRequestMessage &request,
                         PsResponseMessage &response, brpc::Controller *cntl);
131

Z
zhaocaibei123 已提交
132 133 134 135 136 137 138 139 140 141
  int32_t CacheShuffle(Table *table, const PsRequestMessage &request,
                       PsResponseMessage &response, brpc::Controller *cntl);

  int32_t SaveCacheTable(Table *table, const PsRequestMessage &request,
                         PsResponseMessage &response, brpc::Controller *cntl);

  int32_t GetCacheThreshold(Table *table, const PsRequestMessage &request,
                            PsResponseMessage &response,
                            brpc::Controller *cntl);

T
tangwei12 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
  bool _is_initialize_shard_info;
  std::mutex _initialize_shard_mutex;
  std::unordered_map<int32_t, serviceHandlerFunc> _service_handler_map;
  std::unordered_map<int32_t, serviceHandlerFunc> _msg_handler_map;
  std::vector<float> _ori_values;
};

class DownpourPServerBrpcClosure : public PServerClosure {
 public:
  DownpourPServerBrpcClosure(size_t num, PServerCallBack callback)
      : PServerClosure(callback) {
    _waiting_num = num;
    _cntls.resize(num);
    _requests.resize(num);
    _responses.resize(num);
    for (size_t i = 0; i < num; ++i) {
      _cntls[i].reset(new brpc::Controller());
    }
  }
  virtual ~DownpourPServerBrpcClosure() {}

  virtual void Run() override {
    if (_waiting_num.fetch_sub(1) == 1) {
      _callback(this);
      delete this;
    }
  }
  PsRequestMessage *request(size_t i) { return &_requests[i]; }
  PsResponseMessage *response(size_t i) { return &_responses[i]; }
  brpc::Controller *cntl(size_t i) { return _cntls[i].get(); }
  int check_response(size_t request_idx, int cmd_id) { return 1; }
  int check_save_response(size_t request_idx, int cmd_id) { return 1; }

 private:
  std::atomic<int32_t> _waiting_num;
  std::vector<PsRequestMessage> _requests;
  std::vector<PsResponseMessage> _responses;
  std::vector<std::shared_ptr<brpc::Controller>> _cntls;
};
}  // namespace distributed
}  // namespace paddle