data_set.h 12.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2018 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

17
#include <ThreadPool.h>
18 19 20
#include <fstream>
#include <memory>
#include <mutex>  // NOLINT
21
#include <set>
22 23
#include <string>
#include <thread>  // NOLINT
24
#include <unordered_set>
X
xjqbest 已提交
25
#include <utility>
26
#include <vector>
Y
yaoxuefeng 已提交
27 28 29 30
#ifdef PADDLE_WITH_GLOO
#include <gloo/broadcast.h>
#include "paddle/fluid/framework/fleet/gloo_wrapper.h"
#endif
31 32 33 34 35 36

#include "paddle/fluid/framework/data_feed.h"

namespace paddle {
namespace framework {

X
xjqbest 已提交
37 38 39 40 41 42 43 44 45 46
// Dataset is a abstract class, which defines user interfaces
// Example Usage:
//    Dataset* dataset = DatasetFactory::CreateDataset("InMemoryDataset")
//    dataset->SetFileList(std::vector<std::string>{"a.txt", "b.txt"})
//    dataset->SetThreadNum(1)
//    dataset->CreateReaders();
//    dataset->SetDataFeedDesc(your_data_feed_desc);
//    dataset->LoadIntoMemory();
//    dataset->SetTrainerNum(2);
//    dataset->GlobalShuffle();
47 48
class Dataset {
 public:
49 50
  Dataset() {}
  virtual ~Dataset() {}
51
  // set file list
52
  virtual void SetFileList(const std::vector<std::string>& filelist) = 0;
53
  // set readers' num
54
  virtual void SetThreadNum(int thread_num) = 0;
55
  // set workers' num
56
  virtual void SetTrainerNum(int trainer_num) = 0;
X
xjqbest 已提交
57 58
  // set fleet send batch size
  virtual void SetFleetSendBatchSize(int64_t size) = 0;
59
  // set fs name and ugi
60 61
  virtual void SetHdfsConfig(const std::string& fs_name,
                             const std::string& fs_ugi) = 0;
62 63
  // set customized download command, such as using afs api
  virtual void SetDownloadCmd(const std::string& download_cmd) = 0;
64 65
  // set data fedd desc, which contains:
  //   data feed name, batch size, slots
66
  virtual void SetDataFeedDesc(const std::string& data_feed_desc_str) = 0;
J
jiaqi 已提交
67 68
  // set channel num
  virtual void SetChannelNum(int channel_num) = 0;
69 70 71
  // set parse ins id
  virtual void SetParseInsId(bool parse_ins_id) = 0;
  virtual void SetParseContent(bool parse_content) = 0;
72 73
  virtual void SetParseLogKey(bool parse_logkey) = 0;
  virtual void SetEnablePvMerge(bool enable_pv_merge) = 0;
74
  virtual bool EnablePvMerge() = 0;
75
  virtual void SetMergeBySid(bool is_merge) = 0;
76
  // set merge by ins id
77
  virtual void SetMergeByInsId(int merge_size) = 0;
78
  virtual void SetGenerateUniqueFeasign(bool gen_uni_feasigns) = 0;
79 80
  // set fea eval mode
  virtual void SetFeaEval(bool fea_eval, int record_candidate_size) = 0;
81
  // get file list
82
  virtual const std::vector<std::string>& GetFileList() = 0;
83
  // get thread num
84
  virtual int GetThreadNum() = 0;
85
  // get worker num
86
  virtual int GetTrainerNum() = 0;
X
xjqbest 已提交
87 88
  // get fleet send batch size
  virtual int64_t GetFleetSendBatchSize() = 0;
X
xjqbest 已提交
89 90
  // get hdfs config
  virtual std::pair<std::string, std::string> GetHdfsConfig() = 0;
91 92
  // get download cmd
  virtual std::string GetDownloadCmd() = 0;
93
  // get data fedd desc
94
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() = 0;
J
jiaqi 已提交
95 96
  // get channel num
  virtual int GetChannelNum() = 0;
97 98
  // get readers, the reader num depend both on thread num
  // and filelist size
J
jiaqi 已提交
99 100 101
  virtual std::vector<paddle::framework::DataFeed*> GetReaders() = 0;
  // create input channel and output channel
  virtual void CreateChannel() = 0;
102 103 104
  // register message handler between workers
  virtual void RegisterClientToClientMsgHandler() = 0;
  // load all data into memory
105
  virtual void LoadIntoMemory() = 0;
J
jiaqi 已提交
106 107 108 109
  // load all data into memory in async mode
  virtual void PreLoadIntoMemory() = 0;
  // wait async load done
  virtual void WaitPreLoadDone() = 0;
110 111 112
  // release all memory data
  virtual void ReleaseMemory() = 0;
  // local shuffle data
113
  virtual void LocalShuffle() = 0;
114
  // global shuffle data
115
  virtual void GlobalShuffle(int thread_num = -1) = 0;
116
  virtual void SlotsShuffle(const std::set<std::string>& slots_to_replace) = 0;
117
  // create readers
118
  virtual void CreateReaders() = 0;
119
  // destroy readers
120
  virtual void DestroyReaders() = 0;
121 122
  // get memory data size
  virtual int64_t GetMemoryDataSize() = 0;
123 124
  // get memory data size in input_pv_channel_
  virtual int64_t GetPvDataSize() = 0;
125 126
  // get shuffle data size
  virtual int64_t GetShuffleDataSize() = 0;
127 128
  // merge by ins id
  virtual void MergeByInsId() = 0;
129 130 131 132 133 134
  // merge pv instance
  virtual void PreprocessInstance() = 0;
  // divide pv instance
  virtual void PostprocessInstance() = 0;
  // only for untest
  virtual void SetCurrentPhase(int current_phase) = 0;
135 136 137 138 139
  virtual void GenerateLocalTablesUnlock(int table_id, int feadim,
                                         int read_thread_num,
                                         int consume_thread_num,
                                         int shard_num) = 0;
  virtual void ClearLocalTables() = 0;
140 141 142 143 144 145
  // create preload readers
  virtual void CreatePreLoadReaders() = 0;
  // destroy preload readers after prelaod done
  virtual void DestroyPreLoadReaders() = 0;
  // set preload thread num
  virtual void SetPreLoadThreadNum(int thread_num) = 0;
H
hutuxian 已提交
146 147 148
  // seperate train thread and dataset thread
  virtual void DynamicAdjustChannelNum(int channel_num,
                                       bool discard_remaining_ins = false) = 0;
149 150 151
  virtual void DynamicAdjustReadersNum(int thread_num) = 0;
  // set fleet send sleep seconds
  virtual void SetFleetSendSleepSeconds(int seconds) = 0;
Y
yaoxuefeng 已提交
152
  virtual void SetHeterPs(bool enable_heterps) = 0;
153

154 155 156 157 158
 protected:
  virtual int ReceiveFromClient(int msg_type, int client_id,
                                const std::string& msg) = 0;
};

X
xjqbest 已提交
159 160
// DatasetImpl is the implementation of Dataset,
// it holds memory data if user calls load_into_memory
161
template <typename T>
162 163 164 165
class DatasetImpl : public Dataset {
 public:
  DatasetImpl();
  virtual ~DatasetImpl() {}
166 167 168 169

