chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,115 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you 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.
|
||||
|
||||
cmake_minimum_required(VERSION 3.16...3.28)
|
||||
project(selective_echo_c++ C CXX)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/../cmake/BrpcExample.cmake)
|
||||
|
||||
option(LINK_SO "Whether examples are linked dynamically" OFF)
|
||||
|
||||
execute_process(
|
||||
COMMAND bash -c "find ${PROJECT_SOURCE_DIR}/../.. -type d -regex \".*output/include$\" | head -n1 | xargs dirname | tr -d '\n'"
|
||||
OUTPUT_VARIABLE OUTPUT_PATH
|
||||
)
|
||||
|
||||
if(OUTPUT_PATH)
|
||||
list(PREPEND CMAKE_PREFIX_PATH ${OUTPUT_PATH})
|
||||
endif()
|
||||
|
||||
find_package(Threads REQUIRED)
|
||||
find_package(Protobuf REQUIRED)
|
||||
protobuf_generate_cpp(PROTO_SRC PROTO_HEADER echo.proto)
|
||||
|
||||
# Search for libthrift* by best effort. If it is not found and brpc is
|
||||
# compiled with thrift protocol enabled, a link error would be reported.
|
||||
find_library(THRIFT_LIB NAMES thrift)
|
||||
if (NOT THRIFT_LIB)
|
||||
set(THRIFT_LIB "")
|
||||
endif()
|
||||
|
||||
find_path(GPERFTOOLS_INCLUDE_DIR NAMES gperftools/heap-profiler.h)
|
||||
find_library(GPERFTOOLS_LIBRARIES NAMES tcmalloc_and_profiler)
|
||||
|
||||
find_path(BRPC_INCLUDE_PATH NAMES brpc/server.h)
|
||||
if(LINK_SO)
|
||||
find_library(BRPC_LIB NAMES brpc)
|
||||
else()
|
||||
find_library(BRPC_LIB NAMES libbrpc.a brpc)
|
||||
endif()
|
||||
if((NOT BRPC_INCLUDE_PATH) OR (NOT BRPC_LIB))
|
||||
message(FATAL_ERROR "Fail to find brpc")
|
||||
endif()
|
||||
|
||||
find_path(GFLAGS_INCLUDE_PATH gflags/gflags.h)
|
||||
find_library(GFLAGS_LIBRARY NAMES gflags libgflags)
|
||||
if((NOT GFLAGS_INCLUDE_PATH) OR (NOT GFLAGS_LIBRARY))
|
||||
message(FATAL_ERROR "Fail to find gflags")
|
||||
endif()
|
||||
|
||||
set(BRPC_EXAMPLE_ENABLE_CPU_PROFILER ON)
|
||||
|
||||
find_path(LEVELDB_INCLUDE_PATH NAMES leveldb/db.h)
|
||||
find_library(LEVELDB_LIB NAMES leveldb)
|
||||
if ((NOT LEVELDB_INCLUDE_PATH) OR (NOT LEVELDB_LIB))
|
||||
message(FATAL_ERROR "Fail to find leveldb")
|
||||
endif()
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND NOT OPENSSL_ROOT_DIR)
|
||||
set(OPENSSL_ROOT_DIR
|
||||
"/usr/local/opt/openssl" # Homebrew installed OpenSSL
|
||||
)
|
||||
endif()
|
||||
|
||||
find_package(OpenSSL REQUIRED)
|
||||
|
||||
set(DYNAMIC_LIB
|
||||
Threads::Threads
|
||||
${GFLAGS_LIBRARY}
|
||||
${PROTOBUF_LIBRARIES}
|
||||
${LEVELDB_LIB}
|
||||
${OPENSSL_CRYPTO_LIBRARY}
|
||||
${OPENSSL_SSL_LIBRARY}
|
||||
${THRIFT_LIB}
|
||||
dl
|
||||
)
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
||||
set(DYNAMIC_LIB ${DYNAMIC_LIB}
|
||||
pthread
|
||||
"-framework CoreFoundation"
|
||||
"-framework CoreGraphics"
|
||||
"-framework CoreData"
|
||||
"-framework CoreText"
|
||||
"-framework Security"
|
||||
"-framework Foundation"
|
||||
"-Wl,-U,_MallocExtension_ReleaseFreeMemory"
|
||||
"-Wl,-U,_ProfilerStart"
|
||||
"-Wl,-U,_ProfilerStop"
|
||||
"-Wl,-U,__Z13GetStackTracePPvii"
|
||||
"-Wl,-U,_mallctl"
|
||||
"-Wl,-U,_malloc_stats_print"
|
||||
)
|
||||
endif()
|
||||
|
||||
add_executable(selective_echo_client client.cpp ${PROTO_SRC} ${PROTO_HEADER})
|
||||
brpc_example_configure_target(selective_echo_client)
|
||||
add_executable(selective_echo_server server.cpp ${PROTO_SRC} ${PROTO_HEADER})
|
||||
brpc_example_configure_target(selective_echo_server)
|
||||
|
||||
target_link_libraries(selective_echo_client PRIVATE ${BRPC_LIB} ${DYNAMIC_LIB} ${GPERFTOOLS_LIBRARIES})
|
||||
target_link_libraries(selective_echo_server PRIVATE ${BRPC_LIB} ${DYNAMIC_LIB} ${GPERFTOOLS_LIBRARIES})
|
||||
@@ -0,0 +1,240 @@
|
||||
// Licensed to the Apache Software Foundation (ASF) under one
|
||||
// or more contributor license agreements. See the NOTICE file
|
||||
// distributed with this work for additional information
|
||||
// regarding copyright ownership. The ASF licenses this file
|
||||
// to you 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.
|
||||
|
||||
// A client sending requests to server in parallel by multiple threads.
|
||||
|
||||
#include <gflags/gflags.h>
|
||||
#include <bthread/bthread.h>
|
||||
#include <butil/logging.h>
|
||||
#include <brpc/selective_channel.h>
|
||||
#include <brpc/parallel_channel.h>
|
||||
#include "echo.pb.h"
|
||||
|
||||
DEFINE_int32(thread_num, 50, "Number of threads to send requests");
|
||||
DEFINE_bool(use_bthread, false, "Use bthread to send requests");
|
||||
DEFINE_int32(attachment_size, 0, "Carry so many byte attachment along with requests");
|
||||
DEFINE_int32(request_size, 16, "Bytes of each request");
|
||||
DEFINE_string(connection_type, "", "Connection type. Available values: single, pooled, short");
|
||||
DEFINE_string(protocol, "baidu_std", "Protocol type. Defined in src/brpc/options.proto");
|
||||
DEFINE_string(starting_server, "0.0.0.0:8114", "IP Address of the first server, port of i-th server is `first-port + i'");
|
||||
DEFINE_string(load_balancer, "rr", "Name of load balancer");
|
||||
DEFINE_int32(timeout_ms, 100, "RPC timeout in milliseconds");
|
||||
DEFINE_int32(backup_ms, -1, "backup timeout in milliseconds");
|
||||
DEFINE_int32(max_retry, 3, "Max retries(not including the first RPC)");
|
||||
DEFINE_bool(dont_fail, false, "Print fatal when some call failed");
|
||||
|
||||
std::string g_request;
|
||||
std::string g_attachment;
|
||||
|
||||
bvar::LatencyRecorder g_latency_recorder("client");
|
||||
bvar::Adder<int> g_error_count("client_error_count");
|
||||
|
||||
static void* sender(void* arg) {
|
||||
// Normally, you should not call a Channel directly, but instead construct
|
||||
// a stub Service wrapping it. stub can be shared by all threads as well.
|
||||
example::EchoService_Stub stub(static_cast<google::protobuf::RpcChannel*>(arg));
|
||||
|
||||
int log_id = 0;
|
||||
while (!brpc::IsAskedToQuit()) {
|
||||
// We will receive response synchronously, safe to put variables
|
||||
// on stack.
|
||||
example::EchoRequest request;
|
||||
example::EchoResponse response;
|
||||
brpc::Controller cntl;
|
||||
|
||||
request.set_message(g_request);
|
||||
cntl.set_log_id(log_id++); // set by user
|
||||
|
||||
if (!g_attachment.empty()) {
|
||||
// Set attachment which is wired to network directly instead of
|
||||
// being serialized into protobuf messages.
|
||||
cntl.request_attachment().append(g_attachment);
|
||||
}
|
||||
|
||||
// Because `done'(last parameter) is NULL, this function waits until
|
||||
// the response comes back or error occurs(including timedout).
|
||||
stub.Echo(&cntl, &request, &response, NULL);
|
||||
const int64_t elp = cntl.latency_us();
|
||||
if (!cntl.Failed()) {
|
||||
g_latency_recorder << cntl.latency_us();
|
||||
} else {
|
||||
g_error_count << 1;
|
||||
CHECK(brpc::IsAskedToQuit() || !FLAGS_dont_fail)
|
||||
<< "error=" << cntl.ErrorText() << " latency=" << elp;
|
||||
// We can't connect to the server, sleep a while. Notice that this
|
||||
// is a specific sleeping to prevent this thread from spinning too // fast. You should continue the business logic in a production
|
||||
// server rather than sleeping.
|
||||
bthread_usleep(50000);
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
// Parse gflags. We recommend you to use gflags as well.
|
||||
GFLAGS_NAMESPACE::ParseCommandLineFlags(&argc, &argv, true);
|
||||
|
||||
// A Channel represents a communication line to a Server. Notice that
|
||||
// Channel is thread-safe and can be shared by all threads in your program.
|
||||
brpc::SelectiveChannel channel;
|
||||
brpc::ChannelOptions schan_options;
|
||||
schan_options.timeout_ms = FLAGS_timeout_ms;
|
||||
schan_options.backup_request_ms = FLAGS_backup_ms;
|
||||
schan_options.max_retry = FLAGS_max_retry;
|
||||
if (channel.Init(FLAGS_load_balancer.c_str(), &schan_options) != 0) {
|
||||
LOG(ERROR) << "Fail to init SelectiveChannel";
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Add sub channels.
|
||||
// ================
|
||||
std::vector<brpc::ChannelBase*> sub_channels;
|
||||
|
||||
// Add an ordinary channel.
|
||||
brpc::Channel* sub_channel1 = new brpc::Channel;
|
||||
butil::EndPoint pt;
|
||||
if (str2endpoint(FLAGS_starting_server.c_str(), &pt) != 0 &&
|
||||
hostname2endpoint(FLAGS_starting_server.c_str(), &pt) != 0) {
|
||||
LOG(ERROR) << "Invalid address=`" << FLAGS_starting_server << "'";
|
||||
return -1;
|
||||
}
|
||||
brpc::ChannelOptions options;
|
||||
options.protocol = FLAGS_protocol;
|
||||
options.connection_type = FLAGS_connection_type;
|
||||
std::ostringstream os;
|
||||
os << "list://";
|
||||
for (int i = 0; i < 3; ++i) {
|
||||
os << butil::EndPoint(pt.ip, pt.port++) << ",";
|
||||
}
|
||||
if (sub_channel1->Init(os.str().c_str(), FLAGS_load_balancer.c_str(),
|
||||
&options) != 0) {
|
||||
LOG(ERROR) << "Fail to init ordinary channel";
|
||||
return -1;
|
||||
}
|
||||
sub_channels.push_back(sub_channel1);
|
||||
|
||||
// Add a parallel channel.
|
||||
brpc::ParallelChannel* sub_channel2 = new brpc::ParallelChannel;
|
||||
brpc::ParallelChannelOptions pchan_options;
|
||||
pchan_options.fail_limit = 1;
|
||||
if (sub_channel2->Init(&pchan_options) != 0) {
|
||||
LOG(ERROR) << "Fail to init sub_channel2";
|
||||
return -1;
|
||||
}
|
||||
for (int i = 0; i < 3; ++i) {
|
||||
brpc::ChannelOptions options;
|
||||
options.protocol = FLAGS_protocol;
|
||||
options.connection_type = FLAGS_connection_type;
|
||||
brpc::Channel* c = new brpc::Channel;
|
||||
if (c->Init(butil::EndPoint(pt.ip, pt.port++), &options) != 0) {
|
||||
LOG(ERROR) << "Fail to init sub channel[" << i << "] of pchan";
|
||||
return -1;
|
||||
}
|
||||
if (sub_channel2->AddChannel(c, brpc::OWNS_CHANNEL, NULL, NULL) != 0) {
|
||||
LOG(ERROR) << "Fail to add sub channel[" << i << "] into pchan";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
sub_channels.push_back(sub_channel2);
|
||||
|
||||
// Add another selective channel with default options.
|
||||
brpc::SelectiveChannel* sub_channel3 = new brpc::SelectiveChannel;
|
||||
if (sub_channel3->Init(FLAGS_load_balancer.c_str(), NULL) != 0) {
|
||||
LOG(ERROR) << "Fail to init schan";
|
||||
return -1;
|
||||
}
|
||||
for (int i = 0; i < 3; ++i) {
|
||||
brpc::Channel* c = new brpc::Channel;
|
||||
if (i == 0) {
|
||||
os.str("");
|
||||
os << "list://";
|
||||
for (int j = 0; j < 3; ++j) {
|
||||
os << butil::EndPoint(pt.ip, pt.port++) << ",";
|
||||
}
|
||||
if (c->Init(os.str().c_str(), FLAGS_load_balancer.c_str(),
|
||||
&options) != 0) {
|
||||
LOG(ERROR) << "Fail to init sub channel[" << i << "] of schan";
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
if (c->Init(butil::EndPoint(pt.ip, pt.port++), &options) != 0) {
|
||||
LOG(ERROR) << "Fail to init sub channel[" << i << "] of schan";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
if (sub_channel3->AddChannel(c, NULL)) {
|
||||
LOG(ERROR) << "Fail to add sub channel[" << i << "] into schan";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
sub_channels.push_back(sub_channel3);
|
||||
|
||||
// Add all sub channels into schan.
|
||||
for (size_t i = 0; i < sub_channels.size(); ++i) {
|
||||
// note: we don't need the handle for channel removal;
|
||||
if (channel.AddChannel(sub_channels[i], NULL/*note*/) != 0) {
|
||||
LOG(ERROR) << "Fail to add sub_channel[" << i << "]";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
if (FLAGS_attachment_size > 0) {
|
||||
g_attachment.resize(FLAGS_attachment_size, 'a');
|
||||
}
|
||||
if (FLAGS_request_size <= 0) {
|
||||
LOG(ERROR) << "Bad request_size=" << FLAGS_request_size;
|
||||
return -1;
|
||||
}
|
||||
g_request.resize(FLAGS_request_size, 'r');
|
||||
|
||||
std::vector<bthread_t> bids;
|
||||
std::vector<pthread_t> pids;
|
||||
if (!FLAGS_use_bthread) {
|
||||
pids.resize(FLAGS_thread_num);
|
||||
for (int i = 0; i < FLAGS_thread_num; ++i) {
|
||||
if (pthread_create(&pids[i], NULL, sender, &channel) != 0) {
|
||||
LOG(ERROR) << "Fail to create pthread";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
bids.resize(FLAGS_thread_num);
|
||||
for (int i = 0; i < FLAGS_thread_num; ++i) {
|
||||
if (bthread_start_background(
|
||||
&bids[i], NULL, sender, &channel) != 0) {
|
||||
LOG(ERROR) << "Fail to create bthread";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
while (!brpc::IsAskedToQuit()) {
|
||||
sleep(1);
|
||||
LOG(INFO) << "Sending EchoRequest at qps=" << g_latency_recorder.qps(1)
|
||||
<< " latency=" << g_latency_recorder.latency(1);
|
||||
}
|
||||
|
||||
LOG(INFO) << "EchoClient is going to quit";
|
||||
for (int i = 0; i < FLAGS_thread_num; ++i) {
|
||||
if (!FLAGS_use_bthread) {
|
||||
pthread_join(pids[i], NULL);
|
||||
} else {
|
||||
bthread_join(bids[i], NULL);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
// Licensed to the Apache Software Foundation (ASF) under one
|
||||
// or more contributor license agreements. See the NOTICE file
|
||||
// distributed with this work for additional information
|
||||
// regarding copyright ownership. The ASF licenses this file
|
||||
// to you 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.
|
||||
|
||||
syntax="proto2";
|
||||
package example;
|
||||
|
||||
option cc_generic_services = true;
|
||||
|
||||
message EchoRequest {
|
||||
required string message = 1;
|
||||
};
|
||||
|
||||
message EchoResponse {
|
||||
required string message = 1;
|
||||
};
|
||||
|
||||
service EchoService {
|
||||
rpc Echo(EchoRequest) returns (EchoResponse);
|
||||
};
|
||||
@@ -0,0 +1,172 @@
|
||||
// Licensed to the Apache Software Foundation (ASF) under one
|
||||
// or more contributor license agreements. See the NOTICE file
|
||||
// distributed with this work for additional information
|
||||
// regarding copyright ownership. The ASF licenses this file
|
||||
// to you 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.
|
||||
|
||||
// A server to receive EchoRequest and send back EchoResponse.
|
||||
|
||||
#include <vector>
|
||||
#include <gflags/gflags.h>
|
||||
#include <butil/time.h>
|
||||
#include <butil/logging.h>
|
||||
#include <butil/string_splitter.h>
|
||||
#include <butil/rand_util.h>
|
||||
#include <brpc/server.h>
|
||||
#include "echo.pb.h"
|
||||
|
||||
DEFINE_bool(echo_attachment, true, "Echo attachment as well");
|
||||
DEFINE_int32(port, 8114, "TCP Port of this server");
|
||||
DEFINE_int32(idle_timeout_s, -1, "Connection will be closed if there is no "
|
||||
"read/write operations during the last `idle_timeout_s'");
|
||||
DEFINE_int32(max_concurrency, 0, "Limit of request processing in parallel");
|
||||
DEFINE_int32(server_num, 7, "Number of servers");
|
||||
DEFINE_string(sleep_us, "", "Sleep so many microseconds before responding");
|
||||
DEFINE_bool(spin, false, "spin rather than sleep");
|
||||
DEFINE_double(exception_ratio, 0.1, "Percentage of irregular latencies");
|
||||
DEFINE_double(min_ratio, 0.2, "min_sleep / sleep_us");
|
||||
DEFINE_double(max_ratio, 10, "max_sleep / sleep_us");
|
||||
|
||||
// Your implementation of example::EchoService
|
||||
class EchoServiceImpl : public example::EchoService {
|
||||
public:
|
||||
EchoServiceImpl() : _index(0) {}
|
||||
virtual ~EchoServiceImpl() {}
|
||||
void set_index(size_t index, int64_t sleep_us) {
|
||||
_index = index;
|
||||
_sleep_us = sleep_us;
|
||||
}
|
||||
virtual void Echo(google::protobuf::RpcController* cntl_base,
|
||||
const example::EchoRequest* request,
|
||||
example::EchoResponse* response,
|
||||
google::protobuf::Closure* done) {
|
||||
brpc::ClosureGuard done_guard(done);
|
||||
brpc::Controller* cntl =
|
||||
static_cast<brpc::Controller*>(cntl_base);
|
||||
if (_sleep_us > 0) {
|
||||
double delay = _sleep_us;
|
||||
const double a = FLAGS_exception_ratio * 0.5;
|
||||
if (a >= 0.0001) {
|
||||
double x = butil::RandDouble();
|
||||
if (x < a) {
|
||||
const double min_sleep_us = FLAGS_min_ratio * _sleep_us;
|
||||
delay = min_sleep_us + (_sleep_us - min_sleep_us) * x / a;
|
||||
} else if (x + a > 1) {
|
||||
const double max_sleep_us = FLAGS_max_ratio * _sleep_us;
|
||||
delay = _sleep_us + (max_sleep_us - _sleep_us) * (x + a - 1) / a;
|
||||
}
|
||||
}
|
||||
if (FLAGS_spin) {
|
||||
int64_t end_time = butil::cpuwide_time_us() + (int64_t)delay;
|
||||
while (butil::cpuwide_time_us() < end_time) {}
|
||||
} else {
|
||||
bthread_usleep((int64_t)delay);
|
||||
}
|
||||
}
|
||||
|
||||
// Echo request and its attachment
|
||||
response->set_message(request->message());
|
||||
if (FLAGS_echo_attachment) {
|
||||
cntl->response_attachment().append(cntl->request_attachment());
|
||||
}
|
||||
_nreq << 1;
|
||||
}
|
||||
|
||||
size_t num_requests() const { return _nreq.get_value(); }
|
||||
|
||||
private:
|
||||
size_t _index;
|
||||
int64_t _sleep_us;
|
||||
bvar::Adder<size_t> _nreq;
|
||||
};
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
// Parse gflags. We recommend you to use gflags as well.
|
||||
GFLAGS_NAMESPACE::ParseCommandLineFlags(&argc, &argv, true);
|
||||
|
||||
if (FLAGS_server_num <= 0) {
|
||||
LOG(ERROR) << "server_num must be positive";
|
||||
return -1;
|
||||
}
|
||||
|
||||
// We need multiple servers in this example.
|
||||
brpc::Server* servers = new brpc::Server[FLAGS_server_num];
|
||||
// For more options see `brpc/server.h'.
|
||||
brpc::ServerOptions options;
|
||||
options.idle_timeout_sec = FLAGS_idle_timeout_s;
|
||||
options.max_concurrency = FLAGS_max_concurrency;
|
||||
|
||||
butil::StringSplitter sp(FLAGS_sleep_us.c_str(), ',');
|
||||
std::vector<int64_t> sleep_list;
|
||||
for (; sp; ++sp) {
|
||||
sleep_list.push_back(strtoll(sp.field(), NULL, 10));
|
||||
}
|
||||
if (sleep_list.empty()) {
|
||||
sleep_list.push_back(0);
|
||||
}
|
||||
|
||||
// Instance of your services.
|
||||
EchoServiceImpl* echo_service_impls = new EchoServiceImpl[FLAGS_server_num];
|
||||
// Add the service into servers. Notice the second parameter, because the
|
||||
// service is put on stack, we don't want server to delete it, otherwise
|
||||
// use brpc::SERVER_OWNS_SERVICE.
|
||||
for (int i = 0; i < FLAGS_server_num; ++i) {
|
||||
int64_t sleep_us = sleep_list[(size_t)i < sleep_list.size() ? i : (sleep_list.size() - 1)];
|
||||
echo_service_impls[i].set_index(i, sleep_us);
|
||||
// will be shown on /version page
|
||||
servers[i].set_version(butil::string_printf(
|
||||
"example/selective_echo_c++[%d]", i));
|
||||
if (servers[i].AddService(&echo_service_impls[i],
|
||||
brpc::SERVER_DOESNT_OWN_SERVICE) != 0) {
|
||||
LOG(ERROR) << "Fail to add service";
|
||||
return -1;
|
||||
}
|
||||
// Start the server.
|
||||
int port = FLAGS_port + i;
|
||||
if (servers[i].Start(port, &options) != 0) {
|
||||
LOG(ERROR) << "Fail to start EchoServer";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
// Service logic are running in separate worker threads, for main thread,
|
||||
// we don't have much to do, just spinning.
|
||||
std::vector<size_t> last_num_requests(FLAGS_server_num);
|
||||
while (!brpc::IsAskedToQuit()) {
|
||||
sleep(1);
|
||||
|
||||
size_t cur_total = 0;
|
||||
for (int i = 0; i < FLAGS_server_num; ++i) {
|
||||
const size_t current_num_requests =
|
||||
echo_service_impls[i].num_requests();
|
||||
size_t diff = current_num_requests - last_num_requests[i];
|
||||
cur_total += diff;
|
||||
last_num_requests[i] = current_num_requests;
|
||||
LOG(INFO) << "S[" << i << "]=" << diff << ' ' << noflush;
|
||||
}
|
||||
LOG(INFO) << "[total=" << cur_total << ']';
|
||||
}
|
||||
|
||||
// Don't forget to stop and join the server otherwise still-running
|
||||
// worker threads may crash your program.
|
||||
for (int i = 0; i < FLAGS_server_num; ++i) {
|
||||
servers[i].Stop(0/*not used now*/);
|
||||
}
|
||||
for (int i = 0; i < FLAGS_server_num; ++i) {
|
||||
servers[i].Join();
|
||||
}
|
||||
delete [] servers;
|
||||
delete [] echo_service_impls;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user