interceptor.cc 6.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2021 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.

#include "paddle/fluid/distributed/fleet_executor/interceptor.h"
16
#include "paddle/fluid/distributed/fleet_executor/carrier.h"
17
#include "paddle/fluid/distributed/fleet_executor/message_bus.h"
18
#include "paddle/fluid/distributed/fleet_executor/task_node.h"
19 20 21 22

namespace paddle {
namespace distributed {

23 24 25
Interceptor::Interceptor(int64_t interceptor_id, TaskNode* node)
    : interceptor_id_(interceptor_id), node_(node) {
  interceptor_thread_ = std::thread([this]() {
26 27
    VLOG(3) << "Interceptor " << interceptor_id_
            << " starts the thread pooling it's local mailbox.";
28 29 30 31
    PoolTheMailbox();
  });
}

32 33 34 35 36 37 38
Interceptor::~Interceptor() { Join(); }

void Interceptor::Join() {
  if (interceptor_thread_.joinable()) {
    interceptor_thread_.join();
  }
}
39

40
void Interceptor::RegisterMsgHandle(MsgHandle handle) { handle_ = handle; }
41 42 43 44

void Interceptor::Handle(const InterceptorMessage& msg) {
  if (handle_) {
    handle_(msg);
45 46 47 48 49
  } else {
    VLOG(3) << "Interceptor is using default message handler. This handler is "
               "only used for test purpose. Check whether you init interceptor "
               "in the proper way.";
    if (msg.message_type() == DATA_IS_READY) {
50 51 52 53 54 55
      if (node_->role() != 2) {
        VLOG(3) << "Fake handler is sending DATA_IS_READY message to: "
                << interceptor_id_ + 1 << ".";
        InterceptorMessage data_is_ready_msg;
        data_is_ready_msg.set_message_type(DATA_IS_READY);
        Send(interceptor_id_ + 1, data_is_ready_msg);
56 57 58
      } else {
        // NOTE: max run time is reach for last interceptor
        StopCarrier();
59
      }
60 61
    } else if (msg.message_type() == STOP) {
      stop_ = true;
62 63 64 65 66 67 68
      if (node_->role() != 2) {
        VLOG(3) << "Fake handler is sending STOP message to: "
                << interceptor_id_ + 1 << ".";
        InterceptorMessage stop_msg;
        stop_msg.set_message_type(STOP);
        Send(interceptor_id_ + 1, stop_msg);
      }
69
    }
70 71 72
  }
}

73 74 75 76 77 78 79
void Interceptor::StopCarrier() {
  Carrier& carrier_instance = Carrier::Instance();
  std::condition_variable& cond_var = carrier_instance.GetCondVar();
  // probably double notify, but ok for ut
  cond_var.notify_all();
}

80 81 82
std::condition_variable& Interceptor::GetCondVar() {
  // get the conditional var
  return cond_var_;
83 84 85 86
}

int64_t Interceptor::GetInterceptorId() const {
  // return the interceptor id
87
  return interceptor_id_;
88 89 90 91 92
}

bool Interceptor::EnqueueRemoteInterceptorMessage(
    const InterceptorMessage& interceptor_message) {
  // Called by Carrier, enqueue an InterceptorMessage to remote mailbox
93 94
  VLOG(3) << "Enqueue message: " << interceptor_message.message_type()
          << " into " << interceptor_id_ << "'s remote mailbox.";
95
  std::unique_lock<std::mutex> lock(remote_mailbox_mutex_);
96
  remote_mailbox_.push(interceptor_message);
97 98 99
  return true;
}

100
bool Interceptor::Send(int64_t dst_id, InterceptorMessage& msg) {
101 102
  msg.set_src_id(interceptor_id_);
  msg.set_dst_id(dst_id);
103
  return MessageBus::Instance().Send(msg);
104 105
}

106 107
void Interceptor::PoolTheMailbox() {
  // pool the local mailbox, parse the Message
108
  for (;;) {
109 110 111 112 113 114 115 116 117 118 119
    if (local_mailbox_.empty()) {
      // local mailbox is empty, fetch the remote mailbox
      VLOG(3) << interceptor_id_ << "'s local mailbox is empty. "
              << "Fetch the remote mailbox.";
      PADDLE_ENFORCE_EQ(FetchRemoteMailbox(), true,
                        platform::errors::InvalidArgument(
                            "Error encountered when fetch remote mailbox."));
    }
    const InterceptorMessage interceptor_message = local_mailbox_.front();
    local_mailbox_.pop();
    const MessageType message_type = interceptor_message.message_type();
120 121 122
    VLOG(3) << "Interceptor " << interceptor_id_ << " has received a message"
            << " from interceptor " << interceptor_message.src_id()
            << " with message: " << message_type << ".";
123

124
    Handle(interceptor_message);
125 126

    if (stop_) {
127
      // break the pooling thread
128
      VLOG(3) << "Interceptor " << interceptor_id_ << " is quiting.";
129 130 131
      break;
    }
  }
132 133 134 135 136
}

bool Interceptor::FetchRemoteMailbox() {
  // fetch all Message from remote mailbox to local mailbox
  // return true if remote mailbox not empty, otherwise return false
137 138 139 140 141 142 143 144 145 146
  std::unique_lock<std::mutex> lock(remote_mailbox_mutex_);
  cond_var_.wait(lock, [this]() { return !remote_mailbox_.empty(); });
  if (remote_mailbox_.empty()) {
    // the thread has been unblocked accidentally
    return false;
  }
  while (!remote_mailbox_.empty()) {
    local_mailbox_.push(std::move(remote_mailbox_.front()));
    remote_mailbox_.pop();
  }
147 148 149
  return true;
}

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
static InterceptorFactory::CreateInterceptorMap& GetInterceptorMap() {
  static InterceptorFactory::CreateInterceptorMap interceptorMap;
  return interceptorMap;
}

std::unique_ptr<Interceptor> InterceptorFactory::Create(const std::string& type,
                                                        int64_t id,
                                                        TaskNode* node) {
  auto& interceptor_map = GetInterceptorMap();
  auto iter = interceptor_map.find(type);
  PADDLE_ENFORCE_NE(
      iter, interceptor_map.end(),
      platform::errors::NotFound("interceptor %s is not register", type));
  return iter->second(id, node);
}

void InterceptorFactory::Register(
    const std::string& type, InterceptorFactory::CreateInterceptorFunc func) {
  auto& interceptor_map = GetInterceptorMap();
  interceptor_map.emplace(type, func);
}

172 173
}  // namespace distributed
}  // namespace paddle