linkers_socket.cpp 6.8 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifdef USE_SOCKET
#include "linkers.h"

#include <LightGBM/utils/common.h>
#include <LightGBM/utils/text_reader.h>

#include <LightGBM/config.h>

#include <cstring>

#include <unordered_map>
#include <unordered_set>
#include <vector>
#include <thread>
#include <chrono>
#include <string>

namespace LightGBM {

Linkers::Linkers(NetworkConfig config) {
21
  is_init_ = false;
Guolin Ke's avatar
Guolin Ke committed
22
23
24
25
26
27
28
  // start up socket
  TcpSocket::Startup();
  network_time_ = std::chrono::duration<double, std::milli>(0);
  num_machines_ = config.num_machines;
  local_listen_port_ = config.local_listen_port;
  socket_timeout_ = config.time_out;
  rank_ = -1;
zhangyafeikimi's avatar
zhangyafeikimi committed
29
  // parse clients from file
30
  ParseMachineList(config.machines, config.machine_list_filename);
Guolin Ke's avatar
Guolin Ke committed
31
32
33
34
35
36
37
38
39
40
41
42
43

  if (rank_ == -1) {
    // get ip list of local machine
    std::unordered_set<std::string> local_ip_list = TcpSocket::GetLocalIpList();
    // get local rank
    for (size_t i = 0; i < client_ips_.size(); ++i) {
      if (local_ip_list.count(client_ips_[i]) > 0 && client_ports_[i] == local_listen_port_) {
        rank_ = static_cast<int>(i);
        break;
      }
    }
  }
  if (rank_ == -1) {
44
    Log::Fatal("Machine list file doesn't contain the local machine");
Guolin Ke's avatar
Guolin Ke committed
45
46
  }
  // construct listener
Guolin Ke's avatar
Guolin Ke committed
47
  listener_ = std::unique_ptr<TcpSocket>(new TcpSocket());
Guolin Ke's avatar
Guolin Ke committed
48
49
50
51
52
  TryBind(local_listen_port_);

  for (int i = 0; i < num_machines_; ++i) {
    linkers_.push_back(nullptr);
  }
53

Guolin Ke's avatar
Guolin Ke committed
54
55
56
57
58
59
60
61
  // construct communication topo
  bruck_map_ = BruckMap::Construct(rank_, num_machines_);
  recursive_halving_map_ = RecursiveHalvingMap::Construct(rank_, num_machines_);

  // construct linkers
  Construct();
  // free listener
  listener_->Close();
62
  is_init_ = true;
Guolin Ke's avatar
Guolin Ke committed
63
64
65
}

Linkers::~Linkers() {
66
67
68
69
70
  if (is_init_) {
    for (size_t i = 0; i < linkers_.size(); ++i) {
      if (linkers_[i] != nullptr) {
        linkers_[i]->Close();
      }
Guolin Ke's avatar
Guolin Ke committed
71
    }
72
73
    TcpSocket::Finalize();
    Log::Info("Finished linking network in %f seconds", network_time_ * 1e-3);
Guolin Ke's avatar
Guolin Ke committed
74
75
76
  }
}

77
78
79
80
81
82
83
84
85
86
87
void Linkers::ParseMachineList(const std::string& machines, const std::string& filename) {
  std::vector<std::string> lines;
  if (machines.empty()) {
    TextReader<size_t> machine_list_reader(filename.c_str(), false);
    machine_list_reader.ReadAllLines();
    if (machine_list_reader.Lines().empty()) {
      Log::Fatal("Machine list file %s doesn't exist", filename.c_str());
    }
    lines = machine_list_reader.Lines();
  } else {
    lines = Common::Split(machines.c_str(), ',');
Guolin Ke's avatar
Guolin Ke committed
88
  }
89
  for (auto& line : lines) {
Guolin Ke's avatar
Guolin Ke committed
90
91
92
93
94
95
    line = Common::Trim(line);
    if (line.find_first_of("rank=") != std::string::npos) {
      std::vector<std::string> str_after_split = Common::Split(line.c_str(), '=');
      Common::Atoi(str_after_split[1].c_str(), &rank_);
      continue;
    }
96
    std::vector<std::string> str_after_split = Common::Split(line.c_str(), ' ');
Guolin Ke's avatar
Guolin Ke committed
97
    if (str_after_split.size() != 2) {
98
99
100
101
      str_after_split = Common::Split(line.c_str(), ':');
      if (str_after_split.size() != 2) {
        continue;
      }
Guolin Ke's avatar
Guolin Ke committed
102
103
    }
    if (client_ips_.size() >= static_cast<size_t>(num_machines_)) {
104
      Log::Warning("machine_list size is larger than the parameter num_machines, ignoring redundant entries");
Guolin Ke's avatar
Guolin Ke committed
105
106
107
108
109
110
111
      break;
    }
    str_after_split[0] = Common::Trim(str_after_split[0]);
    str_after_split[1] = Common::Trim(str_after_split[1]);
    client_ips_.push_back(str_after_split[0]);
    client_ports_.push_back(atoi(str_after_split[1].c_str()));
  }
Guolin Ke's avatar
Guolin Ke committed
112
  if (client_ips_.empty()) {
113
114
    Log::Fatal("Cannot find any ip and port. \
                Please check machine_list_filename or machines parameter.");
115
  }
Guolin Ke's avatar
Guolin Ke committed
116
  if (client_ips_.size() != static_cast<size_t>(num_machines_)) {
117
    Log::Warning("World size is larger than the machine_list size, change world size to %d", client_ips_.size());
Guolin Ke's avatar
Guolin Ke committed
118
119
    num_machines_ = static_cast<int>(client_ips_.size());
  }
120

Guolin Ke's avatar
Guolin Ke committed
121
122
123
}

void Linkers::TryBind(int port) {
124
  Log::Info("Trying to bind port %d...", port);
Guolin Ke's avatar
Guolin Ke committed
125
  if (listener_->Bind(port)) {
126
    Log::Info("Binding port %d succeeded", port);
Guolin Ke's avatar
Guolin Ke committed
127
  } else {
128
    Log::Fatal("Binding port %d failed", port);
Guolin Ke's avatar
Guolin Ke committed
129
130
131
132
  }
}

void Linkers::SetLinker(int rank, const TcpSocket& socket) {
Guolin Ke's avatar
Guolin Ke committed
133
  linkers_[rank].reset(new TcpSocket(socket));
Guolin Ke's avatar
Guolin Ke committed
134
135
136
137
138
  // set timeout
  linkers_[rank]->SetTimeout(socket_timeout_ * 1000 * 60);
}

void Linkers::ListenThread(int incoming_cnt) {
139
  Log::Info("Listening...");
Guolin Ke's avatar
Guolin Ke committed
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
  char buffer[100];
  int connected_cnt = 0;
  while (connected_cnt < incoming_cnt) {
    // accept incoming socket
    TcpSocket handler = listener_->Accept();
    if (handler.IsClosed()) {
      continue;
    }
    // receive rank
    int read_cnt = 0;
    int size_of_int = static_cast<int>(sizeof(int));
    while (read_cnt < size_of_int) {
      int cur_read_cnt = handler.Recv(buffer + read_cnt, size_of_int - read_cnt);
      read_cnt += cur_read_cnt;
    }
    int* ptr_in_rank = reinterpret_cast<int*>(buffer);
    int in_rank = *ptr_in_rank;
    // add new socket
    SetLinker(in_rank, handler);
    ++connected_cnt;
  }
}

void Linkers::Construct() {
  // save ranks that need to connect with
  std::unordered_map<int, int> need_connect;
Guolin Ke's avatar
Guolin Ke committed
166
167
168
  for (int i = 0; i < num_machines_; ++i) {
    if (i != rank_) {
      need_connect[i] = 1;
Guolin Ke's avatar
Guolin Ke committed
169
170
171
172
173
174
175
176
177
178
179
180
181
    }
  }
  int need_connect_cnt = 0;
  int incoming_cnt = 0;
  for (auto it = need_connect.begin(); it != need_connect.end(); ++it) {
    int machine_rank = it->first;
    if (machine_rank >= 0 && machine_rank != rank_) {
      ++need_connect_cnt;
    }
    if (machine_rank < rank_) {
      ++incoming_cnt;
    }
  }
Guolin Ke's avatar
Guolin Ke committed
182

Guolin Ke's avatar
Guolin Ke committed
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
  // start listener
  listener_->SetTimeout(socket_timeout_);
  listener_->Listen(incoming_cnt);
  std::thread listen_thread(&Linkers::ListenThread, this, incoming_cnt);
  const int connect_fail_retry_cnt = 20;
  const int connect_fail_delay_time = 10 * 1000;  // 10s
  // start connect
  for (auto it = need_connect.begin(); it != need_connect.end(); ++it) {
    int out_rank = it->first;
    // let smaller rank connect to larger rank
    if (out_rank > rank_) {
      TcpSocket cur_socket;
      for (int i = 0; i < connect_fail_retry_cnt; ++i) {
        if (cur_socket.Connect(client_ips_[out_rank].c_str(), client_ports_[out_rank])) {
          break;
        } else {
199
          Log::Warning("Connecting to rank %d failed, waiting for %d milliseconds", out_rank, connect_fail_delay_time);
Guolin Ke's avatar
Guolin Ke committed
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
          std::this_thread::sleep_for(std::chrono::milliseconds(connect_fail_delay_time));
        }
      }
      // send local rank
      cur_socket.Send(reinterpret_cast<const char*>(&rank_), sizeof(rank_));
      SetLinker(out_rank, cur_socket);
    }
  }
  // wait for listener
  listen_thread.join();
  // print connected linkers
  PrintLinkers();
}

bool Linkers::CheckLinker(int rank) {
  if (linkers_[rank] == nullptr || linkers_[rank]->IsClosed()) {
    return false;
  }
  return true;
}

void Linkers::PrintLinkers() {
  for (int i = 0; i < num_machines_; ++i) {
    if (CheckLinker(i)) {
224
      Log::Info("Connected to rank %d", i);
Guolin Ke's avatar
Guolin Ke committed
225
226
227
228
229
230
231
    }
  }
}

}  // namespace LightGBM

#endif  // USE_SOCKET