resource.cpp 5.8 KB
Newer Older
W
wangguibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2019 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.

W
wangguibao 已提交
15
#include "predictor/framework/resource.h"
W
wangguibao 已提交
16
#include <string>
W
wangguibao 已提交
17 18
#include "predictor/common/inner_common.h"
#include "predictor/framework/infer.h"
W
wangguibao 已提交
19 20 21 22 23

namespace baidu {
namespace paddle_serving {
namespace predictor {

W
wangguibao 已提交
24 25
using configure::ResourceConf;

W
wangguibao 已提交
26 27 28
// __thread bool p_thread_initialized = false;

static void dynamic_resource_deleter(void* d) {
W
sdk-cpp  
wangguibao 已提交
29
#if 1
W
wangguibao 已提交
30
  LOG(INFO) << "dynamic_resource_delete on " << bthread_self();
W
sdk-cpp  
wangguibao 已提交
31
#endif
W
wangguibao 已提交
32
  delete static_cast<DynamicResource*>(d);
W
wangguibao 已提交
33 34 35 36 37 38
}

DynamicResource::DynamicResource() {}

DynamicResource::~DynamicResource() {}

39
int DynamicResource::initialize() { return 0; }
W
wangjiawei04 已提交
40

41
std::shared_ptr<RocksDBWrapper> Resource::getDB() { return db; }
W
wangguibao 已提交
42

W
wangguibao 已提交
43
int DynamicResource::clear() { return 0; }
W
wangguibao 已提交
44 45

int Resource::initialize(const std::string& path, const std::string& file) {
W
wangguibao 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  ResourceConf resource_conf;
  if (configure::read_proto_conf(path, file, &resource_conf) != 0) {
    LOG(ERROR) << "Failed initialize resource from: " << path << "/" << file;
    return -1;
  }

  // mempool
  if (MempoolWrapper::instance().initialize() != 0) {
    LOG(ERROR) << "Failed proc initialized mempool wrapper";
    return -1;
  }
  LOG(WARNING) << "Successfully proc initialized mempool wrapper";

  if (FLAGS_enable_model_toolkit) {
    int err = 0;
    std::string model_toolkit_path = resource_conf.model_toolkit_path();
    if (err != 0) {
      LOG(ERROR) << "read model_toolkit_path failed, path[" << path
                 << "], file[" << file << "]";
      return -1;
W
wangguibao 已提交
66
    }
W
wangguibao 已提交
67 68 69 70 71
    std::string model_toolkit_file = resource_conf.model_toolkit_file();
    if (err != 0) {
      LOG(ERROR) << "read model_toolkit_file failed, path[" << path
                 << "], file[" << file << "]";
      return -1;
W
wangguibao 已提交
72
    }
W
wangguibao 已提交
73 74 75 76 77
    if (InferManager::instance().proc_initialize(
            model_toolkit_path.c_str(), model_toolkit_file.c_str()) != 0) {
      LOG(ERROR) << "failed proc initialize modeltoolkit, config: "
                 << model_toolkit_path << "/" << model_toolkit_file;
      return -1;
W
wangguibao 已提交
78
    }
W
wangguibao 已提交
79 80 81 82 83 84
  }

  if (THREAD_KEY_CREATE(&_tls_bspec_key, dynamic_resource_deleter) != 0) {
    LOG(ERROR) << "unable to create tls_bthread_key of thrd_data";
    return -1;
  }
85
  // init rocksDB instance
W
wangjiawei04 已提交
86 87 88 89
  if (db.get() == nullptr) {
    db = RocksDBWrapper::RocksDBWrapperFactory("kvdb");
  }

W
wangguibao 已提交
90 91
  THREAD_SETSPECIFIC(_tls_bspec_key, NULL);
  return 0;
W
wangguibao 已提交
92 93 94
}

int Resource::thread_initialize() {
W
wangguibao 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
  // mempool
  if (MempoolWrapper::instance().thread_initialize() != 0) {
    LOG(ERROR) << "Failed thread initialized mempool wrapper";
    return -1;
  }
  LOG(WARNING) << "Successfully thread initialized mempool wrapper";

  // infer manager
  if (FLAGS_enable_model_toolkit &&
      InferManager::instance().thrd_initialize() != 0) {
    LOG(ERROR) << "Failed thrd initialized infer manager";
    return -1;
  }

  DynamicResource* p_dynamic_resource =
      reinterpret_cast<DynamicResource*>(THREAD_GETSPECIFIC(_tls_bspec_key));
  if (p_dynamic_resource == NULL) {
    p_dynamic_resource = new (std::nothrow) DynamicResource;
    if (p_dynamic_resource == NULL) {
      LOG(ERROR) << "failed to create tls DynamicResource";
      return -1;
W
wangguibao 已提交
116
    }
W
wangguibao 已提交
117 118 119 120 121
    if (p_dynamic_resource->initialize() != 0) {
      LOG(ERROR) << "DynamicResource initialize failed.";
      delete p_dynamic_resource;
      p_dynamic_resource = NULL;
      return -1;
W
wangguibao 已提交
122 123
    }

W
wangguibao 已提交
124 125 126 127 128
    if (THREAD_SETSPECIFIC(_tls_bspec_key, p_dynamic_resource) != 0) {
      LOG(ERROR) << "unable to set tls DynamicResource";
      delete p_dynamic_resource;
      p_dynamic_resource = NULL;
      return -1;
W
wangguibao 已提交
129
    }
W
wangguibao 已提交
130
  }
W
sdk-cpp  
wangguibao 已提交
131
#if 0
W
wangguibao 已提交
132
    LOG(INFO) << "Successfully thread initialized dynamic resource";
W
sdk-cpp  
wangguibao 已提交
133
#else
W
wangguibao 已提交
134 135 136
  LOG(INFO) << bthread_self()
            << ": Successfully thread initialized dynamic resource "
            << p_dynamic_resource;
W
wangguibao 已提交
137

W
sdk-cpp  
wangguibao 已提交
138
#endif
W
wangguibao 已提交
139
  return 0;
W
wangguibao 已提交
140 141 142
}

int Resource::thread_clear() {
W
wangguibao 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
  // mempool
  if (MempoolWrapper::instance().thread_clear() != 0) {
    LOG(ERROR) << "Failed thread clear mempool wrapper";
    return -1;
  }

  // infer manager
  if (FLAGS_enable_model_toolkit &&
      InferManager::instance().thrd_clear() != 0) {
    LOG(ERROR) << "Failed thrd clear infer manager";
    return -1;
  }

  DynamicResource* p_dynamic_resource =
      reinterpret_cast<DynamicResource*>(THREAD_GETSPECIFIC(_tls_bspec_key));
  if (p_dynamic_resource == NULL) {
W
sdk-cpp  
wangguibao 已提交
159
#if 0
W
wangguibao 已提交
160 161
    LOG(ERROR) << "tls dynamic resource shouldn't be null after "
        << "thread_initialize";
W
sdk-cpp  
wangguibao 已提交
162
#else
W
wangguibao 已提交
163 164 165
    LOG(ERROR)
        << bthread_self()
        << ": tls dynamic resource shouldn't be null after thread_initialize";
W
sdk-cpp  
wangguibao 已提交
166
#endif
W
wangguibao 已提交
167 168 169 170 171 172 173 174 175 176
    return -1;
  }
  if (p_dynamic_resource->clear() != 0) {
    LOG(ERROR) << "Failed to invoke dynamic resource clear";
    return -1;
  }

  LOG(INFO) << bthread_self() << "Resource::thread_clear success";
  // ...
  return 0;
W
wangguibao 已提交
177 178 179
}

int Resource::reload() {
W
wangguibao 已提交
180 181 182 183 184 185 186
  if (FLAGS_enable_model_toolkit && InferManager::instance().reload() != 0) {
    LOG(ERROR) << "Failed reload infer manager";
    return -1;
  }

  // other resource reload here...
  return 0;
W
wangguibao 已提交
187 188 189
}

int Resource::finalize() {
W
wangguibao 已提交
190 191 192 193 194
  if (FLAGS_enable_model_toolkit &&
      InferManager::instance().proc_finalize() != 0) {
    LOG(ERROR) << "Failed proc finalize infer manager";
    return -1;
  }
W
wangguibao 已提交
195

W
wangguibao 已提交
196
  THREAD_KEY_DELETE(_tls_bspec_key);
W
wangguibao 已提交
197

W
wangguibao 已提交
198
  return 0;
W
wangguibao 已提交
199 200
}

W
wangguibao 已提交
201 202 203
}  // namespace predictor
}  // namespace paddle_serving
}  // namespace baidu