  virtual void SetFileList(const std::vector<std::string>& filelist);
  virtual void SetThreadNum(int thread_num);
  virtual void SetTrainerNum(int trainer_num);
X
xjqbest 已提交
170
  virtual void SetFleetSendBatchSize(int64_t size);
171 172
  virtual void SetHdfsConfig(const std::string& fs_name,
                             const std::string& fs_ugi);
173
  virtual void SetDownloadCmd(const std::string& download_cmd);
174
  virtual void SetDataFeedDesc(const std::string& data_feed_desc_str);
J
jiaqi 已提交
175
  virtual void SetChannelNum(int channel_num);
176 177
  virtual void SetParseInsId(bool parse_ins_id);
  virtual void SetParseContent(bool parse_content);
178 179 180 181
  virtual void SetParseLogKey(bool parse_logkey);
  virtual void SetEnablePvMerge(bool enable_pv_merge);
  virtual void SetMergeBySid(bool is_merge);

182
  virtual void SetMergeByInsId(int merge_size);
183
  virtual void SetGenerateUniqueFeasign(bool gen_uni_feasigns);
184
  virtual void SetFeaEval(bool fea_eval, int record_candidate_size);
D
dongdaxiang 已提交
185 186 187
  virtual const std::vector<std::string>& GetFileList() { return filelist_; }
  virtual int GetThreadNum() { return thread_num_; }
  virtual int GetTrainerNum() { return trainer_num_; }
H
hutuxian 已提交
188
  virtual Channel<T> GetInputChannel() { return input_channel_; }
189 190 191
  virtual void SetInputChannel(const Channel<T>& input_channel) {
    input_channel_ = input_channel;
  }
X
xjqbest 已提交
192
  virtual int64_t GetFleetSendBatchSize() { return fleet_send_batch_size_; }
X
xjqbest 已提交
193 194 195
  virtual std::pair<std::string, std::string> GetHdfsConfig() {
    return std::make_pair(fs_name_, fs_ugi_);
  }
196
  virtual std::string GetDownloadCmd();
197 198 199
  virtual const paddle::framework::DataFeedDesc& GetDataFeedDesc() {
    return data_feed_desc_;
  }
J
jiaqi 已提交
200
  virtual int GetChannelNum() { return channel_num_; }
201
  virtual bool EnablePvMerge() { return enable_pv_merge_; }
J
jiaqi 已提交
202 203
  virtual std::vector<paddle::framework::DataFeed*> GetReaders();
  virtual void CreateChannel();
204
  virtual void RegisterClientToClientMsgHandler();
205
  virtual void LoadIntoMemory();
J
jiaqi 已提交
206 207
  virtual void PreLoadIntoMemory();
  virtual void WaitPreLoadDone();
208
  virtual void ReleaseMemory();
209
  virtual void LocalShuffle();
210
  virtual void GlobalShuffle(int thread_num = -1);
211
  virtual void SlotsShuffle(const std::set<std::string>& slots_to_replace) {}
212 213 214
  virtual const std::vector<T>& GetSlotsOriginalData() {
    return slots_shuffle_original_data_;
  }
215
  virtual void CreateReaders();
216
  virtual void DestroyReaders();
217
  virtual int64_t GetMemoryDataSize();
218
  virtual int64_t GetPvDataSize();
219
  virtual int64_t GetShuffleDataSize();
220
  virtual void MergeByInsId() {}
221 222 223
  virtual void PreprocessInstance() {}
  virtual void PostprocessInstance() {}
  virtual void SetCurrentPhase(int current_phase) {}
224 225 226 227 228
  virtual void GenerateLocalTablesUnlock(int table_id, int feadim,
                                         int read_thread_num,
                                         int consume_thread_num,
                                         int shard_num) {}
  virtual void ClearLocalTables() {}
229 230 231
  virtual void CreatePreLoadReaders();
  virtual void DestroyPreLoadReaders();
  virtual void SetPreLoadThreadNum(int thread_num);
H
hutuxian 已提交
232 233
  virtual void DynamicAdjustChannelNum(int channel_num,
                                       bool discard_remaining_ins = false);
234 235
  virtual void DynamicAdjustReadersNum(int thread_num);
  virtual void SetFleetSendSleepSeconds(int seconds);
Y
yaoxuefeng 已提交
236
  virtual void SetHeterPs(bool enable_heterps);
D
dongdaxiang 已提交
237

T
Thunderbrook 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251
  std::vector<paddle::framework::Channel<T>>& GetMultiOutputChannel() {
    return multi_output_channel_;
  }

