提交 6ed1e5d9 编写于 作者: W wangguibao

Remove dependency pcre; LOG(FATAL)->LOG(ERROR)

Change-Id: I27786f118f9a30d79e569323143ca6b230404aad
上级 849a8492
......@@ -69,7 +69,6 @@ include(external/leveldb)
include(external/protobuf)
include(external/snappy)
include(external/brpc)
include(external/pcre)
include(external/boost)
include(flags)
include(generic)
......@@ -83,7 +82,6 @@ set(EXTERNAL_LIBS
glog
protobuf
paddlepaddle
pcre
brpc
)
......
# Copyright (c) 2016 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(ExternalProject)
SET(PCRE_SOURCES_DIR ${THIRD_PARTY_PATH}/pcre)
SET(PCRE_INSTALL_DIR ${THIRD_PARTY_PATH}/install/pcre)
SET(PCRE_ROOT ${PCRE_INSTALL_DIR} CACHE FILEPATH "pcre root directory." FORCE)
SET(PCRE_INCLUDE_DIR "${PCRE_INSTALL_DIR}/include" CACHE PATH "pcre include directory." FORCE)
INCLUDE_DIRECTORIES(${PCRE_INCLUDE_DIR}) # For pcre code to include its own headers.
INCLUDE_DIRECTORIES(${THIRD_PARTY_PATH}/install) # For Paddle code to include pcre.h.
ExternalProject_Add(
extern_pcre
${EXTERNAL_PROJECT_LOG_ARGS}
SVN_REPOSITORY "svn://vcs.exim.org/pcre/code/tags/pcre-7.7"
PREFIX ${PCRE_SOURCES_DIR}
UPDATE_COMMAND ""
PATCH_COMMAND sh autogen.sh
CONFIGURE_COMMAND ../extern_pcre/configure --prefix=${PCRE_INSTALL_DIR} --disable-shared --with-pic
BUILD_COMMAND make
INSTALL_COMMAND make install
CMAKE_CACHE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${PCRE_INSTALL_DIR}
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON
-DCMAKE_BUILD_TYPE:STRING=${THIRD_PARTY_BUILD_TYPE}
)
IF(WIN32)
IF(NOT EXISTS "${PCRE_INSTALL_DIR}/lib/libz.lib")
add_custom_command(TARGET extern_pcre POST_BUILD
COMMAND cmake -E copy ${PCRE_INSTALL_DIR}/lib/pcrestatic.lib ${PCRE_INSTALL_DIR}/lib/libpcre.lib
)
ENDIF()
SET(PCRE_LIBRARIES "${PCRE_INSTALL_DIR}/lib/libpcre.lib" CACHE FILEPATH "pcre library." FORCE)
ELSE(WIN32)
SET(PCRE_LIBRARIES "${PCRE_INSTALL_DIR}/lib/libpcre.a" CACHE FILEPATH "pcre library." FORCE)
ENDIF(WIN32)
ADD_LIBRARY(pcre STATIC IMPORTED GLOBAL)
SET_PROPERTY(TARGET pcre PROPERTY IMPORTED_LOCATION ${PCRE_LIBRARIES})
ADD_DEPENDENCIES(pcre extern_pcre)
LIST(APPEND external_project_dependencies pcre)
#coding:gbk
COMPILER('gcc482')
#工作路径.
WORKROOT('../../../')
# version info
## module name
repo_module = REPO_PATH()
## git branch name (master/rb)
repo_name = REPO_BRANCH()
## last changed version
repo_version = REPO_LAST_CHANGED_REV()
version = repo_module + '_' + repo_name.split('/')[-1] + ',' + repo_version
build_time = os.popen('date +%Y-%m-%d_%H:%M:%S').read().strip()
#Preprocessor flags.
CPPFLAGS(r'-DPDSERVING_VERSION=\"%s\"' % (version))
CPPFLAGS(r'-DPDSERVING_BUILDTIME=\"%s\"' % (build_time))
#使用硬链接copy.
#CopyUsingHardLink(True)
#C++编译参数.
#CXXFLAGS('-fsanitize=address -g -DNDEBUG -O2 -pipe -W -Wall -fPIC -fno-omit-frame-pointer -Wno-deprecated \
# -Wno-unused-parameter -Wno-unused-variable -Wno-unused-local-typedefs -Wno-sign-compare \
# -std=c++11')
CXXFLAGS('-g -O2 -pipe -W -Wall -fPIC -fno-omit-frame-pointer -Wno-deprecated \
-Wno-unused-parameter -Wno-unused-variable -Wno-unused-local-typedefs -Wno-sign-compare \
-std=c++11')
#for profiler
#CPPFLAGS('-D__const__= -Dtypeof=__typeof__ -DUSE_PTHREAD -DUSE_XBOX -DBAIDU_RPC_ENABLE_CPU_PROFILER -DBAIDU_RPC_ENABLE_HEAP_PROFILER')
#使用C++11编译idl报错:error: ‘typeof’ was not declared in this scope,需要加上-Dtypeof=__typeof__
CPPFLAGS('-D__const__= -Dtypeof=__typeof__ -DUSE_PTHREAD')
#链接参数.
LDFLAGS('-lpthread -lcrypto -lrt -lssl -ldl -lz')
#依赖模块
CONFIGS('baidu/base/baidu-rpc@ci-base')
CONFIGS('baidu/im-common/mempool@mempool_1-0-1_BRANCH@git_branch')
CONFIGS('baidu/third-party/opencv@master@git_branch')
CONFIGS('public/configure@configure_1-2-17-0_PD_BL')
#CONFIGS('lib2-64/ullib@ullib_3-1-135-21782_PD_BL')
CONFIGS('third-64/boost@boost_1-63-0-101_PD_BL')
CONFIGS('public/bthread@ci-base')
CONFIGS('third-64/protobuf@protobuf_2-4-1-1100_PD_BL')
#CONFIGS('third-64/protobuf@protobuf_3-1-0-6209_PD_BL')
# for ut
CONFIGS('third-64/gtest@1.7.2.0')
# for profiler
#CONFIGS('thirdsrc/tcmalloc@2.5.0.5977', Libraries('libtcmalloc_and_profiler.a'))
# McCache
CONFIGS('baidu/base/cache@cache_3-1-7-21784_PD_BL')
INCPATHS('$OUT/include/')
PROTOFLAGS('--proto_path=.')
#ServiceGenerator
HEADERS(GLOB_GEN_SRCS('./proto/*.h'), '$INC/')
HEADERS(GLOB('./plugin/*.h'), '$INC/plugin')
Application('pdcodegen', Sources(GLOB('plugin/*.cc'), 'proto/pds_option.proto',
'src/pdcodegen.cpp', IncludePaths('. ./proto/ $OUT/include')))
HEADERS(GLOB_GEN_SRCS('./proto/*.h'), '$INC/')
HEADERS(GLOB('./proto/*.proto'), '$INC/proto')
HEADERS(GLOB('./common/*.h'), '$INC/common')
HEADERS(GLOB('./op/*.h'), '$INC/op')
HEADERS(GLOB('./framework/*.h'), '$INC/framework')
cpp_source_dirs = []
cpp_source_dirs.append('common/*.cpp')
cpp_source_dirs.append('op/*.cpp')
cpp_source_dirs.append('framework/*.cpp')
cpp_source_dirs.append('proto/*.proto')
#支持.proto作为源文件
PROTOFLAGS('--plugin=protoc-gen-pdcodegen=plugin/pdcodegen --pdcodegen_out proto --proto_path=.')
#StaticLib
StaticLibrary('pdserving',
Sources(GLOB(' '.join(cpp_source_dirs)), 'src/pdserving.cpp'),
LinkFlags('-lpthread -lcrypto -lm -lrt -lssl -ldl -lz'))
#可执行文件
Application('pdserving',
Sources(GLOB(' '.join(cpp_source_dirs)), 'src/pdserving.cpp'),
LinkFlags('-lpthread -lcrypto -lm -lrt -lssl -ldl -lz '))
Application('pdclient',
Sources(GLOB(' '.join(cpp_source_dirs)), 'src/pdclient.cpp'),
LinkFlags('-lpthread -lcrypto -lm -lrt -lssl -ldl -lz'))
#单元测试
ut_include='./include ./unittest $OUT/include'
ut_sources=GLOB('./unittest/*.cpp')
ut_cppflag='-Dprivate=public -Dprotected=public -DUNIT_TEST -std=c++11 -usercode_in_pthread -DUSE_PTHREAD'
ut_ldflags='-lpthread -lssl -lcrypto -lrt -ldl -lz -std=c++11 -usercode_in_pthread '
ut_gdbflag='-O0 -g -fpermissive -std=c++11 -usercode_in_pthread'
UTApplication(
'test_pdserving',
Sources(
ut_sources,
IncludePaths(ut_include),
CppFlags(ut_cppflag),
CxxFlags(ut_gdbflag)
),
Libraries('$OUT/lib/libpdserving.a'),
LinkFlags(ut_ldflags),
UTOnServer(True))
OUTPUT('./conf', '$OUT/')
OUTPUT('./data', '$OUT/')
OUTPUT('./scripts/images', '$OUT/data/')
OUTPUT('./scripts/start.sh', '$OUT/bin/')
#
# bcloud default makefile
# more details please refer to ./.bcloud.cache/makefile.*
#
.SILENT:
#
#makefile-self location, must be always on the top!!!
#
MAKEFILE_PATH_DEFAULT := $(word $(words $(MAKEFILE_LIST)), $(MAKEFILE_LIST))
MAKEFILE_DIR_DEFAULT := $(shell cd $(dir $(MAKEFILE_PATH_DEFAULT)) && pwd)
MAKEFILE_DEAULT := 'imported'
#
#Global Configs
#
WORK_ROOT := $(shell cd $(MAKEFILE_DIR_DEFAULT)/../../.. && pwd)
GCC_PATH := /opt/compiler/gcc-4.8.2/bin
#
#import global configs
#
ifneq ($(MAKEFILE_CONFIG), 'imported')
include $(MAKEFILE_DIR_DEFAULT)/.bcloud.cache/makefile.config
endif
.PHONEY: all clean distclean cleanall help
all: main
clean:
echo removing $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/\*.o ...
find $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor -name "*.o" | xargs rm -rf
echo removing $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/bin ...
rm -rf $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/bin
echo removing $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/lib ...
rm -rf $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/lib
echo removing $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/so ...
rm -rf $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/so
echo removing $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/test ...
rm -rf $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/test
echo removing $(WORK_ROOT)/baidu/paddle-serving/predictor/output ...
rm -rf $(WORK_ROOT)/baidu/paddle-serving/predictor/output
distclean:
echo removing $(WORK_ROOT)/baidu/paddle-serving/predictor/Makefile ...
rm -rf $(WORK_ROOT)/baidu/paddle-serving/predictor/Makefile
echo removing $(WORK_ROOT)/baidu/paddle-serving/predictor/.bcloud.cache/makefile.baidu_paddle-serving_predictor ...
rm -rf $(WORK_ROOT)/baidu/paddle-serving/predictor/.bcloud.cache/makefile.baidu_paddle-serving_predictor
echo removing $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor ...
rm -rf $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor
echo removing $(WORK_ROOT)/baidu/paddle-serving/predictor/output ...
rm -rf $(WORK_ROOT)/baidu/paddle-serving/predictor/output
echo -e '\033[32m[NOTICE]\033[0m'
echo -e \\tplease run \'bcloud local -M\' before next \'make\'!!!
cleanall:
echo removing $(WORK_ROOT)/bc_out ...
rm -rf $(WORK_ROOT)/bc_out
echo removing $(WORK_ROOT)/baidu/paddle-serving/predictor/output ...
rm -rf $(WORK_ROOT)/baidu/paddle-serving/predictor/output
echo removing $(WORK_ROOT)/baidu/paddle-serving/predictor/Makefile ...
rm -rf $(WORK_ROOT)/baidu/paddle-serving/predictor/Makefile
echo removing $(WORK_ROOT)/baidu/paddle-serving/predictor/.bcloud.cache/makefile\* ...
rm -rf $(WORK_ROOT)/baidu/paddle-serving/predictor/.bcloud.cache/makefile*
echo -e '\033[32m[NOTICE]\033[0m'
echo -e \\tplease run \'bcloud local or bcloud local -M ALL\' before next \'make\'!!!
app/ecom/elib/ecommon-lib: app/ecom/elib/ecommon-lib_deps
baidu/base/protobuf-json: baidu/base/protobuf-json_deps
baidu/base/common: baidu/base/common_deps
third-64/gtest: third-64/gtest_deps
baidu/base/bvar: baidu/base/bvar_deps
public/protobuf-json: public/protobuf-json_deps
baidu/base/cache: baidu/base/cache_deps
baidu/base/spreg: baidu/base/spreg_deps
baidu/bns/naming-lib: baidu/bns/naming-lib_deps
lib2-64/bsl: lib2-64/bsl_deps
third-64/gflags: third-64/gflags_deps
third-64/pcre: third-64/pcre_deps
lib2-64/cache: lib2-64/cache_deps
baidu/base/bthread: baidu/base/bthread_deps
third-64/leveldb: third-64/leveldb_deps
lib2-64/ullib: lib2-64/ullib_deps
public/common: public/common_deps
public/bvar: public/bvar_deps
baidu/base/bsl: baidu/base/bsl_deps
baidu/base/configure: baidu/base/configure_deps
public/spreg: public/spreg_deps
public/configure: public/configure_deps
baidu/base/ullib: baidu/base/ullib_deps
baidu/base/baidu-rpc: baidu/base/baidu-rpc_deps
third-64/libevent: third-64/libevent_deps
baidu/third-party/opencv: baidu/third-party/opencv_deps
baidu/base/dict: baidu/base/dict_deps
op/oped/noah/webfoot/naming-lib: op/oped/noah/webfoot/naming-lib_deps
baidu/elib/ecommon-lib: baidu/elib/ecommon-lib_deps
public/bthread: public/bthread_deps
public/noah/giano-lib/release/baas-lib-c: public/noah/giano-lib/release/baas-lib-c_deps
app/ecom/im/mempool: app/ecom/im/mempool_deps
baidu/base/mcpack2pb: baidu/base/mcpack2pb_deps
third-64/boost: third-64/boost_deps
public/baidu-rpc: public/baidu-rpc_deps
public/mcpack2pb: public/mcpack2pb_deps
baidu/base/iobuf: baidu/base/iobuf_deps
public/iobuf: public/iobuf_deps
baidu/im-common/mempool: baidu/im-common/mempool_deps
lib2-64/dict: lib2-64/dict_deps
help:
echo -e 'all available targets of make($(MAKE_VERSION)):\n'
echo ' all : will compile all targets and run release.bcloud'
echo ' no-release.bcloud: will compile all targets and not run release.bcloud'
echo ' no-ut : will compile all targets without ut and run release.bcloud'
echo ' test : will compile all targets, run ut and run release.bcloud'
echo ' clean : will only cleanup Intermediate files(such as .o, .so, .a, ut and bin) of main module:'
echo ' $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/bin'
echo ' $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/lib'
echo ' $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/so'
echo ' $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/\*.o'
echo ' $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor/output/test'
echo ' $(WORK_ROOT)/baidu/paddle-serving/predictor/output'
echo ' distclean : will cleanup makefile, intermediate files(such as .o, .so, .a, ut and bin) and pb.cc/pb.h idl.h/idl.cpp of main module:'
echo ' $(WORK_ROOT)/baidu/paddle-serving/predictor/Makefile'
echo ' $(WORK_ROOT)/baidu/paddle-serving/predictor/.bcloud.cache/makefile.baidu_paddle-serving_predictor'
echo ' $(WORK_ROOT)/bc_out/baidu/paddle-serving/predictor'
echo ' $(WORK_ROOT)/baidu/paddle-serving/predictor/output'
echo ' cleanall : will cleanup makefiles, intermediate files(such as .o, .so, .a, ut and bin) and pb.cc/pb.h idl.h/idl.cpp of all modules:'
echo ' $(WORK_ROOT)/bc_out'
echo ' $(WORK_ROOT)/baidu/paddle-serving/predictor/output'
echo ' $(WORK_ROOT)/baidu/paddle-serving/predictor/Makefile'
echo ' $(WORK_ROOT)/baidu/paddle-serving/predictor/.bcloud.cache/makefile*'
echo ' help : list all available make targets'
echo -e '\ntargets for the compile of dependency module:'
echo ' app/ecom/elib/ecommon-lib'
echo ' app/ecom/im/mempool'
echo ' baidu/base/baidu-rpc'
echo ' baidu/base/bsl'
echo ' baidu/base/bthread'
echo ' baidu/base/bvar'
echo ' baidu/base/cache'
echo ' baidu/base/common'
echo ' baidu/base/configure'
echo ' baidu/base/dict'
echo ' baidu/base/iobuf'
echo ' baidu/base/mcpack2pb'
echo ' baidu/base/protobuf-json'
echo ' baidu/base/spreg'
echo ' baidu/base/ullib'
echo ' baidu/bns/naming-lib'
echo ' baidu/elib/ecommon-lib'
echo ' baidu/im-common/mempool'
echo ' baidu/third-party/opencv'
echo ' lib2-64/bsl'
echo ' lib2-64/cache'
echo ' lib2-64/dict'
echo ' lib2-64/ullib'
echo ' op/oped/noah/webfoot/naming-lib'
echo ' public/baidu-rpc'
echo ' public/bthread'
echo ' public/bvar'
echo ' public/common'
echo ' public/configure'
echo ' public/iobuf'
echo ' public/mcpack2pb'
echo ' public/noah/giano-lib/release/baas-lib-c'
echo ' public/protobuf-json'
echo ' public/spreg'
echo ' third-64/boost'
echo ' third-64/gflags'
echo ' third-64/gtest'
echo ' third-64/leveldb'
echo ' third-64/libevent'
echo ' third-64/pcre'
#
#import dependency modules
#
ifneq ($(MAKEFILE_BAIDU_PADDLE-SERVING_PREDICTOR), 'imported')
include $(MAKEFILE_DIR_DEFAULT)/.bcloud.cache/makefile.baidu_paddle-serving_predictor
endif
####################################################################################################
# __ _ __ __ __ #
# / /_. (*) / /_. ____. / / _____. __ __. ______/ / #
# / __ \/ / / __ \ / ___/ / / / __ / / / / / / __ / / #
# / / / / / / /_/ / / /__ / / / /_/ / / /_/ / / /_/ / / #
# /_/ /_/_/ /_**__/ \_*_/ /_/ \_**_/ \_**_/ \__**__/ #
# #
####################################################################################################
No username is specified, will use the default user(wangguibao) information logined locally
[2019-02-11 16:32:52] [INFO] Start analyzing module dependency ...
[2019-02-11 16:32:52] [WARNING] BCLOUD has already changed, will re-analyze dependency
[2019-02-11 16:32:52] [WARNING] Please change CONFIGS('baidu/base/cache@cache_3-1-7-21784_PD_BL') to CONFIGS('lib2-64/cache@cache_3-1-7-21784_PD_BL') or CONFIGS('baidu/base/cache@xxx@git_branch') or CONFIGS('baidu/base/cache@xxx_PD_BL@git_tag') in /home/wangguibao/paddle/baidu/paddle-serving/predictor/BCLOUD
[2019-02-11 16:32:52] [WARNING] Please change CONFIGS('baidu/base/cache@cache_3-1-7-21784_PD_BL') to CONFIGS('lib2-64/cache@cache_3-1-7-21784_PD_BL'), because (cache_3-1-7-21784_PD_BL) was built on svn.
[2019-02-11 16:32:53] svn export https://svn.baidu.com/public/noah/tags/giano-lib/release/baas-lib-c/baas-lib-c_1-1-9-1482_PD_BL/BCLOUD /tmp/aa68fb3d9e1c8dfcd230dd04a5c58ca9 --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] [WARNING] baidu/im-common/mempool/BCLOUD:CONFIGS('third-64/gtest') is deprecated, use CONFIGS('third-64/gtest@base') instead. No more warnings for similar cases
svn export https://svn.baidu.com/app/ecom/elib/tags/ecommon-lib/ecommon-lib_1-1-14-392_PD_BL/BCLOUD /tmp/06b72c9ee669668d255335d893757dec --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/public/noah/tags/giano-lib/release/baas-lib-c/baas-lib-c_1-1-9-1482_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/third-64/tags/protobuf/protobuf_2-4-1-1100_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/op/oped/noah/tags/webfoot/naming-lib/naming-lib_1-0-32-0_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/third-64/tags/gflags/gflags_2-0-0-100_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/third-64/tags/leveldb/leveldb_1-0-0-0_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/third-64/tags/boost/boost_1-63-0-101_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/lib2-64/tags/dict/dict_3-1-22-0_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/app/ecom/elib/tags/ecommon-lib/ecommon-lib_1-1-14-392_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/third-64/tags/libevent/libevent_2-0-22-0_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/lib2-64/tags/bsl/bsl_1-1-42-22055_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/lib2-64/tags/cache/cache_3-1-7-21784_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/third-64/tags/gtest/gtest_1-7-2-0_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/third-64/tags/pcre/pcre_7-7-0-0_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/public/tags/spreg/spreg_1-0-10-0_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
[2019-02-11 16:32:55] svn info https://svn.baidu.com/public/tags/configure/configure_1-2-17-0_PD_BL -r HEAD --xml --username wangguibao --password ****** --non-interactive --trust-server-cert
####################################################################################################
# #
# WARNNING!!! #
# Fix the problem [Please change CONFIGS('xxx') to CONFIGS('yyy') above], #
# How to fix: http://ihelp.baidu.com/bcloud/42 #
# #
####################################################################################################
[2019-02-11 16:32:55] [INFO] Start check branch/tag name ...
[2019-02-11 16:32:55] export LC_ALL=en_US.UTF-8 GIT_SSL_NO_VERIFY=true && git ls-remote --heads https://wangguibao:******@icode.baidu.com/baidu/im-common/mempool mempool_1-0-1_BRANCH
############################################ Diff File #############################################
A/M baidu/paddle-serving/predictor/BCLOUD
A/M baidu/paddle-serving/predictor/common/constant.cpp
A/M baidu/paddle-serving/predictor/common/constant.h
A/M baidu/paddle-serving/predictor/framework/resource.cpp
A/M baidu/paddle-serving/predictor/framework/resource.h
A/M baidu/paddle-serving/predictor/src/pdserving.cpp
D baidu/paddle-serving/predictor/framework/rd_dict.cpp
D baidu/paddle-serving/predictor/framework/rd_dict.h
############################################ Task Info #############################################
TaskID : ffdfadb9c3392d9e09c573268e8c2c09
URL : ssh://icode.baidu.com:8235/baidu/paddle-serving/predictor
Workroot : /home/wangguibao/paddle
Module : baidu/paddle-serving/predictor
Builder OS : centos4u3 with kernel 2
Task Type : normal
Builder Master: 10.103.191.36
[INFO] builder will create workspace for module baidu/paddle-serving/predictor
[ 3%] https://svn.baidu.com/third-64/tags/libevent/libevent_2-0-22-0_PD_BL:1259 cached
[ 7%] https://svn.baidu.com/third-64/tags/gflags/gflags_2-0-0-100_PD_BL:860 cached
[ 11%] https://svn.baidu.com/op/oped/noah/tags/webfoot/naming-lib/naming-lib_1-0-32-0_PD_BL:235957 cached
[ 15%] ssh://icode.baidu.com:8235/baidu/third-party/opencv:master:952c2de156d02e786c6952229c8b2ce80095f1ea cached
[ 19%] https://svn.baidu.com/third-64/tags/pcre/pcre_7-7-0-0_PD_BL:153 cached
[ 23%] ssh://icode.baidu.com:8235/baidu/paddle-serving/predictor:refs/builder/c2d9e1a502afa0acb71ecae163003f82:078ed1f downloading ...
[ 26%] ssh://icode.baidu.com:8235/baidu/base/iobuf:stable:3485b863ec7e69cabe447df7078906f67adeb39f cached
[ 30%] ssh://icode.baidu.com:8235/baidu/base/ullib:stable:14e3bf274075fb929ea5e9a5023ca0d6351bd8c5 cached
[ 34%] https://svn.baidu.com/lib2-64/tags/bsl/bsl_1-1-42-22055_PD_BL:11439 cached
[ 38%] https://svn.baidu.com/lib2-64/tags/dict/dict_3-1-22-0_PD_BL:4768 cached
[ 42%] ssh://icode.baidu.com:8235/baidu/base/common:stable:bcabd2031e8496badd48c2a1f01b56f669689102 cached
[ 46%] ssh://icode.baidu.com:8235/baidu/base/bvar:bvar_1-0-112-1_PD_BL cached
[ 50%] ssh://icode.baidu.com:8235/baidu/base/baidu-rpc:baidu-rpc_1-0-11352-1_PD_BL cached
[ 53%] ssh://icode.baidu.com:8235/baidu/base/bthread:bthread_1-0-145-1_PD_BL cached
[ 57%] https://svn.baidu.com/public/tags/spreg/spreg_1-0-10-0_PD_BL:25135 cached
[ 61%] https://svn.baidu.com/third-64/tags/gtest/gtest_1-7-2-0_PD_BL:1253 cached
[ 65%] https://svn.baidu.com/lib2-64/tags/cache/cache_3-1-7-21784_PD_BL:9115 cached
[ 69%] https://svn.baidu.com/public/tags/configure/configure_1-2-17-0_PD_BL:25352 cached
[ 73%] ssh://icode.baidu.com:8235/baidu/im-common/mempool:mempool_1-0-1_BRANCH:44a12c43af6e5fe9a71591fe3247b250acfcd99b cached
[ 76%] https://svn.baidu.com/third-64/tags/protobuf/protobuf_2-4-1-1100_PD_BL:982 cached
[ 80%] https://svn.baidu.com/public/noah/tags/giano-lib/release/baas-lib-c/baas-lib-c_1-1-9-1482_PD_BL:1483 cached
[ 84%] ssh://icode.baidu.com:8235/baidu/base/mcpack2pb:stable:d5884073d5435030a07b204afdac26309309c231 cached
[ 88%] https://svn.baidu.com/app/ecom/elib/tags/ecommon-lib/ecommon-lib_1-1-14-392_PD_BL:393 cached
[ 92%] https://svn.baidu.com/third-64/tags/boost/boost_1-63-0-101_PD_BL:1241 cached
[ 96%] https://svn.baidu.com/third-64/tags/leveldb/leveldb_1-0-0-0_PD_BL:973 cached
[100%] ssh://icode.baidu.com:8235/baidu/base/protobuf-json:protobuf-json_1-0-41-1_PD_BL cached
[INFO] create workspace use 1.271s, total: 26, cached: 25
[INFO] =============== Preprocess [TaskID: ffdfadb9c3392d9e09c573268e8c2c09, Module: baidu/paddle-serving/predictor] ================
[INFO] [Stage-1/3] Handling Stage >>> [GenSources] ...
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/get_favicon.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/get_favicon.proto, takes 0.012s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/hulu_pbrpc_meta.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/hulu_pbrpc_meta.proto, takes 0.015s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/sofa_pbrpc_meta.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/sofa_pbrpc_meta.proto, takes 0.012s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/streaming_rpc_meta.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/streaming_rpc_meta.proto, takes 0.014s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/baidu_rpc_meta.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/baidu_rpc_meta.proto, takes 0.015s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/public_pbrpc_meta.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/public_pbrpc_meta.proto, takes 0.014s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/errno.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/errno.proto, takes 0.012s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/nshead_meta.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/nshead_meta.proto, takes 0.013s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/get_js.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/get_js.proto, takes 0.011s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/builtin_service.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/builtin_service.proto, takes 0.019s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/rdma.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/rdma.proto, takes 0.011s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/options.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/options.proto, takes 0.013s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/rpc_dump.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/rpc_dump.proto, takes 0.013s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/mongo.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/policy/mongo.proto, takes 0.014s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/rtmp.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/rtmp.proto, takes 0.013s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/span.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/span.proto, takes 0.017s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/trackme.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/trackme.proto, takes 0.013s
[INFO] [Stage-1/3 CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/itp_header.proto ...
[CMD] /home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/bin/protoc --plugin=protoc-gen-mcpack=../mcpack2pb/protoc-gen-mcpack.forbcloud --proto_path=./protocol -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/baidu/base/mcpack2pb -I/home/bcloud/bcloud_data/EE/BCLOUD_PROTOBUF/CompileServer/Task/ffdfadb9c3392d9e09c573268e8c2c09/third-64/protobuf/include --cpp_out=. --mcpack_out=. protocol/baidu/rpc/itp_header.proto, takes 0.021s
[INFO] [Stage-1/3] GenSources takes : 0.662s
[INFO] [Stage-2/3] Handling Stage >>> [Proto&IDL] ...
[INFO] [Stage-2/3 1/37] Preprocess baidu/paddle-serving/predictor/proto/pds_option.proto ...
[INFO] [Stage-2/3 2/37] Preprocess baidu/base/baidu-rpc/example/multi_threaded_mcpack_c++/echo.proto ...
[INFO] [Stage-2/3 3/37] Preprocess baidu/paddle-serving/predictor/proto/builtin_format.proto ...
[INFO] [Stage-2/3 4/37] Preprocess op/oped/noah/webfoot/naming-lib/msg/service.proto ...
[INFO] [Stage-2/3 5/37] Preprocess baidu/base/baidu-rpc/example/multi_threaded_ubrpc_compack_c++/echo.proto ...
[INFO] [Stage-2/3 6/37] Preprocess baidu/base/baidu-rpc/example/multi_threaded_echo_c++/echo.proto ...
[INFO] [Stage-2/3 7/37] Preprocess baidu/paddle-serving/predictor/proto/int64tensor_service.proto ...
[INFO] [Stage-2/3 8/37] Preprocess op/oped/noah/webfoot/naming-lib/msg/naming.proto ...
[INFO] [Stage-2/3 9/37] Preprocess baidu/base/baidu-rpc/example/multi_threaded_echo_fns_c++/echo.proto ...
[INFO] [Stage-2/3 10/37] Preprocess baidu/paddle-serving/predictor/proto/msg_data.proto ...
[INFO] [Stage-2/3 11/37] Preprocess baidu/base/baidu-rpc/example/partition_echo_c++/echo.proto ...
[INFO] [Stage-2/3 12/37] Preprocess baidu/base/baidu-rpc/example/nshead_pb_extension_c++/echo.proto ...
[INFO] [Stage-2/3 13/37] Preprocess baidu/base/baidu-rpc/example/echo_c++_sofa_pbrpc/echo.proto ...
[INFO] [Stage-2/3 14/37] Preprocess baidu/base/baidu-rpc/example/selective_echo_c++/echo.proto ...
[INFO] [Stage-2/3 15/37] Preprocess baidu/base/baidu-rpc/example/session_data_and_thread_local/echo.proto ...
[INFO] [Stage-2/3 16/37] Preprocess baidu/base/baidu-rpc/example/http_c++/http.proto ...
[INFO] [Stage-2/3 17/37] Preprocess baidu/base/baidu-rpc/example/echo_c++_public_pbrpc/echo.proto ...
[INFO] [Stage-2/3 18/37] Preprocess baidu/base/baidu-rpc/example/cancel_c++/echo.proto ...
[INFO] [Stage-2/3 19/37] Preprocess baidu/base/mcpack2pb/idl_options.proto ...
[INFO] [Stage-2/3 20/37] Preprocess baidu/base/baidu-rpc/example/backup_request_c++/echo.proto ...
[INFO] [Stage-2/3 21/37] Preprocess baidu/base/baidu-rpc/example/streaming_echo_c++/echo.proto ...
[INFO] [Stage-2/3 23/37] Preprocess baidu/base/baidu-rpc/example/echo_c++_nova_pbrpc/echo.proto ...
[INFO] [Stage-2/3 22/37] Preprocess baidu/base/baidu-rpc/example/echo_c++/echo.proto ...
[INFO] [Stage-2/3 24/37] Preprocess baidu/base/baidu-rpc/example/cascade_echo_c++/echo.proto ...
[INFO] [Stage-2/3 25/37] Preprocess baidu/paddle-serving/predictor/proto/echo_service.proto ...
[INFO] [Stage-2/3 26/37] Preprocess baidu/paddle-serving/predictor/proto/sparse_service.proto ...
[INFO] [Stage-2/3 27/37] Preprocess baidu/base/baidu-rpc/example/echo_c++_ubrpc_compack/echo.proto ...
[INFO] [Stage-2/3 28/37] Preprocess baidu/base/baidu-rpc/example/asynchronous_echo_c++/echo.proto ...
[INFO] [Stage-2/3 29/37] Preprocess baidu/base/baidu-rpc/example/echo_c++_hulu_pbrpc/echo.proto ...
[INFO] [Stage-2/3 30/37] Preprocess op/oped/noah/webfoot/naming-lib/msg/naminglib.proto ...
[INFO] [Stage-2/3 31/37] Preprocess baidu/base/baidu-rpc/example/parallel_echo_c++/echo.proto ...
[INFO] [Stage-2/3 32/37] Preprocess baidu/paddle-serving/predictor/proto/xrecord_format.proto ...
[INFO] [Stage-2/3 33/37] Preprocess baidu/base/baidu-rpc/example/dynamic_partition_echo_c++/echo.proto ...
[INFO] [Stage-2/3 34/37] Preprocess baidu/paddle-serving/predictor/proto/image_classification.proto ...
[INFO] [Stage-2/3 35/37] Preprocess baidu/base/baidu-rpc/example/multi_threaded_itp_c++/echo.proto ...
[INFO] [Stage-2/3 36/37] Preprocess baidu/paddle-serving/predictor/proto/dense_service.proto ...
[INFO] [Stage-2/3 37/37] Preprocess baidu/base/baidu-rpc/tools/rpc_view/view.proto ...
[INFO] [Stage-2/3] Proto&IDL takes : 0.572s
[INFO] [Stage-3/3] Handling Stage >>> [Publish header files] ...
[INFO] [Stage-3/3] Publish header files takes : 4.054s
[INFO] =========== Preprocess total takes : 5.512s
[INFO] ==========> Pack preprocess result ...
[INFO] =========== Pack preprocess result takes : 3.557s
[INFO] check gcc version use 0 ms
[INFO] start analyzing targets, ip:10.103.191.36 start:2019-02-11 16:33:07
[INFO] output time 0.05s
[INFO] start compiling targets(714), ip:10.103.191.36 start:2019-02-11 16:33:07
[ 1%] cached baidu/third-party/opencv/output/lib/libIlmImf.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/libippicv.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/liblibjasper.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/liblibjpeg.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/liblibpng.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/liblibtiff.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/liblibwebp.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/libopencv_calib3d.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/libopencv_core.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/libopencv_features2d.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/libopencv_flann.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/libopencv_highgui.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/libopencv_imgcodecs.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 1%] cached baidu/third-party/opencv/output/lib/libopencv_imgproc.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 2%] cached baidu/third-party/opencv/output/lib/libopencv_ml.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 2%] cached baidu/third-party/opencv/output/lib/libopencv_objdetect.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 2%] cached baidu/third-party/opencv/output/lib/libopencv_photo.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 2%] cached baidu/third-party/opencv/output/lib/libopencv_shape.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 2%] cached baidu/third-party/opencv/output/lib/libopencv_stitching.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 2%] cached baidu/third-party/opencv/output/lib/libopencv_superres.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 2%] cached baidu/third-party/opencv/output/lib/libopencv_video.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 3%] cached baidu/third-party/opencv/output/lib/libopencv_videoio.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 3%] cached baidu/third-party/opencv/output/lib/libopencv_videostab.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 3%] cached baidu/third-party/opencv/output/lib/libopencv_xfeatures2d.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 3%] cached lib2-64/bsl/output/lib/libbsl.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 3%] cached lib2-64/bsl/output/lib/libbsl_ResourcePool.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 3%] cached lib2-64/bsl/output/lib/libbsl_archive.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 3%] cached lib2-64/bsl/output/lib/libbsl_buffer.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 4%] cached lib2-64/bsl/output/lib/libbsl_check_cast.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 4%] cached lib2-64/bsl/output/lib/libbsl_exception.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 4%] cached lib2-64/bsl/output/lib/libbsl_pool.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 4%] cached lib2-64/bsl/output/lib/libbsl_utils.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 4%] cached lib2-64/bsl/output/lib/libbsl_var.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 4%] cached lib2-64/bsl/output/lib/libbsl_var_implement.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 4%] cached lib2-64/bsl/output/lib/libbsl_var_utils.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 5%] cached lib2-64/cache/output/lib/libmcache.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 5%] cached lib2-64/dict/output/lib/libuldict.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 5%] cached third-64/boost/output/lib/libboost_atomic.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 5%] cached third-64/boost/output/lib/libboost_chrono.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 5%] cached third-64/boost/output/lib/libboost_container.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 5%] cached third-64/boost/output/lib/libboost_context.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 5%] cached third-64/boost/output/lib/libboost_coroutine.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 6%] cached third-64/boost/output/lib/libboost_date_time.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 6%] cached third-64/boost/output/lib/libboost_exception.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 6%] cached third-64/boost/output/lib/libboost_filesystem.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 6%] cached third-64/boost/output/lib/libboost_graph.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 6%] cached third-64/boost/output/lib/libboost_iostreams.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 6%] cached third-64/boost/output/lib/libboost_locale.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 6%] cached third-64/boost/output/lib/libboost_log.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 7%] cached third-64/boost/output/lib/libboost_log_setup.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 7%] cached third-64/boost/output/lib/libboost_math_c99.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 7%] cached third-64/boost/output/lib/libboost_math_c99f.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 7%] cached third-64/boost/output/lib/libboost_math_c99l.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 7%] cached third-64/boost/output/lib/libboost_math_tr1.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 7%] cached third-64/boost/output/lib/libboost_math_tr1f.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 7%] cached third-64/boost/output/lib/libboost_math_tr1l.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 7%] cached third-64/boost/output/lib/libboost_prg_exec_monitor.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 8%] cached third-64/boost/output/lib/libboost_program_options.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 8%] cached third-64/boost/output/lib/libboost_python.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 8%] cached third-64/boost/output/lib/libboost_random.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 8%] cached third-64/boost/output/lib/libboost_regex.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 8%] cached third-64/boost/output/lib/libboost_serialization.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 8%] cached third-64/boost/output/lib/libboost_signals.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 8%] cached third-64/boost/output/lib/libboost_system.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 9%] cached third-64/boost/output/lib/libboost_test_exec_monitor.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 9%] cached third-64/boost/output/lib/libboost_thread.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 9%] cached third-64/boost/output/lib/libboost_timer.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 9%] cached third-64/boost/output/lib/libboost_unit_test_framework.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 9%] cached third-64/boost/output/lib/libboost_wave.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 9%] cached third-64/boost/output/lib/libboost_wserialization.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 9%] cached third-64/gflags/output/lib/libgflags.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 10%] cached third-64/gflags/output/lib/libgflags_nothreads.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 10%] cached third-64/gtest/output/lib/libgtest.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 10%] cached third-64/gtest/output/lib/libgtest_main.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 10%] cached third-64/leveldb/output/lib/libleveldb.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 10%] cached third-64/libevent/output/lib/libevent.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 10%] cached third-64/libevent/output/lib/libevent_core.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 10%] cached third-64/libevent/output/lib/libevent_extra.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 11%] cached third-64/libevent/output/lib/libevent_openssl.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 11%] cached third-64/libevent/output/lib/libevent_pthreads.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 11%] cached third-64/pcre/output/lib/libpcre.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 11%] cached third-64/pcre/output/lib/libpcrecpp.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 11%] cached third-64/pcre/output/lib/libpcreposix.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 11%] cached third-64/protobuf/output/lib/libprotobuf-lite.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 11%] cached third-64/protobuf/output/lib/libprotobuf.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 12%] cached third-64/protobuf/output/lib/libprotoc.a ip:10.103.191.36 start:2019-02-11 16:33:09 used:0ms
[ 12%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_heap.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:89ms
[ 12%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_string.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:184ms
[ 12%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_builtin_service.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:199ms
[ 12%] cached baidu/base/baidu-rpc/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_baidu_rpc_meta.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:187ms
[ 12%] cached baidu/base/baidu-rpc/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_public_pbrpc_meta.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:216ms
[ 12%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_has_epollrdhup.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:150ms
[ 13%] cached baidu/base/bvar/bvar/detail/baidu_base_bvar_bvar_lib_sampler.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:295ms
[ 13%] cached baidu/base/common/base/baidu_base_common_base_lib_time.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:145ms
[ 13%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_task_control.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:344ms
[ 13%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_baidu_naming_service.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:344ms
[ 13%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_threads_service.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:385ms
[ 13%] cached baidu/base/common/base/baidu_base_common_base_lib_callback_internal.cc.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:313ms
[ 13%] cached baidu/base/common/base/baidu_base_common_base_lib_sequence_checker_impl.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:240ms
[ 14%] cached baidu/base/common/base/third_party/xdg_mime/baidu_base_common_base_lib_xdgmimealias.c.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:106ms
[ 14%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_vlog_service.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:458ms
[ 14%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_stack_trace_posix.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:350ms
[ 14%] cached baidu/base/bthread/baidu_base_bthread_bthread_lib_bthread_id.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:395ms
[ 14%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_selective_channel.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:583ms
[ 14%] cached baidu/base/common/base/third_party/xdg_mime/baidu_base_common_base_lib_xdgmimeicon.c.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:134ms
[ 14%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_global.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:627ms
[ 14%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_server.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:631ms
[ 15%] cached baidu/base/common/base/files/baidu_base_common_base_lib_file_path.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:305ms
[ 15%] cached baidu/base/common/base/baidu_base_common_base_lib_file_util_linux.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:316ms
[ 15%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_sofa_pbrpc_protocol.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:660ms
[ 15%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_aligned_memory.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:282ms
[ 15%] cached baidu/base/common/base/files/baidu_base_common_base_lib_file_enumerator_posix.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:367ms
[ 15%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_http_message.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:544ms
[ 15%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_bad_method_service.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:09 used:719ms
[ 16%] cached baidu/base/common/base/json/baidu_base_common_base_lib_string_escape.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:343ms
[ 16%] cached baidu/base/common/base/third_party/snappy/baidu_base_common_base_lib_snappy.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:278ms
[ 16%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_singleton.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:324ms
[ 16%] cached baidu/base/common/base/baidu_base_common_base_lib_guid_posix.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:237ms
[ 16%] cached baidu/base/common/base/baidu_base_common_base_lib_rand_util_posix.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:271ms
[ 16%] cached baidu/base/common/base/message_loop/baidu_base_common_base_lib_message_loop_proxy_impl.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:340ms
[ 16%] cached baidu/base/ullib/src/comlog/comempool/baidu_base_ullib_ullib_lib_mempool.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:190ms
[ 17%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_latin1_string_conversions.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:138ms
[ 17%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_trace_event_synthetic_delay.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:297ms
[ 17%] cached baidu/base/common/base/baidu_base_common_base_lib_popen.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:279ms
[ 17%] cached baidu/base/common/base/message_loop/baidu_base_common_base_lib_message_loop_proxy.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:386ms
[ 17%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_iterator.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:196ms
[ 17%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_dump_without_crashing.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:295ms
[ 17%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_metrics.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:299ms
[ 18%] cached baidu/base/common/base/timer/baidu_base_common_base_lib_mock_timer.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:325ms
[ 18%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_thread_checker_impl.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:127ms
[ 18%] cached baidu/base/ullib/src/comlog/appender/baidu_base_ullib_ullib_lib_appender.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:195ms
[ 18%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_trace_event_system_stats_monitor.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:435ms
[ 18%] cached baidu/base/common/base/process/baidu_base_common_base_lib_memory_linux.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:276ms
[ 18%] cached baidu/base/common/base/synchronization/baidu_base_common_base_lib_cancellation_flag.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:254ms
[ 18%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_string_number_conversions.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:297ms
[ 19%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_thread_collision_warner.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:235ms
[ 19%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_handle_linux.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:248ms
[ 19%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_nova_pbrpc_protocol.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:537ms
[ 19%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_watchdog.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:223ms
[ 19%] cached baidu/base/common/base/timer/baidu_base_common_base_lib_timer.cc.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:241ms
[ 19%] cached op/oped/noah/webfoot/naming-lib/src/op_oped_noah_webfoot_naming-lib_webfoot_naming_lib_webfoot_util.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:190ms
[ 19%] cached public/configure/constraint/public_configure_config_lib_cc_default.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:10 used:254ms
[ 20%] cached public/configure/reader/public_configure_config_lib_Reader.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:218ms
[ 20%] cached public/noah/giano-lib/release/baas-lib-c/common/jsoncpp/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_json_reader.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:168ms
[ 20%] cached public/noah/giano-lib/release/baas-lib-c/mock/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_mock_proof_verifier_impl.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:224ms
[ 20%] cached baidu/base/common/base/synchronization/baidu_base_common_base_lib_waitable_event_posix.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:289ms
[ 20%] cached public/noah/giano-lib/release/baas-lib-c/common/jsoncpp/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_json_writer.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:176ms
[ 20%] cached public/noah/giano-lib/release/baas-lib-c/shared_object/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_shared_object.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:150ms
[ 20%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_delegation_params.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:193ms
[ 21%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_msg_data.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:901ms
[ 21%] cached baidu/base/common/base/baidu_base_common_base_lib_arena.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:136ms
[ 21%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_tvec.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:134ms
[ 21%] cached baidu/base/common/base/baidu_base_common_base_lib_guid.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:135ms
[ 21%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_bst.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:151ms
[ 21%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_pprof_perl.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:131ms
[ 21%] cached baidu/base/common/base/baidu_base_common_base_lib_base64.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:165ms
[ 21%] cached baidu/base/bthread/baidu_base_bthread_bthread_lib_bthread_errno.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:135ms
[ 22%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_ssl_option.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:139ms
[ 22%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_memorypool.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:173ms
[ 22%] cached baidu/base/common/base/baidu_base_common_base_lib_scoped_native_library.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:171ms
[ 22%] cached baidu/base/common/base/allocator/baidu_base_common_base_lib_allocator_extension_thunks.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:147ms
[ 22%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_strpool.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:177ms
[ 22%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_common.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:164ms
[ 22%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_reloadable_flags.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:162ms
[ 23%] cached baidu/base/baidu-rpc/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_nshead_meta.pb.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:205ms
[ 23%] cached baidu/base/baidu-rpc/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_streaming_rpc_meta.pb.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:173ms
[ 23%] cached baidu/base/common/base/allocator/baidu_base_common_base_lib_type_profiler_control.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:103ms
[ 23%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_container.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:208ms
[ 23%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_errno.pb.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:172ms
[ 23%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_rpc_dump.pb.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:181ms
[ 23%] cached baidu/base/common/base/baidu_base_common_base_lib_md5.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:229ms
[ 24%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_rdma.pb.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:224ms
[ 24%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_get_favicon.pb.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:241ms
[ 24%] cached app/ecom/elib/ecommon-lib/app_ecom_elib_ecommon-lib_ellib_lib_el_memorypool2.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:214ms
[ 24%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_span.pb.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:250ms
[ 24%] cached baidu/base/common/base/baidu_base_common_base_lib_callback_helpers.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:251ms
[ 24%] cached baidu/base/common/base/baidu_base_common_base_lib_atomicops_internals_x86_gcc.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:206ms
[ 24%] cached baidu/base/common/base/baidu_base_common_base_lib_sequenced_task_runner.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:255ms
[ 25%] cached baidu/base/common/base/baidu_base_common_base_lib_barrier_closure.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:236ms
[ 25%] cached app/ecom/elib/ecommon-lib/output/lib/libellib.a ip:10.103.191.36 start:2019-02-11 16:33:12 used:22ms
[ 25%] cached baidu/base/common/base/baidu_base_common_base_lib_big_endian.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:270ms
[ 25%] cached baidu/base/common/base/baidu_base_common_base_lib_pickle.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:264ms
[ 25%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_esp_message.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:289ms
[ 25%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_adaptive_connection_type.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:256ms
[ 25%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_hasher.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:251ms
[ 26%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_options.pb.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:269ms
[ 26%] cached baidu/base/common/base/baidu_base_common_base_lib_at_exit.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:303ms
[ 26%] cached baidu/base/baidu-rpc/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_mongo.pb.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:332ms
[ 26%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_rtmp.pb.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:260ms
[ 26%] cached baidu/base/common/base/baidu_base_common_base_lib_sys_info_linux.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:305ms
[ 26%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_http_method.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:282ms
[ 26%] cached baidu/base/common/base/baidu_base_common_base_lib_base_paths.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:293ms
[ 27%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_compress.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:328ms
[ 27%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_itp_header.pb.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:328ms
[ 27%] cached baidu/base/common/base/baidu_base_common_base_lib_base_paths_posix.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:329ms
[ 27%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_rtmp_utils.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:115ms
[ 27%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_usercode_backup_pool.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:328ms
[ 27%] cached baidu/base/bvar/bvar/detail/baidu_base_bvar_bvar_lib_percentile.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:360ms
[ 27%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_rpc_dump.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:368ms
[ 28%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_get_js.pb.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:324ms
[ 28%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_nshead_message.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:359ms
[ 28%] cached baidu/base/baidu-rpc/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_sofa_pbrpc_meta.pb.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:320ms
[ 28%] cached baidu/base/common/base/baidu_base_common_base_lib_base_switches.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:64ms
[ 28%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_periodic_naming_service.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:350ms
[ 28%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_hpack.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:326ms
[ 28%] cached baidu/base/common/base/baidu_base_common_base_lib_build_time.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:300ms
[ 28%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_redis_reply.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:359ms
[ 29%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_sparse_histogram.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:307ms
[ 29%] cached baidu/base/baidu-rpc/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_hulu_pbrpc_meta.pb.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:331ms
[ 29%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_amf.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:385ms
[ 29%] cached baidu/base/bthread/baidu_base_bthread_bthread_lib_bthread_cond.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:321ms
[ 29%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_sorttable_js.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:329ms
[ 29%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_nshead_service.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:388ms
[ 29%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_file_naming_service.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:418ms
[ 30%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_viz_min_js.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:394ms
[ 30%] cached baidu/base/common/base/baidu_base_common_base_lib_logging.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:395ms
[ 30%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_trackme.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:406ms
[ 30%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_interrupt_pthread.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:95ms
[ 30%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_uri.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:356ms
[ 30%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_method_status.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:427ms
[ 30%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_redis_authenticator.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:414ms
[ 31%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_index_service.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:434ms
[ 31%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_ids_service.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:379ms
[ 31%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_countdown_event.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:407ms
[ 31%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_get_favicon_service.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:415ms
[ 31%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_restful.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:415ms
[ 31%] cached baidu/base/common/base/timer/baidu_base_common_base_lib_elapsed_timer.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:152ms
[ 31%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_get_js_service.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:430ms
[ 32%] cached baidu/base/common/base/baidu_base_common_base_lib_crc32c.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:115ms
[ 32%] cached baidu/base/bthread/baidu_base_bthread_bthread_lib_bthread_mutex.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:432ms
[ 32%] cached baidu/base/common/base/baidu_base_common_base_lib_pending_task.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:268ms
[ 32%] cached baidu/base/common/base/baidu_base_common_base_lib_comlog_sink.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:384ms
[ 32%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_load_balancer_with_naming.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:388ms
[ 32%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_jquery_min_js.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:403ms
[ 32%] cached baidu/base/bvar/bvar/baidu_base_bvar_bvar_lib_collector.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:440ms
[ 33%] cached baidu/base/baidu-rpc/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_trackme.pb.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:404ms
[ 33%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_load_balancer.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:433ms
[ 33%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_tcmalloc_extension.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:159ms
[ 33%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_http_header.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:399ms
[ 33%] cached baidu/base/bthread/baidu_base_bthread_bthread_lib_bthread_fd.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:388ms
[ 33%] cached baidu/base/common/base/allocator/baidu_base_common_base_lib_allocator_extension.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:265ms
[ 33%] cached baidu/base/common/base/containers/baidu_base_common_base_lib_case_ignored_flat_map.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:69ms
[ 34%] cached baidu/base/common/base/baidu_base_common_base_lib_sha1_portable.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:205ms
[ 34%] cached baidu/base/common/base/baidu_base_common_base_lib_fast_rand.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:121ms
[ 34%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_retry_policy.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:418ms
[ 34%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_serialized_request.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:472ms
[ 34%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_sockets_service.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:480ms
[ 34%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_esp_authenticator.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:484ms
[ 34%] cached baidu/base/common/base/power_monitor/baidu_base_common_base_lib_power_monitor_device_source_posix.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:285ms
[ 35%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_redis_command.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:446ms
[ 35%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_memcache.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:447ms
[ 35%] cached baidu/base/bthread/baidu_base_bthread_bthread_lib_bthread_key.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:429ms
[ 35%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_flot_min_js.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:421ms
[ 35%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_sample_vector.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:326ms
[ 35%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_giano_authenticator.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:484ms
[ 35%] cached baidu/base/common/base/baidu_base_common_base_lib_hash.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:257ms
[ 35%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_http_status_code.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:499ms
[ 36%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_pprof_service.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:531ms
[ 36%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_snappy_compress.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:517ms
[ 36%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_debugger_posix.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:320ms
[ 36%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_utf_string_conversion_utils.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:141ms
[ 36%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_task_group.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:491ms
[ 36%] cached baidu/base/common/base/baidu_base_common_base_lib_fd_utility.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:106ms
[ 36%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_list_naming_service.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:448ms
[ 37%] cached baidu/base/ullib/src/comlog/appender/baidu_base_ullib_ullib_lib_ullogappender.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:180ms
[ 37%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_stack.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:395ms
[ 37%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_context.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:71ms
[ 37%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_couchbase_authenticator.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:369ms
[ 37%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_bthreads_service.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:483ms
[ 37%] cached baidu/base/common/base/baidu_base_common_base_lib_async_socket_io_handler_posix.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:310ms
[ 37%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_dynpart_load_balancer.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:508ms
[ 38%] cached baidu/base/common/base/baidu_base_common_base_lib_location.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:179ms
[ 38%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_timer_thread.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:469ms
[ 38%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_bucket_ranges.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:345ms
[ 38%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_redis.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:458ms
[ 38%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_dh.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:531ms
[ 38%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_partition_channel.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:546ms
[ 38%] cached baidu/base/common/base/files/baidu_base_common_base_lib_file_proxy.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:377ms
[ 39%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_common.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:534ms
[ 39%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_event_dispatcher.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:552ms
[ 39%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_discardable_memory_emulated.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:345ms
[ 39%] cached baidu/base/common/base/baidu_base_common_base_lib_errno.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:249ms
[ 39%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_version_service.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:580ms
[ 39%] cached baidu/base/bvar/bvar/baidu_base_bvar_bvar_lib_variable.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:345ms
[ 39%] cached baidu/base/common/base/time/baidu_base_common_base_lib_clock.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:162ms
[ 40%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_server_id.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:415ms
[ 40%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_execution_queue.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:340ms
[ 40%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_acceptor.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:605ms
[ 40%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_stats_table.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:236ms
[ 40%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_health_service.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:533ms
[ 40%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_domain_naming_service.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:521ms
[ 40%] cached baidu/base/common/base/power_monitor/baidu_base_common_base_lib_power_monitor.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:341ms
[ 41%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_proc_maps_linux.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:257ms
[ 41%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_baidu_rpc_protocol.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:619ms
[ 41%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_memory_pressure_listener.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:358ms
[ 41%] cached baidu/base/common/base/time/baidu_base_common_base_lib_time.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:329ms
[ 41%] cached baidu/base/common/base/baidu_base_common_base_lib_class_name.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:197ms
[ 41%] cached baidu/base/common/base/baidu_base_common_base_lib_supports_user_data.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:304ms
[ 41%] cached baidu/base/common/base/baidu_base_common_base_lib_zero_copy_stream_as_streambuf.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:168ms
[ 42%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_progressive_attachment.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:615ms
[ 42%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_randomized_load_balancer.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:607ms
[ 42%] cached baidu/base/common/base/baidu_base_common_base_lib_bind_helpers.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:291ms
[ 42%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_input_messenger.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:602ms
[ 42%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_posix.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:292ms
[ 42%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_nshead_mcpack_protocol.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:598ms
[ 42%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_protocol.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:606ms
[ 42%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_stats_counters.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:253ms
[ 43%] cached baidu/base/bthread/baidu_base_bthread_bthread_lib_bthread.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:423ms
[ 43%] cached baidu/base/common/base/third_party/murmurhash3/baidu_base_common_base_lib_murmurhash3.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:145ms
[ 43%] cached baidu/base/common/base/baidu_base_common_base_lib_event_recorder_stubs.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:109ms
[ 43%] cached baidu/base/common/base/files/baidu_base_common_base_lib_memory_mapped_file.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:327ms
[ 43%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_rpcz_service.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:577ms
[ 43%] cached baidu/base/common/base/baidu_base_common_base_lib_find_cstr.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:181ms
[ 43%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_ts.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:581ms
[ 44%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_http_parser.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:116ms
[ 44%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_parallel_channel.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:582ms
[ 44%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_protobufs_service.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:608ms
[ 44%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_status_service.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:592ms
[ 44%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_hotspots_service.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:622ms
[ 44%] cached baidu/base/ullib/src/comlog/appender/baidu_base_ullib_ullib_lib_ttyappender.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:178ms
[ 44%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_sys_string_conversions_posix.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:249ms
[ 45%] cached baidu/base/common/base/message_loop/baidu_base_common_base_lib_incoming_task_queue.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:383ms
[ 45%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_flags_service.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:583ms
[ 45%] cached baidu/base/common/base/baidu_base_common_base_lib_task_runner.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:266ms
[ 45%] cached baidu/base/bthread/bthread/baidu_base_bthread_bthread_lib_butex.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:402ms
[ 45%] cached baidu/base/bvar/bvar/baidu_base_bvar_bvar_lib_latency_recorder.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:391ms
[ 45%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_span.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:584ms
[ 45%] cached baidu/base/common/base/files/baidu_base_common_base_lib_temp_file.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:131ms
[ 46%] cached baidu/base/common/base/baidu_base_common_base_lib_cpu.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:167ms
[ 46%] cached baidu/base/common/base/third_party/xdg_mime/baidu_base_common_base_lib_xdgmimecache.c.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:145ms
[ 46%] cached baidu/base/common/base/baidu_base_common_base_lib_sync_socket_posix.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:385ms
[ 46%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_error.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:115ms
[ 46%] cached baidu/base/common/base/timer/baidu_base_common_base_lib_hi_res_timer_manager_posix.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:133ms
[ 46%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_naming_service_thread.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:656ms
[ 46%] cached baidu/base/common/base/baidu_base_common_base_lib_rand_util.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:266ms
[ 47%] cached baidu/base/common/base/baidu_base_common_base_lib_native_library_posix.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:295ms
[ 47%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_consistent_hashing_load_balancer.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:537ms
[ 47%] cached baidu/base/common/base/files/baidu_base_common_base_lib_file_enumerator.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:265ms
[ 47%] cached baidu/base/common/base/baidu_base_common_base_lib_unix_socket.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:260ms
[ 47%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_channel.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:674ms
[ 47%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_discardable_memory_malloc.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:354ms
[ 47%] cached baidu/base/common/base/files/baidu_base_common_base_lib_scoped_file.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:257ms
[ 48%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_list_service.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:617ms
[ 48%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_gzip_compress.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:325ms
[ 48%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_rtmp.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:692ms
[ 48%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_sample_map.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:332ms
[ 48%] cached baidu/base/common/base/baidu_base_common_base_lib_file_util_posix.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:440ms
[ 48%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_remote_file_naming_service.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:595ms
[ 48%] cached baidu/base/bvar/bvar/baidu_base_bvar_bvar_lib_gflag.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:316ms
[ 49%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_layout.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:145ms
[ 49%] cached baidu/base/common/base/profiler/baidu_base_common_base_lib_scoped_profile.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:311ms
[ 49%] cached baidu/base/common/base/third_party/snappy/baidu_base_common_base_lib_snappy-stubs-internal.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:181ms
[ 49%] cached baidu/base/common/base/baidu_base_common_base_lib_value_conversions.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:236ms
[ 49%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_http_rpc_protocol.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:673ms
[ 49%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_non_thread_safe_impl.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:347ms
[ 49%] cached baidu/base/common/base/synchronization/baidu_base_common_base_lib_condition_variable_posix.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:287ms
[ 50%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_udpdns.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:201ms
[ 50%] cached baidu/base/common/base/baidu_base_common_base_lib_sys_info.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:323ms
[ 50%] cached baidu/base/common/base/baidu_base_common_base_lib_version.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:325ms
[ 50%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_stream.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:739ms
[ 50%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_vars_service.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:624ms
[ 50%] cached baidu/base/common/base/profiler/baidu_base_common_base_lib_tracked_time.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:172ms
[ 50%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_trace_event_memory.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:314ms
[ 50%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_rtmp_protocol.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:697ms
[ 51%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_iterator_linux.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:293ms
[ 51%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_memcache_binary_protocol.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:742ms
[ 51%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_dir_service.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:671ms
[ 51%] cached baidu/base/common/base/baidu_base_common_base_lib_tracking_info.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:399ms
[ 51%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_utf_string_conversions.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:301ms
[ 51%] cached baidu/base/common/base/third_party/nspr/baidu_base_common_base_lib_prtime.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:262ms
[ 51%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_thread_local_storage.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:310ms
[ 52%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_controller.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:746ms
[ 52%] cached baidu/base/baidu-rpc/src/baidu/rpc/builtin/baidu_base_baidu-rpc_bdrpc_lib_connections_service.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:681ms
[ 52%] cached baidu/base/bvar/bvar/baidu_base_bvar_bvar_lib_default_variables.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:408ms
[ 52%] cached baidu/base/baidu-rpc/src/baidu/rpc/details/baidu_base_baidu-rpc_bdrpc_lib_ssl_helper.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:651ms
[ 52%] cached baidu/base/common/base/third_party/xdg_user_dirs/baidu_base_common_base_lib_xdg_user_dir_lookup.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:152ms
[ 52%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_net2.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:148ms
[ 52%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_statistics_recorder.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:338ms
[ 53%] cached baidu/base/common/base/baidu_base_common_base_lib_ini_parser.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:285ms
[ 53%] cached baidu/base/common/base/baidu_base_common_base_lib_path_service.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:387ms
[ 53%] cached baidu/base/common/base/json/baidu_base_common_base_lib_json_parser.cc.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:316ms
[ 53%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_worker_pool.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:316ms
[ 53%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_namemg.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:182ms
[ 53%] cached baidu/base/common/base/time/baidu_base_common_base_lib_tick_clock.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:141ms
[ 53%] cached baidu/base/common/base/third_party/xdg_mime/baidu_base_common_base_lib_xdgmimeparent.c.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:159ms
[ 54%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_trace_event_impl.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:358ms
[ 54%] cached baidu/base/common/base/files/baidu_base_common_base_lib_file_path_constants.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:216ms
[ 54%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_mongo_protocol.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:693ms
[ 54%] cached baidu/base/common/base/json/baidu_base_common_base_lib_json_reader.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:316ms
[ 54%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_streaming_rpc_protocol.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:613ms
[ 54%] cached baidu/base/common/base/time/baidu_base_common_base_lib_time_posix.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:302ms
[ 54%] cached baidu/base/common/base/files/baidu_base_common_base_lib_file.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:334ms
[ 55%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_alias.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:111ms
[ 55%] cached baidu/base/common/base/baidu_base_common_base_lib_thread_local.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:130ms
[ 55%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_profiler.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:342ms
[ 55%] cached baidu/base/common/base/files/baidu_base_common_base_lib_file_posix.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:301ms
[ 55%] cached baidu/base/common/base/baidu_base_common_base_lib_safe_strerror_posix.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:154ms
[ 55%] cached public/configure/compiler/src/public_configure_config_lib_idl.c.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:139ms
[ 55%] cached baidu/base/ullib/src/comlog/sendsvr/baidu_base_ullib_ullib_lib_loghead.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:208ms
[ 56%] cached baidu/base/ullib/src/comlog/sendsvr/baidu_base_ullib_ullib_lib_netappendersvr.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:194ms
[ 56%] cached baidu/base/mcpack2pb/mcpack/baidu_base_mcpack2pb_mcpack2pb_lib_field_type.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:112ms
[ 56%] cached baidu/base/common/base/files/baidu_base_common_base_lib_file_util_proxy.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:345ms
[ 56%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_thread_local_storage_posix.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:389ms
[ 56%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_nshead_protocol.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:737ms
[ 56%] cached baidu/base/common/base/baidu_base_common_base_lib_sys_info_posix.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:269ms
[ 56%] cached baidu/base/common/base/baidu_base_common_base_lib_thread_task_runner_handle.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:294ms
[ 57%] cached baidu/base/common/base/baidu_base_common_base_lib_command_line.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:315ms
[ 57%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_histogram_samples.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:311ms
[ 57%] cached baidu/base/common/base/baidu_base_common_base_lib_lazy_instance.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:355ms
[ 57%] cached baidu/base/common/base/message_loop/baidu_base_common_base_lib_message_pump.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:198ms
[ 57%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_public_pbrpc_protocol.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:715ms
[ 57%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_socket_map.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:733ms
[ 57%] cached public/noah/giano-lib/release/baas-lib-c/common/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_baas_lib_defines.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:113ms
[ 57%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_thread_id_name_manager.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:307ms
[ 58%] cached baidu/base/common/base/baidu_base_common_base_lib_linux_util.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:337ms
[ 58%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_discardable_memory.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:239ms
[ 58%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_itp.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:769ms
[ 58%] cached baidu/base/common/base/system_monitor/baidu_base_common_base_lib_system_monitor.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:322ms
[ 58%] cached baidu/base/common/base/baidu_base_common_base_lib_string_printf.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:208ms
[ 58%] cached baidu/base/common/base/baidu_base_common_base_lib_endpoint.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:296ms
[ 58%] cached baidu/base/ullib/src/comlog/sendsvr/baidu_base_ullib_ullib_lib_checksvr.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:191ms
[ 59%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_ubrpc2pb_protocol.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:816ms
[ 59%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_nshead_pb_service_adaptor.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:816ms
[ 59%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_ref_counted_memory.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:335ms
[ 59%] cached baidu/base/common/base/baidu_base_common_base_lib_tracked_objects.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:284ms
[ 59%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_histogram_snapshot_manager.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:250ms
[ 59%] cached baidu/base/common/base/task/baidu_base_common_base_lib_cancelable_task_tracker.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:298ms
[ 59%] cached baidu/base/common/base/baidu_base_common_base_lib_environment.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:270ms
[ 60%] cached baidu/base/mcpack2pb/baidu_base_mcpack2pb_mcpack2pb_lib_idl_options.pb.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:242ms
[ 60%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_linux.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:318ms
[ 60%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_client_utility.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:145ms
[ 60%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_worker_pool_posix.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:356ms
[ 60%] cached baidu/base/common/base/third_party/icu/baidu_base_common_base_lib_icu_utf.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:162ms
[ 60%] cached baidu/base/common/base/process/baidu_base_common_base_lib_launch.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:203ms
[ 60%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_safe_sprintf.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:125ms
[ 61%] cached baidu/base/common/base/json/baidu_base_common_base_lib_json_string_value_serializer.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:376ms
[ 61%] cached baidu/base/ullib/src/dep/baidu_base_ullib_ullib_lib_dep_exlink.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:173ms
[ 61%] cached baidu/base/common/base/baidu_base_common_base_lib_deferred_sequenced_task_runner.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:366ms
[ 61%] cached baidu/base/common/base/third_party/dmg_fp/baidu_base_common_base_lib_dtoa_wrapper.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:332ms
[ 61%] cached baidu/base/common/base/nix/baidu_base_common_base_lib_xdg_util.cc.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:373ms
[ 61%] cached baidu/base/common/base/baidu_base_common_base_lib_values.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:400ms
[ 61%] cached baidu/base/common/base/time/baidu_base_common_base_lib_default_tick_clock.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:232ms
[ 62%] cached baidu/base/common/base/baidu_base_common_base_lib_file_util.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:442ms
[ 62%] cached public/configure/constraint/public_configure_config_lib_ConstraintFunction.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:195ms
[ 62%] cached public/configure/public_configure_config_lib_ConfigUnit.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:12 used:204ms
[ 62%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_asan_invalid_access.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:272ms
[ 62%] cached baidu/base/protobuf-json/src/baidu_base_protobuf-json_json-pb_lib_protobuf_map.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:186ms
[ 62%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_field_trial.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:384ms
[ 62%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_redis_protocol.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:749ms
[ 63%] cached op/oped/noah/webfoot/naming-lib/msg/op_oped_noah_webfoot_naming-lib_webfoot_naming_lib_naming.pb.cc.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:161ms
[ 63%] cached baidu/base/ullib/src/comlog/appender/baidu_base_ullib_ullib_lib_quotachecker.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:260ms
[ 63%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_stack_trace.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:176ms
[ 63%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_locality_aware_load_balancer.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:527ms
[ 63%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_crash_logging.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:258ms
[ 63%] cached baidu/base/common/base/posix/baidu_base_common_base_lib_unix_domain_socket_linux.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:274ms
[ 63%] cached baidu/base/common/base/third_party/snappy/baidu_base_common_base_lib_snappy-sinksource.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:156ms
[ 64%] cached public/configure/compiler/src/public_configure_config_lib_idl_gram.c.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:168ms
[ 64%] cached baidu/im-common/mempool/src/baidu_im-common_mempool_mempool_lib_mempool.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:279ms
[ 64%] cached baidu/base/common/base/baidu_base_common_base_lib_run_loop.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:291ms
[ 64%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_hulu_pbrpc_protocol.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:871ms
[ 64%] cached baidu/base/common/base/process/baidu_base_common_base_lib_memory.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:314ms
[ 64%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_credential_generator.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:150ms
[ 64%] cached baidu/base/ullib/src/dep/baidu_base_ullib_ullib_lib_dep_http.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:201ms
[ 64%] cached baidu/base/common/base/message_loop/baidu_base_common_base_lib_message_pump_libevent.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:400ms
[ 65%] cached baidu/base/common/base/third_party/symbolize/baidu_base_common_base_lib_demangle.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:173ms
[ 65%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_histogram.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:455ms
[ 65%] cached baidu/base/common/base/third_party/xdg_mime/baidu_base_common_base_lib_xdgmimeint.c.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:227ms
[ 65%] cached baidu/base/common/base/files/baidu_base_common_base_lib_memory_mapped_file_posix.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:439ms
[ 65%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_shared_memory_posix.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:330ms
[ 65%] cached baidu/base/common/base/message_loop/baidu_base_common_base_lib_message_pump_default.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:351ms
[ 65%] cached public/noah/giano-lib/release/baas-lib-c/common/base/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_check_error.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:119ms
[ 66%] cached baidu/base/mcpack2pb/mcpack/baidu_base_mcpack2pb_mcpack2pb_lib_serializer.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:303ms
[ 66%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_trace_event_impl_constants.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:347ms
[ 66%] cached baidu/base/common/base/third_party/dynamic_annotations/baidu_base_common_base_lib_dynamic_annotations.c.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:166ms
[ 66%] cached baidu/base/common/base/third_party/dmg_fp/baidu_base_common_base_lib_g_fmt.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:167ms
[ 66%] cached public/noah/giano-lib/release/baas-lib-c/mock/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_mock_credential_verifier_impl.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:155ms
[ 66%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_histogram_base.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:343ms
[ 66%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_proof_generator.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:157ms
[ 67%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_ref_counted.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:209ms
[ 67%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_round_robin_load_balancer.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:581ms
[ 67%] cached baidu/base/common/base/debug/baidu_base_common_base_lib_debugger.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:304ms
[ 67%] cached baidu/base/mcpack2pb/mcpack/baidu_base_mcpack2pb_mcpack2pb_lib_mcpack2pb.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:12 used:325ms
[ 67%] cached baidu/base/common/base/posix/baidu_base_common_base_lib_global_descriptors.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:305ms
[ 67%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_baas_resource.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:151ms
[ 67%] cached op/oped/noah/webfoot/naming-lib/msg/op_oped_noah_webfoot_naming-lib_webfoot_naming_lib_service.pb.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:199ms
[ 68%] cached public/configure/compiler/src/public_configure_config_lib_idl_lex.c.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:176ms
[ 68%] cached baidu/base/common/base/json/baidu_base_common_base_lib_json_writer.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:350ms
[ 68%] cached baidu/base/ullib/src/comlog/appender/baidu_base_ullib_ullib_lib_asyncfileappender.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:303ms
[ 68%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_handle_posix.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:299ms
[ 68%] cached baidu/base/baidu-rpc/src/baidu/rpc/baidu_base_baidu-rpc_bdrpc_lib_socket.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:794ms
[ 68%] cached public/configure/public_configure_config_lib_ConfigGroup.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:211ms
[ 68%] cached public/configure/public_configure_config_lib_Configure.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:12 used:224ms
[ 69%] cached baidu/base/ullib/src/comlog/appender/baidu_base_ullib_ullib_lib_netappender.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:250ms
[ 69%] cached baidu/base/common/base/json/baidu_base_common_base_lib_json_file_value_serializer.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:309ms
[ 69%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_thread_restrictions.cc.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:133ms
[ 69%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_server_utility.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:13 used:157ms
[ 69%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_proof_verifier.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:159ms
[ 69%] cached baidu/base/common/base/time/baidu_base_common_base_lib_default_clock.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:183ms
[ 69%] cached baidu/base/common/base/baidu_base_common_base_lib_status.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:260ms
[ 70%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_thr.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:187ms
[ 70%] cached baidu/base/ullib/src/comlog/comempool/baidu_base_ullib_ullib_lib_dlist.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:115ms
[ 70%] cached baidu/base/protobuf-json/src/baidu_base_protobuf-json_json-pb_lib_encode_decode.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:168ms
[ 70%] cached baidu/base/common/base/process/baidu_base_common_base_lib_kill.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:284ms
[ 70%] cached baidu/base/common/base/baidu_base_common_base_lib_file_watcher.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:221ms
[ 70%] cached baidu/base/common/base/files/baidu_base_common_base_lib_scoped_temp_dir.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:431ms
[ 70%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_info_linux.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:360ms
[ 71%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_histogram_delta_serialization.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:333ms
[ 71%] cached baidu/base/baidu-rpc/src/baidu/rpc/policy/baidu_base_baidu-rpc_bdrpc_lib_esp_protocol.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:595ms
[ 71%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_string16.cc.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:193ms
[ 71%] cached baidu/base/common/base/third_party/modp_b64/baidu_base_common_base_lib_modp_b64.cc.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:189ms
[ 71%] cached baidu/base/common/base/files/baidu_base_common_base_lib_important_file_writer.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:399ms
[ 71%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_nullable_string16.cc.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:181ms
[ 71%] cached baidu/base/common/base/third_party/symbolize/baidu_base_common_base_lib_symbolize.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:251ms
[ 71%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_discardable_memory_linux.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:435ms
[ 72%] cached baidu/base/common/base/profiler/baidu_base_common_base_lib_alternate_timer.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:439ms
[ 72%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_pack.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:179ms
[ 72%] cached baidu/base/baidu-rpc/output/lib/libbdrpc.a ip:10.103.191.36 start:2019-02-11 16:33:13 used:23ms
[ 72%] cached baidu/base/ullib/src/comlog/appender/baidu_base_ullib_ullib_lib_fileappender.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:294ms
[ 72%] cached baidu/base/common/base/third_party/superfasthash/baidu_base_common_base_lib_superfasthash.c.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:174ms
[ 72%] cached baidu/base/common/base/message_loop/baidu_base_common_base_lib_message_loop.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:427ms
[ 72%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_string_util.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:335ms
[ 73%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_url.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:281ms
[ 73%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_platform_thread_linux.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:374ms
[ 73%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_discardable_memory_manager.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:451ms
[ 73%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_string_piece.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:321ms
[ 73%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_post_task_and_reply_impl.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:358ms
[ 73%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_sequenced_worker_pool.cc.o ip:10.103.191.34 start:2019-02-11 16:33:12 used:431ms
[ 73%] cached baidu/base/common/base/process/baidu_base_common_base_lib_kill_posix.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:366ms
[ 74%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_circle.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:178ms
[ 74%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_category.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:193ms
[ 74%] cached baidu/base/common/base/process/baidu_base_common_base_lib_internal_linux.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:304ms
[ 74%] cached baidu/base/common/base/third_party/xdg_mime/baidu_base_common_base_lib_xdgmimemagic.c.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:126ms
[ 74%] cached baidu/base/common/base/memory/baidu_base_common_base_lib_weak_ptr.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:337ms
[ 74%] cached baidu/base/common/testing/baidu_base_common_base_lib_multiprocess_func_list.cc.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:177ms
[ 74%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_string_util_constants.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:363ms
[ 75%] cached public/noah/giano-lib/release/baas-lib-c/mock/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_mock_common.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:163ms
[ 75%] cached baidu/base/ullib/src/comlog/appender/baidu_base_ullib_ullib_lib_appenderfactory.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:243ms
[ 75%] cached baidu/base/common/base/third_party/xdg_mime/baidu_base_common_base_lib_xdgmime.c.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:219ms
[ 75%] cached baidu/base/common/base/nix/baidu_base_common_base_lib_mime_util_xdg.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:359ms
[ 75%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_conf.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:161ms
[ 75%] cached baidu/base/common/base/process/baidu_base_common_base_lib_launch_posix.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:335ms
[ 75%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_xthread.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:139ms
[ 76%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_basiclogadapter.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:241ms
[ 76%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_net1.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:206ms
[ 76%] cached baidu/base/common/base/metrics/baidu_base_common_base_lib_user_metrics.cc.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:329ms
[ 76%] compile baidu/paddle-serving/predictor/plugin/baidu_paddle-serving_predictor_pdcodegen_app_substitute.cc.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:383ms
[ 76%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_comsig.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:182ms
[ 76%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_comlog.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:194ms
[ 76%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_utf_offset_string_conversions.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:413ms
[ 77%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_metrics_posix.cc.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:366ms
[ 77%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_file.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:194ms
[ 77%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_string_split.cc.o ip:10.102.26.39 start:2019-02-11 16:33:12 used:385ms
[ 77%] cached public/configure/public_configure_config_lib_FileReloader.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:270ms
[ 77%] cached public/configure/public_configure_config_lib_ConfigError.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:314ms
[ 77%] cached public/noah/giano-lib/release/baas-lib-c/authorization/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_access_controller.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:186ms
[ 77%] cached baidu/base/bthread/output/lib/libbthread.a ip:10.103.191.32 start:2019-02-11 16:33:13 used:71ms
[ 78%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_logstat.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:207ms
[ 78%] cached baidu/base/ullib/src/dep/baidu_base_ullib_ullib_lib_dep_file.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:163ms
[ 78%] cached baidu/base/common/base/strings/baidu_base_common_base_lib_stringprintf.cc.o ip:10.103.191.35 start:2019-02-11 16:33:12 used:426ms
[ 78%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_credential_context.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:161ms
[ 78%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_event.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:216ms
[ 78%] cached baidu/base/ullib/src/dep/baidu_base_ullib_ullib_lib_dep_udpdns.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:205ms
[ 78%] cached baidu/base/ullib/src/dep/baidu_base_ullib_ullib_lib_dep_pack.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:214ms
[ 78%] cached baidu/base/common/base/third_party/xdg_mime/baidu_base_common_base_lib_xdgmimeglob.c.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:114ms
[ 79%] cached public/noah/giano-lib/release/baas-lib-c/common/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_baas_log.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:175ms
[ 79%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_simple_thread.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:458ms
[ 79%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_platform_thread_posix.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:512ms
[ 79%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_string.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:168ms
[ 79%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_project_business.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:129ms
[ 79%] cached public/noah/giano-lib/release/baas-lib-c/mock/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_mock_credential_context_impl.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:178ms
[ 79%] cached baidu/base/protobuf-json/src/baidu_base_protobuf-json_json-pb_lib_json_to_pb.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:283ms
[ 80%] cached baidu/base/common/base/synchronization/baidu_base_common_base_lib_waitable_event_watcher_posix.cc.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:378ms
[ 80%] cached op/oped/noah/webfoot/naming-lib/msg/op_oped_noah_webfoot_naming-lib_webfoot_naming_lib_naminglib.pb.cc.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:223ms
[ 80%] cached public/configure/public_configure_config_lib_CmdOption.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:222ms
[ 80%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_xutils.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:209ms
[ 80%] cached baidu/base/common/base/power_monitor/baidu_base_common_base_lib_power_monitor_source.cc.o ip:10.103.191.33 start:2019-02-11 16:33:12 used:475ms
[ 80%] cached baidu/im-common/mempool/output/lib/libmempool.a ip:10.103.191.32 start:2019-02-11 16:33:13 used:44ms
[ 80%] cached baidu/base/iobuf/base/baidu_base_iobuf_iobuf_lib_iobuf.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:360ms
[ 81%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_baas_common.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:193ms
[ 81%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_thread_local_posix.cc.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:354ms
[ 81%] cached baidu/base/common/base/process/baidu_base_common_base_lib_process_metrics_linux.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:567ms
[ 81%] cached baidu/base/ullib/src/dep/baidu_base_ullib_ullib_lib_dep_conf.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:211ms
[ 81%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_giano_mock_helper.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:177ms
[ 81%] cached baidu/base/common/base/threading/baidu_base_common_base_lib_thread.cc.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:398ms
[ 81%] cached public/noah/giano-lib/release/baas-lib-c/shared_object/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_upgrade_helper.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:144ms
[ 82%] cached baidu/base/common/base/posix/baidu_base_common_base_lib_file_descriptor_shuffle.cc.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:350ms
[ 82%] cached baidu/base/ullib/src/dep/baidu_base_ullib_ullib_lib_dep_htmltag.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:181ms
[ 82%] cached baidu/base/protobuf-json/src/baidu_base_protobuf-json_json-pb_lib_pb_to_json.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:308ms
[ 82%] cached baidu/base/ullib/src/comlog/sendsvr/baidu_base_ullib_ullib_lib_sendsvr.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:215ms
[ 82%] cached baidu/base/ullib/src/dep/baidu_base_ullib_ullib_lib_dep_net.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:182ms
[ 82%] cached baidu/base/iobuf/output/lib/libiobuf.a ip:10.103.191.32 start:2019-02-11 16:33:13 used:23ms
[ 82%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_func.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:294ms
[ 83%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_url2.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:351ms
[ 83%] cached baidu/base/ullib/src/baidu_base_ullib_ullib_lib_ul_log.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:317ms
[ 83%] cached public/noah/giano-lib/release/baas-lib-c/common/jsoncpp/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_json_value.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:128ms
[ 83%] cached baidu/base/ullib/src/comlog/baidu_base_ullib_ullib_lib_logcore.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:292ms
[ 83%] cached op/oped/noah/webfoot/naming-lib/src/op_oped_noah_webfoot_naming-lib_webfoot_naming_lib_webfoot_item.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:146ms
[ 83%] cached baidu/base/bvar/output/lib/libbvar.a ip:10.102.26.39 start:2019-02-11 16:33:13 used:36ms
[ 83%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_proof_utility.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:150ms
[ 84%] cached baidu/base/common/base/power_monitor/baidu_base_common_base_lib_power_monitor_device_source.cc.o ip:10.102.26.38 start:2019-02-11 16:33:12 used:651ms
[ 84%] cached baidu/base/ullib/output/lib/libullib.a ip:10.103.191.34 start:2019-02-11 16:33:13 used:22ms
[ 84%] cached baidu/base/protobuf-json/output/lib/libjson-pb.a ip:10.103.191.35 start:2019-02-11 16:33:13 used:29ms
[ 84%] cached op/oped/noah/webfoot/naming-lib/src/op_oped_noah_webfoot_naming-lib_webfoot_naming_lib_webfoot_naming.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:245ms
[ 84%] cached baidu/base/mcpack2pb/mcpack/baidu_base_mcpack2pb_mcpack2pb_lib_parser.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:384ms
[ 84%] cached baidu/base/common/output/lib/libbase.a ip:10.103.191.35 start:2019-02-11 16:33:13 used:24ms
[ 84%] cached public/spreg/public_spreg_spreg_lib_spreg.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:107ms
[ 85%] cached public/spreg/output/lib/libspreg.a ip:10.103.191.31 start:2019-02-11 16:33:13 used:21ms
[ 85%] cached op/oped/noah/webfoot/naming-lib/output/lib/libwebfoot_naming.a ip:10.103.191.34 start:2019-02-11 16:33:13 used:22ms
[ 85%] cached public/configure/utils/public_configure_config_lib_init.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:166ms
[ 85%] cached baidu/base/mcpack2pb/output/lib/libmcpack2pb.a ip:10.102.26.40 start:2019-02-11 16:33:13 used:22ms
[ 85%] cached public/configure/public_configure_config_lib_ConfigReloader.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:258ms
[ 85%] cached public/noah/giano-lib/release/baas-lib-c/mock/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_mock_proof_generator_impl.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:180ms
[ 85%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_delegation_params_ex.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:210ms
[ 85%] cached public/configure/public_configure_config_lib_cfgext.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:243ms
[ 86%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_credential_verifier.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:225ms
[ 86%] cached public/noah/giano-lib/release/baas-lib-c/mock/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_mock_credential_generator_impl.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:154ms
[ 86%] cached public/configure/public_configure_config_lib_cfgflag.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:199ms
[ 86%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_role_business.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:195ms
[ 86%] cached public/configure/reader/public_configure_config_lib_RawData.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:255ms
[ 86%] cached public/configure/constraint/public_configure_config_lib_Constraint.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:211ms
[ 86%] cached public/configure/utils/public_configure_config_lib_trans.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:173ms
[ 87%] cached public/noah/giano-lib/release/baas-lib-c/public_noah_giano-lib_release_baas-lib-c_baas_interface_lib_resource_management.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:185ms
[ 87%] cached public/configure/output/lib/libconfig.a ip:10.103.191.34 start:2019-02-11 16:33:13 used:22ms
[ 87%] cached baidu/paddle-serving/predictor/unittest/baidu_paddle-serving_predictor_test_pdserving_ut_app_test_main.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:720ms
[ 87%] cached public/noah/giano-lib/release/baas-lib-c/output/lib/libbaas_interface.a ip:10.103.191.37 start:2019-02-11 16:33:13 used:20ms
[ 87%] cached baidu/paddle-serving/predictor/unittest/baidu_paddle-serving_predictor_test_pdserving_ut_app_test_manager.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:12 used:724ms
[ 87%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_xrecord_format.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:2758ms
[ 87%] cached baidu/paddle-serving/predictor/unittest/baidu_paddle-serving_predictor_test_pdserving_ut_app_test_bsf.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:864ms
[ 88%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_pds_option.pb.cc.o ip:10.103.191.31 start:2019-02-11 16:33:13 used:882ms
[ 88%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_msg_data.pb.cc.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:914ms
[ 88%] cached baidu/paddle-serving/predictor/unittest/baidu_paddle-serving_predictor_test_pdserving_ut_app_test_server_manager.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:659ms
[ 88%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_xrecord_format.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:2753ms
[ 88%] cached baidu/paddle-serving/predictor/unittest/baidu_paddle-serving_predictor_test_pdserving_ut_app_test_message_op.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:739ms
[ 88%] cached baidu/paddle-serving/predictor/unittest/baidu_paddle-serving_predictor_test_pdserving_ut_app_test_op.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:734ms
[ 88%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdcodegen_app_pds_option.pb.cc.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:901ms
[ 89%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_pds_option.pb.cc.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:906ms
[ 89%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_pds_option.pb.cc.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:917ms
[ 89%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_msg_data.pb.cc.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:942ms
[ 89%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_builtin_format.pb.cc.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:2342ms
[ 89%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_mc_cache.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:2200ms
[ 89%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_mc_cache.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:2258ms
[ 89%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_mc_cache.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:2192ms
[ 90%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_builtin_format.pb.cc.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:2322ms
[ 90%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_xrecord_format.pb.cc.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:2653ms
[ 90%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_builtin_format.pb.cc.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:2346ms
[ 90%] compile baidu/paddle-serving/predictor/src/baidu_paddle-serving_predictor_pdcodegen_app_pdcodegen.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:2766ms
[ 90%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_lib_common_echo_op.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:5550ms
[ 90%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_echo_service.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:5413ms
[ 90%] compile baidu/paddle-serving/predictor/output/bin/pdcodegen ip:10.103.191.33 start:2019-02-11 16:33:16 used:290ms
[ 91%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_predictor_metric.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:3836ms
[ 91%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_predictor_metric.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:3690ms
[ 91%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_dag_view.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:5831ms
[ 91%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_dense_service.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:5599ms
[ 91%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_predictor_metric.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:3786ms
[ 91%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_sparse_service.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:5889ms
[ 91%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_int64tensor_service.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:5840ms
[ 92%] compile baidu/paddle-serving/predictor/common/baidu_paddle-serving_predictor_pdclient_app_constant.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:3999ms
[ 92%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_resource.cpp.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:6085ms
[ 92%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_memory.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:13 used:4172ms
[ 92%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_image_classification.pb.cc.o ip:10.103.191.36 start:2019-02-11 16:33:11 used:6059ms
[ 92%] compile baidu/paddle-serving/predictor/common/baidu_paddle-serving_predictor_pdserving_lib_constant.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:4004ms
[ 92%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_op_repository.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:13 used:4503ms
[ 92%] compile baidu/paddle-serving/predictor/common/baidu_paddle-serving_predictor_pdserving_app_constant.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:4191ms
[ 92%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_memory.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:4426ms
[ 93%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_memory.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:4431ms
[ 93%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_op_repository.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:4511ms
[ 93%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_op_repository.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:4522ms
[ 93%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_server.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:13 used:5264ms
[ 93%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_server.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:13 used:5258ms
[ 93%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_app_dense_echo_op.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:13 used:5288ms
[ 93%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_server.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:5321ms
[ 94%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_echo_service.pb.cc.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:5466ms
[ 94%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_app_write_json_op.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:5587ms
[ 94%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_lib_sparse_echo_op.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:5385ms
[ 94%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_app_sparse_echo_op.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:5279ms
[ 94%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_image_classification.pb.cc.o ip:10.103.191.31 start:2019-02-11 16:33:13 used:5775ms
[ 94%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_app_op.cpp.o ip:10.102.26.40 start:2019-02-11 16:33:13 used:5581ms
[ 94%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_app_common_echo_op.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:5550ms
[ 95%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_dag_view.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:13 used:5657ms
[ 95%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_sparse_service.pb.cc.o ip:10.103.191.37 start:2019-02-11 16:33:13 used:5651ms
[ 95%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdclient_app_common_echo_op.cpp.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:5302ms
[ 95%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_image_classification.pb.cc.o ip:10.103.191.31 start:2019-02-11 16:33:13 used:5957ms
[ 95%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdclient_app_op.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:5510ms
[ 95%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_lib_op.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:5559ms
[ 95%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_lib_dense_echo_op.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:5679ms
[ 96%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_dense_service.pb.cc.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:5678ms
[ 96%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_sparse_service.pb.cc.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:5690ms
[ 96%] compile baidu/paddle-serving/predictor/src/baidu_paddle-serving_predictor_pdclient_app_pdclient.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:5746ms
[ 96%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdclient_app_sparse_echo_op.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:14 used:5515ms
[ 96%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdclient_app_dense_echo_op.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:5739ms
[ 96%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_lib_echo_service.pb.cc.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:5777ms
[ 96%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_int64tensor_service.pb.cc.o ip:10.102.26.38 start:2019-02-11 16:33:13 used:5849ms
[ 97%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdclient_app_write_json_op.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:14 used:5663ms
[ 97%] compile baidu/paddle-serving/predictor/op/baidu_paddle-serving_predictor_pdserving_lib_write_json_op.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:6032ms
[ 97%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdclient_app_dense_service.pb.cc.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:5902ms
[ 97%] compile baidu/paddle-serving/predictor/src/baidu_paddle-serving_predictor_pdserving_lib_pdserving.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:5845ms
[ 97%] compile baidu/paddle-serving/predictor/src/baidu_paddle-serving_predictor_pdserving_app_pdserving.cpp.o ip:10.102.26.39 start:2019-02-11 16:33:13 used:5877ms
[ 97%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_workflow.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:13 used:6459ms
[ 97%] compile baidu/paddle-serving/predictor/proto/baidu_paddle-serving_predictor_pdserving_app_int64tensor_service.pb.cc.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:6021ms
[ 98%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_dag_view.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:14 used:5873ms
[ 98%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_resource.cpp.o ip:10.103.191.37 start:2019-02-11 16:33:13 used:6358ms
[ 98%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_workflow.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:13 used:6576ms
[ 98%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_service.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:13 used:6817ms
[ 98%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_resource.cpp.o ip:10.103.191.34 start:2019-02-11 16:33:13 used:6459ms
[ 98%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_dag.cpp.o ip:10.103.191.31 start:2019-02-11 16:33:13 used:7047ms
[ 98%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_workflow.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:6674ms
[ 99%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdclient_app_service.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:7013ms
[ 99%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_service.cpp.o ip:10.103.191.32 start:2019-02-11 16:33:13 used:7189ms
[ 99%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_lib_dag.cpp.o ip:10.103.191.35 start:2019-02-11 16:33:13 used:7061ms
[ 99%] compile baidu/paddle-serving/predictor/framework/baidu_paddle-serving_predictor_pdserving_app_dag.cpp.o ip:10.103.191.33 start:2019-02-11 16:33:13 used:7230ms
[ 99%] compile baidu/paddle-serving/predictor/output/lib/libpdserving.a ip:10.103.191.35 start:2019-02-11 16:33:21 used:348ms
[ 99%] compile baidu/paddle-serving/predictor/output/bin/pdclient ip:10.102.26.40 start:2019-02-11 16:33:20 used:2319ms
[ 99%] compile baidu/paddle-serving/predictor/output/bin/pdserving ip:10.103.191.35 start:2019-02-11 16:33:21 used:2358ms
[100%] compile baidu/paddle-serving/predictor/output/test/test_pdserving ip:10.102.26.40 start:2019-02-11 16:33:21 used:2233ms
[INFO] build complete: compile total 714, takes 15s
[INFO] build finished 2019-02-11 16:33:23
############################## Pulling artifacts to directory output ###############################
[OK] baidu/paddle-serving/predictor/output/bin/pdclient
[OK] baidu/paddle-serving/predictor/output/bin/pdcodegen
[OK] ffdfadb9c3392d9e09c573268e8c2c09_main.tar
[OK] baidu/paddle-serving/predictor/output/test/test_pdserving
[OK] baidu/paddle-serving/predictor/output/lib/libpdserving.a
[OK] baidu/paddle-serving/predictor/output/bin/pdserving
###################################################### build summary(total takes : 38s) success ######################################################
=> task info
- repo name : baidu/paddle-serving/predictor
- compile master : 10.103.191.36
- taskid : ffdfadb9c3392d9e09c573268e8c2c09
- user : wangguibao
- command : bcloud build
- client start : 2019-02-11 16:32:50
- client stop : 2019-02-11 16:33:28
=> analyze dependency
- repo count : 25
- time consuming : 3.849s
- repo check : 0.004s
- stable repo : 4 (16.0%)
- 3rd repo : 11 (44.0%)
- others repo : 10 (40.0%)
=> queue
- time consuming : 0.000s
=> create workspace
- time consuming : 2.541s
- master : 1.271s
- slave(max) : 1.270s
- dep repo hit cache : 100.0%
=> preprocess
- gen sources : 0.662s
- proto and idl : 0.572s
- publish header files : 4.054s
- pack result : 3.557s
=> compile
- time consuming : 15.917s
- target cache info
all : 628/714 (88.0%)
object file : 528/609 (86.7%)
static lib : 100/101 (99.0%)
bin : 0/3 (0.0%)
ut : 0/1 (0.0%)
=> run ut
- time consuming : 0.000s
=> client download artifacts
- download : 4.699s
- run release.bcloud : 0.000s
=> prodserver upload artifacts
- download : 0.000s
- run release.bcloud : 0.000s
- upload : 0.000s
=> More information refers to http://buildcloud.baidu.com/bcloud/5-best-practice#5_1_6_bcloud_build_time
######################################################################################################################################################
# #
# WARNING!!! #
# Stable branch was provided by following module(s), please change to stable dependency ASAP. #
# How to fix: http://ihelp.baidu.com/bcloud/119 #
# #
# ---------------------------------------------------------------------------------------------------------------------------------- #
# #
# CONFIGS('baidu/base/baidu-rpc@xxx') --> CONFIGS('baidu/base/baidu-rpc@stable') #
# CONFIGS('public/bthread@xxx') --> CONFIGS('baidu/base/bthread@stable') #
# CONFIGS('baidu/im-common/mempool@xxx') --> CONFIGS('baidu/im-common/mempool@stable') #
# #
# #
######################################################################################################################################################
Global:
tool: bcloud
Default:
profile: [change]
Profiles:
- profile:
name: change
command: bcloud ut
release: true
......@@ -36,7 +36,7 @@ public:
bthread_mutex_init(&_mutex, NULL);
FILE* fp = fopen(file_name.c_str(), "r");
if (!fp) {
LOG(FATAL) << "Failed open data file: "
LOG(ERROR) << "Failed open data file: "
<< file_name;
return -1;
}
......@@ -58,7 +58,7 @@ public:
for (size_t ri = 0; ri < buf_size; ri++) {
SparseRequest* req = new SparseRequest();
if (generate_one_req(*req, batch_size) != 0) {
LOG(FATAL) << "Failed generate req at: " << ri;
LOG(ERROR) << "Failed generate req at: " << ri;
fclose(fp);
return -1;
}
......@@ -255,7 +255,7 @@ void* work(void* p) {
InputData* input = arg->input;
PredictorApi* api = arg->api;
if (api->thrd_initialize() != 0) {
LOG(FATAL) << "Failed init api in thrd:" << bthread_self();
LOG(ERROR) << "Failed init api in thrd:" << bthread_self();
return NULL;
}
Response res;
......@@ -264,7 +264,7 @@ void* work(void* p) {
api->thrd_clear();
Predictor* predictor = api->fetch_predictor("sparse_cnn");
if (!predictor) {
LOG(FATAL) << "Failed fetch predictor: sparse_cnn";
LOG(ERROR) << "Failed fetch predictor: sparse_cnn";
continue;
}
SparseRequest* req = input->next_req();
......@@ -272,7 +272,7 @@ void* work(void* p) {
timeval start;
gettimeofday(&start, NULL);
if (predictor->inference(req, &res) != 0) {
LOG(FATAL) << "failed call predictor with req:"
LOG(ERROR) << "failed call predictor with req:"
<< req->ShortDebugString();
api->free_predictor(predictor);
continue;
......@@ -298,20 +298,20 @@ int main(int argc, char** argv) {
int qps = atoi(argv[4]);
PredictorApi api;
if (api.create("./conf", "predictors.conf") != 0) {
LOG(FATAL) << "Failed create predictors api!";
LOG(ERROR) << "Failed create predictors api!";
return -1;
}
InputData data;
if (data.create(
//"./data/feature", req_buffer, batch_size, qps) != 0) {
"./data/pure_feature", req_buffer, batch_size, qps) != 0) {
LOG(FATAL) << "Failed create inputdata!";
LOG(ERROR) << "Failed create inputdata!";
return -1;
}
Arg arg = {&api, &data};
bthread_t* threads = new bthread_t[thread_num];
if (!threads) {
LOG(FATAL) << "Failed create threads, num:" << thread_num;
LOG(ERROR) << "Failed create threads, num:" << thread_num;
return -1;
}
for (int i = 0; i < thread_num; ++i) {
......
......@@ -318,7 +318,7 @@ public:
for (size_t ri = 0; ri < buf_size; ri++) {
Request* req = new Request();
if (generate_one_req(*req, batch_size) != 0) {
LOG(FATAL) << "Failed generate req at: " << ri;
LOG(ERROR) << "Failed generate req at: " << ri;
//fclose(fp);
return -1;
}
......@@ -469,19 +469,19 @@ void* work(void* p) {
Arg* arg = (Arg*) p;
InputData* input = arg->input;
if (PredictorApi::instance().thrd_initialize() != 0) {
LOG(FATAL) << "Failed create bthread local predictor";
LOG(ERROR) << "Failed create bthread local predictor";
return NULL;
}
Response res;
LOG(WARNING) << "Thread entry!";
while (true) {
if (PredictorApi::instance().thrd_clear() != 0) {
LOG(FATAL) << "Failed thrd clear predictor";
LOG(ERROR) << "Failed thrd clear predictor";
return NULL;
}
Predictor* predictor = PredictorApi::instance().fetch_predictor("wasq");
if (!predictor) {
LOG(FATAL) << "Failed fetch predictor: wasq";
LOG(ERROR) << "Failed fetch predictor: wasq";
return NULL;
}
Request* req = input->next_req();
......@@ -489,7 +489,7 @@ void* work(void* p) {
timeval start;
gettimeofday(&start, NULL);
if (predictor->inference(req, &res) != 0) {
LOG(FATAL) << "failed call predictor with req:"
LOG(ERROR) << "failed call predictor with req:"
<< req->ShortDebugString();
return NULL;
}
......@@ -505,7 +505,7 @@ void* work(void* p) {
//printf("done\n");
}
if (PredictorApi::instance().thrd_finalize() != 0) {
LOG(FATAL) << "Failed thrd finalize predictor api";
LOG(ERROR) << "Failed thrd finalize predictor api";
}
LOG(WARNING) << "Thread exit!";
return NULL;
......@@ -520,19 +520,19 @@ int main(int argc, char** argv) {
int thread_num = atoi(argv[3]);
int qps = atoi(argv[4]);
if (PredictorApi::instance().create("./conf", "predictors.conf") != 0) {
LOG(FATAL) << "Failed create predictors api!";
LOG(ERROR) << "Failed create predictors api!";
return -1;
}
InputData data;
if (data.create(
"./data/test_features_sys", req_buffer, batch_size, qps) != 0) {
LOG(FATAL) << "Failed create inputdata!";
LOG(ERROR) << "Failed create inputdata!";
return -1;
}
Arg arg = {NULL, &data};
bthread_t* threads = new bthread_t[thread_num];
if (!threads) {
LOG(FATAL) << "Failed create threads, num:" << thread_num;
LOG(ERROR) << "Failed create threads, num:" << thread_num;
return -1;
}
for (int i = 0; i < thread_num; ++i) {
......
......@@ -30,7 +30,7 @@ int create_req(Request& req) {
FILE* fp = fopen(TEST_IMAGE_PATH, "rb");
if (!fp) {
LOG(FATAL) << "Failed open image: " << TEST_IMAGE_PATH;
LOG(ERROR) << "Failed open image: " << TEST_IMAGE_PATH;
return -1;
}
......@@ -38,7 +38,7 @@ int create_req(Request& req) {
size_t isize = ftell(fp);
char* ibuf = new(std::nothrow) char[isize];
if (!ibuf) {
LOG(FATAL) << "Failed malloc image buffer";
LOG(ERROR) << "Failed malloc image buffer";
fclose(fp);
return -1;
}
......@@ -47,7 +47,7 @@ int create_req(Request& req) {
fread(ibuf, sizeof(ibuf[0]), isize, fp);
XImageReqInstance* ins = req.add_instances();
if (!ins) {
LOG(FATAL) << "Failed create req instance";
LOG(ERROR) << "Failed create req instance";
delete[] ibuf;
fclose(fp);
return -1;
......@@ -87,13 +87,13 @@ void print_res(
buf.append(json);
butil::IOBufAsZeroCopyInputStream wrapper(buf);
if (!json2pb::JsonToProtoMessage(&wrapper, &json_msg, &err_string)) {
LOG(FATAL) << "Failed parse json from str:" << json;
LOG(ERROR) << "Failed parse json from str:" << json;
return ;
}
uint32_t csize = json_msg.categories_size();
if (csize <= 0) {
LOG(FATAL) << "sample-" << si << "has no"
LOG(ERROR) << "sample-" << si << "has no"
<< "categories props";
continue;
}
......@@ -119,7 +119,7 @@ int main(int argc, char** argv) {
PredictorApi api;
if (api.create("./conf", "predictors.prototxt") != 0) {
LOG(FATAL) << "Failed create predictors api!";
LOG(ERROR) << "Failed create predictors api!";
return -1;
}
......@@ -136,7 +136,7 @@ int main(int argc, char** argv) {
Predictor* predictor = api.fetch_predictor("ximage");
if (!predictor) {
LOG(FATAL) << "Failed fetch predictor: wasq";
LOG(ERROR) << "Failed fetch predictor: wasq";
return -1;
}
......@@ -149,7 +149,7 @@ int main(int argc, char** argv) {
butil::IOBufBuilder debug_os;
if (predictor->debug(&req, &res, &debug_os) != 0) {
LOG(FATAL) << "failed call predictor with req:"
LOG(ERROR) << "failed call predictor with req:"
<< req.ShortDebugString();
return -1;
}
......
......@@ -37,7 +37,7 @@ namespace sdk_cpp {
#define ASSIGN_CONF_ITEM(dest, src, fail) \
do { \
if (!src.init) { \
LOG(FATAL) << "Cannot assign an unintialized item: " \
LOG(ERROR) << "Cannot assign an unintialized item: " \
<< #src << " to dest: " << #dest; \
return fail; \
} \
......
......@@ -27,7 +27,7 @@ namespace sdk_cpp {
do { \
param = butil::get_object<T>(); \
if (!param) { \
LOG(FATAL) << "Failed get object from pool" \
LOG(ERROR) << "Failed get object from pool" \
<< ", arg:" << #param << "type: " \
<< #T; \
return err; \
......
......@@ -50,7 +50,7 @@ public:
std::map<std::string, Endpoint*>::iterator it
= _endpoints.find(ep_name);
if (it == _endpoints.end() || !it->second) {
LOG(FATAL) << "Failed fetch predictor:"
LOG(ERROR) << "Failed fetch predictor:"
<< ", ep_name: " << ep_name;
return NULL;
}
......@@ -62,7 +62,7 @@ public:
std::map<std::string, Endpoint*>::iterator it
= _endpoints.find(ep_name);
if (it == _endpoints.end() || !it->second) {
LOG(FATAL) << "Failed fetch predictor:"
LOG(ERROR) << "Failed fetch predictor:"
<< ", ep_name: " << ep_name;
return NULL;
}
......@@ -72,7 +72,7 @@ public:
int free_predictor(Predictor* predictor) {
const Stub* stub = predictor->stub();
if (!stub || stub->return_predictor(predictor) != 0) {
LOG(FATAL) << "Failed return predictor via stub";
LOG(ERROR) << "Failed return predictor via stub";
return -1;
}
......
......@@ -105,7 +105,7 @@ public:
std::string::size_type kv_delim_pos = kv_pair_str.find(KV_DELIM, 0);
if (kv_delim_pos == std::string::npos) {
LOG(FATAL) << "invalid kv pair: " << kv_pair_str.c_str();
LOG(ERROR) << "invalid kv pair: " << kv_pair_str.c_str();
continue;
}
......@@ -167,7 +167,7 @@ public:
}
void update_average(int64_t acc) {
LOG(FATAL) << "Cannot update average to a LatencyRecorder";
LOG(ERROR) << "Cannot update average to a LatencyRecorder";
}
private:
......@@ -181,7 +181,7 @@ public:
}
void update_latency(int64_t acc) {
LOG(FATAL) << "Cannot update latency to a AverageWrapper";
LOG(ERROR) << "Cannot update latency to a AverageWrapper";
}
void update_average(int64_t acc) {
......@@ -307,7 +307,7 @@ public:
std::map<std::string, BvarWrapper*>::iterator iter =
_avg_bvars.find(AVG_PREFIX + name);
if (iter == _avg_bvars.end()) {
LOG(FATAL) << "Not found average record:avg_" << name;
LOG(ERROR) << "Not found average record:avg_" << name;
return ;
}
......@@ -318,7 +318,7 @@ public:
std::map<std::string, BvarWrapper*>::iterator iter =
_ltc_bvars.find(LTC_PREFIX + name);
if (iter == _ltc_bvars.end()) {
LOG(FATAL) << "Not found latency record:ltc_" << name;
LOG(ERROR) << "Not found latency record:ltc_" << name;
return ;
}
......
......@@ -31,7 +31,7 @@ int WeightedRandomRender::initialize(
std::vector<std::string> splits;
if (str_split(weights, WEIGHT_SEPERATOR, &splits) != 0) {
LOG(FATAL) << "Failed split string:" <<
LOG(ERROR) << "Failed split string:" <<
weights;
return -1;
}
......@@ -43,7 +43,7 @@ int WeightedRandomRender::initialize(
uint32_t ratio = strtoul(
splits[wi].c_str(), &end_pos, 10);
if (end_pos == splits[wi].c_str()) {
LOG(FATAL) << "Error ratio(uint32) format:"
LOG(ERROR) << "Error ratio(uint32) format:"
<< splits[wi] << " at " << wi;
return -1;
}
......@@ -53,7 +53,7 @@ int WeightedRandomRender::initialize(
}
if (_normalized_sum <= 0) {
LOG(FATAL) << "Zero normalized weight sum";
LOG(ERROR) << "Zero normalized weight sum";
return -1;
}
......@@ -61,11 +61,11 @@ int WeightedRandomRender::initialize(
<< ", count: " << _variant_weight_list.size()
<< ", normalized: " << _normalized_sum;
} catch (std::bad_cast& e) {
LOG(FATAL) << "Failed init WeightedRandomRender"
LOG(ERROR) << "Failed init WeightedRandomRender"
<< "from configure, err:" << e.what();
return -1;
} catch (...) {
LOG(FATAL) << "Failed init WeightedRandomRender"
LOG(ERROR) << "Failed init WeightedRandomRender"
<< "from configure, err message is unkown.";
return -1;
}
......@@ -82,7 +82,7 @@ Variant* WeightedRandomRender::route(
Variant* WeightedRandomRender::route(
const VariantList& variants) {
if (variants.size() != _variant_weight_list.size()) {
LOG(FATAL) << "#(Weights) is not equal #(Stubs)"
LOG(ERROR) << "#(Weights) is not equal #(Stubs)"
<< ", size: " << _variant_weight_list.size()
<< " vs. " << variants.size();
return NULL;
......@@ -101,7 +101,7 @@ Variant* WeightedRandomRender::route(
}
}
LOG(FATAL) << "Errors accurs in sampling, sample:"
LOG(ERROR) << "Errors accurs in sampling, sample:"
<< sample << ", total: " << _normalized_sum;
return NULL;
......
......@@ -26,7 +26,7 @@ int EndpointConfigManager::create(const char* path, const char* file) {
_endpoint_config_file = file;
if (load() != 0) {
LOG(FATAL) << "Failed reload endpoint config";
LOG(ERROR) << "Failed reload endpoint config";
return -1;
}
......@@ -40,7 +40,7 @@ int EndpointConfigManager::load() {
_endpoint_config_path.c_str(),
_endpoint_config_file.c_str(),
&sdk_conf) != 0) {
LOG(FATAL)
LOG(ERROR)
<< "Failed initialize endpoint list"
<< ", config: " << _endpoint_config_path
<< "/" << _endpoint_config_file;
......@@ -50,7 +50,7 @@ int EndpointConfigManager::load() {
VariantInfo default_var;
if (init_one_variant(sdk_conf.default_variant_conf(),
default_var) != 0) {
LOG(FATAL) << "Failed read default var conf";
LOG(ERROR) << "Failed read default var conf";
return -1;
}
......@@ -62,14 +62,14 @@ int EndpointConfigManager::load() {
EndpointInfo ep;
if (init_one_endpoint(sdk_conf.predictors(ei), ep,
default_var) != 0) {
LOG(FATAL) << "Failed read endpoint info at: "
LOG(ERROR) << "Failed read endpoint info at: "
<< ei;
return -1;
}
std::map<std::string, EndpointInfo>::iterator it;
if (_ep_map.find(ep.endpoint_name) != _ep_map.end()) {
LOG(FATAL) << "Cannot insert duplicated endpoint"
LOG(ERROR) << "Cannot insert duplicated endpoint"
<< ", ep name: " << ep.endpoint_name;
}
......@@ -77,14 +77,14 @@ int EndpointConfigManager::load() {
std::string, EndpointInfo>::iterator, bool> r
= _ep_map.insert(std::make_pair(ep.endpoint_name, ep));
if (!r.second) {
LOG(FATAL) << "Failed insert endpoint, name"
LOG(ERROR) << "Failed insert endpoint, name"
<< ep.endpoint_name;
return -1;
}
}
} catch (std::exception& e) {
LOG(FATAL) << "Failed load configure" << e.what();
LOG(ERROR) << "Failed load configure" << e.what();
return -1;
}
LOG(INFO)
......@@ -109,7 +109,7 @@ int EndpointConfigManager::init_one_endpoint(
PARSE_CONF_ITEM(conf, ep_router, endpoint_router, -1);
if (ep_router.init) {
if (ep_router.value != "WeightedRandomRender") {
LOG(FATAL) << "endpointer_router unrecognized " << ep_router.value;
LOG(ERROR) << "endpointer_router unrecognized " << ep_router.value;
return -1;
}
......@@ -120,7 +120,7 @@ int EndpointConfigManager::init_one_endpoint(
const configure::WeightedRandomRenderConf &router_conf =
conf.weighted_random_render_conf();
if (!router || router->initialize(router_conf) != 0) {
LOG(FATAL) << "Failed fetch valid ab test strategy"
LOG(ERROR) << "Failed fetch valid ab test strategy"
<< ", name:" << ep_router.value;
return -1;
}
......@@ -136,7 +136,7 @@ int EndpointConfigManager::init_one_endpoint(
VariantInfo var;
if (merge_variant(dft_var, conf.variants(vi),
var) != 0) {
LOG(FATAL) << "Failed merge variant info at: "
LOG(ERROR) << "Failed merge variant info at: "
<< vi;
return -1;
}
......@@ -145,7 +145,7 @@ int EndpointConfigManager::init_one_endpoint(
}
if (ep.vars.size() > 1 && ep.ab_test == NULL) {
LOG(FATAL) << "EndpointRouter must be configured, when"
LOG(ERROR) << "EndpointRouter must be configured, when"
<< " #Variants > 1.";
return -1;
}
......@@ -155,7 +155,7 @@ int EndpointConfigManager::init_one_endpoint(
<< ", count of variants: " << ep.vars.size() << ".";
} catch (std::exception& e) {
LOG(FATAL) << "Exception acccurs when load endpoint conf"
LOG(ERROR) << "Exception acccurs when load endpoint conf"
<< ", message: " << e.what();
return -1;
}
......@@ -215,7 +215,7 @@ int EndpointConfigManager::init_one_variant(
PARSE_CONF_ITEM(splits, var.splitinfo.tag_cands_str,
tag_candidates, -1);
if (parse_tag_values(var.splitinfo) != 0) {
LOG(FATAL) << "Failed parse tag_values:" <<
LOG(ERROR) << "Failed parse tag_values:" <<
var.splitinfo.tag_cands_str.value;
return -1;
}
......@@ -225,7 +225,7 @@ int EndpointConfigManager::init_one_variant(
tag, -1);
} catch (...) {
LOG(FATAL) << "Failed load variant from configure unit";
LOG(ERROR) << "Failed load variant from configure unit";
return -1;
}
......
......@@ -29,7 +29,7 @@ int Endpoint::initialize(const EndpointInfo& ep_info) {
const VariantInfo& var_info = ep_info.vars[vi];
Variant* var = new (std::nothrow) Variant;
if (!var || var->initialize(ep_info, var_info) != 0) {
LOG(FATAL) << "Failed initialize variant, tag:"
LOG(ERROR) << "Failed initialize variant, tag:"
<< var_info.parameters.route_tag.value
<< ", endpoint: " << ep_info.endpoint_name
<< ", var index: " << vi;
......@@ -48,7 +48,7 @@ int Endpoint::thrd_initialize() {
for (uint32_t vi = 0; vi < var_size; ++vi) {
Variant* var = _variant_list[vi];
if (!var || var->thrd_initialize()) {
LOG(FATAL) << "Failed thrd initialize var: " << vi;
LOG(ERROR) << "Failed thrd initialize var: " << vi;
return -1;
}
}
......@@ -61,7 +61,7 @@ int Endpoint::thrd_clear() {
for (uint32_t vi = 0; vi < var_size; ++vi) {
Variant* var = _variant_list[vi];
if (!var || var->thrd_clear()) {
LOG(FATAL) << "Failed thrd clear var: " << vi;
LOG(ERROR) << "Failed thrd clear var: " << vi;
return -1;
}
}
......@@ -74,7 +74,7 @@ int Endpoint::thrd_finalize() {
for (uint32_t vi = 0; vi < var_size; ++vi) {
Variant* var = _variant_list[vi];
if (!var || var->thrd_finalize()) {
LOG(FATAL) << "Failed thrd finalize var: " << vi;
LOG(ERROR) << "Failed thrd finalize var: " << vi;
return -1;
}
}
......@@ -91,7 +91,7 @@ Predictor* Endpoint::get_predictor(
}
if (!var) {
LOG(FATAL) << "get null var from endpoint.";
LOG(ERROR) << "get null var from endpoint.";
return NULL;
}
......@@ -104,7 +104,7 @@ Predictor* Endpoint::get_predictor() {
#endif
if (_variant_list.size() == 1) {
if (_variant_list[0] == NULL) {
LOG(FATAL) << "Not valid variant info";
LOG(ERROR) << "Not valid variant info";
return NULL;
}
return _variant_list[0]->get_predictor();
......@@ -117,7 +117,7 @@ int Endpoint::ret_predictor(Predictor* predictor) {
const Stub* stub = predictor->stub();
if (!stub || stub->return_predictor(
predictor) != 0) {
LOG(FATAL) << "Failed return predictor to pool";
LOG(ERROR) << "Failed return predictor to pool";
return -1;
}
......
......@@ -20,7 +20,7 @@ namespace sdk_cpp {
int PredictorApi::register_all() {
if (WeightedRandomRender::register_self() != 0) {
LOG(FATAL) << "Failed register WeightedRandomRender";
LOG(ERROR) << "Failed register WeightedRandomRender";
return -1;
}
......@@ -31,12 +31,12 @@ int PredictorApi::register_all() {
int PredictorApi::create(const char* path, const char* file) {
if (register_all() != 0) {
LOG(FATAL) << "Failed do register all!";
LOG(ERROR) << "Failed do register all!";
return -1;
}
if (_config_manager.create(path, file) != 0) {
LOG(FATAL) << "Failed create config manager from conf:"
LOG(ERROR) << "Failed create config manager from conf:"
<< path << "/" << file;
return -1;
}
......@@ -48,14 +48,14 @@ int PredictorApi::create(const char* path, const char* file) {
const EndpointInfo& ep_info = it->second;
Endpoint* ep = new (std::nothrow) Endpoint();
if (ep->initialize(ep_info) != 0) {
LOG(FATAL) << "Failed intialize endpoint:"
LOG(ERROR) << "Failed intialize endpoint:"
<< ep_info.endpoint_name;
return -1;
}
if (_endpoints.find(
ep_info.endpoint_name) != _endpoints.end()) {
LOG(FATAL) << "Cannot insert duplicated endpoint:"
LOG(ERROR) << "Cannot insert duplicated endpoint:"
<< ep_info.endpoint_name;
return -1;
}
......@@ -64,7 +64,7 @@ int PredictorApi::create(const char* path, const char* file) {
= _endpoints.insert(std::make_pair(
ep_info.endpoint_name, ep));
if (!r.second) {
LOG(FATAL) << "Failed insert endpoint:"
LOG(ERROR) << "Failed insert endpoint:"
<< ep_info.endpoint_name;
return -1;
}
......@@ -81,7 +81,7 @@ int PredictorApi::thrd_initialize() {
for (it = _endpoints.begin(); it != _endpoints.end(); ++it) {
Endpoint* ep = it->second;
if (ep->thrd_initialize() != 0) {
LOG(FATAL) << "Failed thrd initialize endpoint:"
LOG(ERROR) << "Failed thrd initialize endpoint:"
<< it->first;
return -1;
}
......@@ -97,7 +97,7 @@ int PredictorApi::thrd_clear() {
for (it = _endpoints.begin(); it != _endpoints.end(); ++it) {
Endpoint* ep = it->second;
if (ep->thrd_clear() != 0) {
LOG(FATAL) << "Failed thrd clear endpoint:"
LOG(ERROR) << "Failed thrd clear endpoint:"
<< it->first;
return -1;
}
......@@ -113,7 +113,7 @@ int PredictorApi::thrd_finalize() {
for (it = _endpoints.begin(); it != _endpoints.end(); ++it) {
Endpoint* ep = it->second;
if (ep->thrd_finalize() != 0) {
LOG(FATAL) << "Failed thrd finalize endpoint:"
LOG(ERROR) << "Failed thrd finalize endpoint:"
<< it->first;
return -1;
}
......
......@@ -38,7 +38,7 @@ int Variant::initialize(const EndpointInfo& ep_info,
const std::string& tag_value = split_info.tag_values[ti];
if (!stub || stub->initialize(var_info, ep_info.endpoint_name,
&split_info.split_tag.value, &tag_value) != 0) {
LOG(FATAL) << "Failed init stub from factory"
LOG(ERROR) << "Failed init stub from factory"
<< ", stub name: " << ep_info.stub_service
<< ", filter tag: " << tag_value;
return -1;
......@@ -48,7 +48,7 @@ int Variant::initialize(const EndpointInfo& ep_info,
std::map<std::string, Stub*>::iterator iter =
_stub_map.find(tag_value);
if (iter != _stub_map.end()) {
LOG(FATAL) << "duplicated tag value: "
LOG(ERROR) << "duplicated tag value: "
<< tag_value;
return -1;
}
......@@ -65,7 +65,7 @@ int Variant::initialize(const EndpointInfo& ep_info,
ep_info.stub_service);
if (!stub || stub->initialize(
var_info, _endpoint_name, NULL, NULL) != 0) {
LOG(FATAL) << "Failed init stub from factory"
LOG(ERROR) << "Failed init stub from factory"
<< ", stub name: " << ep_info.stub_service;
return -1;
}
......@@ -84,7 +84,7 @@ int Variant::thrd_initialize() {
for (iter = _stub_map.begin(); iter != _stub_map.end(); ++iter) {
Stub* stub = iter->second;
if (!stub || stub->thrd_initialize() != 0) {
LOG(FATAL) << "Failed thrd initialize stub: " << iter->first;
LOG(ERROR) << "Failed thrd initialize stub: " << iter->first;
return -1;
}
LOG(INFO) << "Succ thrd initialize stub:" << iter->first;
......@@ -103,7 +103,7 @@ int Variant::thrd_clear() {
for (iter = _stub_map.begin(); iter != _stub_map.end(); ++iter) {
Stub* stub = iter->second;
if (!stub || stub->thrd_clear() != 0) {
LOG(FATAL) << "Failed thrd clear stub: " << iter->first;
LOG(ERROR) << "Failed thrd clear stub: " << iter->first;
return -1;
}
}
......@@ -119,7 +119,7 @@ int Variant::thrd_finalize() {
for (iter = _stub_map.begin(); iter != _stub_map.end(); ++iter) {
Stub* stub = iter->second;
if (!stub || stub->thrd_finalize() != 0) {
LOG(FATAL) << "Failed thrd finalize stub: " << iter->first;
LOG(ERROR) << "Failed thrd finalize stub: " << iter->first;
return -1;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册