  std::vector<paddle::framework::Channel<T>>& GetCurOutputChannel() {
    if (cur_channel_ == 0) {
      return multi_output_channel_;
    } else {
      return multi_consume_channel_;
    }
  }

  Channel<T>& GetInputChannelRef() { return input_channel_; }

252
 protected:
D
dongdaxiang 已提交
253 254
  virtual int ReceiveFromClient(int msg_type, int client_id,
                                const std::string& msg);
255
  std::vector<std::shared_ptr<paddle::framework::DataFeed>> readers_;
256
  std::vector<std::shared_ptr<paddle::framework::DataFeed>> preload_readers_;
J
jiaqi 已提交
257
  paddle::framework::Channel<T> input_channel_;
258 259 260 261
  paddle::framework::Channel<PvInstance> input_pv_channel_;
  std::vector<paddle::framework::Channel<PvInstance>> multi_pv_output_;
  std::vector<paddle::framework::Channel<PvInstance>> multi_pv_consume_;

J
jiaqi 已提交
262 263 264
  int channel_num_;
  std::vector<paddle::framework::Channel<T>> multi_output_channel_;
  std::vector<paddle::framework::Channel<T>> multi_consume_channel_;
265
  std::vector<std::unordered_set<uint64_t>> local_tables_;
J
jiaqi 已提交
266 267 268 269
  // when read ins, we put ins from one channel to the other,
  // and when finish reading, we set cur_channel = 1 - cur_channel,
  // so if cur_channel=0, all data are in output_channel, else consume_channel
  int cur_channel_;
270 271
  std::vector<T> slots_shuffle_original_data_;
  RecordCandidateList slots_shuffle_rclist_;
272
  int thread_num_;
273
  int pull_sparse_to_local_thread_num_;
274 275
  paddle::framework::DataFeedDesc data_feed_desc_;
  int trainer_num_;
276 277
  std::vector<std::string> filelist_;
  size_t file_idx_;
H
hutuxian 已提交
278
  uint64_t total_fea_num_;
279
  std::mutex mutex_for_pick_file_;
H
hutuxian 已提交
280
  std::mutex mutex_for_fea_num_;
X
xjqbest 已提交
281 282
  std::string fs_name_;
  std::string fs_ugi_;
X
xjqbest 已提交
283
  int64_t fleet_send_batch_size_;
J
jiaqi 已提交
284 285
  int64_t fleet_send_sleep_seconds_;
  std::vector<std::thread> preload_threads_;
286
  bool merge_by_insid_;
287 288
  bool parse_ins_id_;
  bool parse_content_;
289 290 291 292
  bool parse_logkey_;
  bool merge_by_sid_;
  bool enable_pv_merge_;  // True means to merge pv
  int current_phase_;     // 1 join, 0 update
293
  size_t merge_size_;
294
  bool slots_shuffle_fea_eval_ = false;
295
  bool gen_uni_feasigns_ = false;
296
  int preload_thread_num_;
297 298
  std::mutex global_index_mutex_;
  int64_t global_index_ = 0;
299
  std::vector<std::shared_ptr<ThreadPool>> consume_task_pool_;
300
  std::vector<T> input_records_;  // only for paddleboxdatafeed
Y
yaoxuefeng 已提交
301
  bool enable_heterps_ = false;
302 303
};

304
// use std::vector<MultiSlotType> or Record as data type
J
jiaqi 已提交
305
class MultiSlotDataset : public DatasetImpl<Record> {
306 307
 public:
  MultiSlotDataset() {}
308
  virtual void MergeByInsId();
309 310 311
  virtual void PreprocessInstance();
  virtual void PostprocessInstance();
  virtual void SetCurrentPhase(int current_phase);
312 313 314 315 316 317 318 319 320 321
  virtual void GenerateLocalTablesUnlock(int table_id, int feadim,
                                         int read_thread_num,
                                         int consume_thread_num, int shard_num);
  virtual void ClearLocalTables() {
    for (auto& t : local_tables_) {
      t.clear();
      std::unordered_set<uint64_t>().swap(t);
    }
    std::vector<std::unordered_set<uint64_t>>().swap(local_tables_);
  }
322 323 324
  virtual void PreprocessChannel(
      const std::set<std::string>& slots_to_replace,
      std::unordered_set<uint16_t>& index_slot);  // NOLINT
325
  virtual void SlotsShuffle(const std::set<std::string>& slots_to_replace);
326 327 328
  virtual void GetRandomData(
      const std::unordered_set<uint16_t>& slots_to_replace,
      std::vector<Record>* result);
329 330 331
  virtual ~MultiSlotDataset() {}
};

D
dongdaxiang 已提交
332 333
}  // end namespace framework
}  // end namespace paddle