【brpc学习实践七】dummy server、DynamicPartitionChannel

2023-11-23 19:36

本文主要是介绍【brpc学习实践七】dummy server、DynamicPartitionChannel,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

dummy server

如果你的程序只使用了baidu-rpc的client或根本没有使用baidu-rpc,但你也想使用baidu-rpc的内置服务,只要在程序中启动一个空的server就行了,这种server我们称为dummy server。
Dummy server 可以用于原型设计和开发目的,作为简单的 http 服务器使用,多数场景用不上。

brpc怎么开启dummy server

使用brpc的client

方式一(推荐方式)
通过gflags方式声明dummy server port,比如:–dummy_server_port=8888,需要重启服务才能生效,优先级低于方式二。
这种方式使用成本较低,优先级低于方式二的原因是:晚于方式二出现,因此需要兼容方式二。
方式二
在程序运行目录建立dummy_server.port文件,填入一个端口号(比如8888),不需要重启服务就能生效,优先级高于方式一。

没有使用baidu-rpc的client

你必须手动加入dummy server

#include <baidu/rpc/server.h>...int main() {... baidu::rpc::Server dummy_server;baidu::rpc::ServerOptions dummy_server_options;dummy_server_options.num_threads = 0;  // 不要改变寄主程序的线程数。if (dummy_server.Start(8888/*port*/, &dummy_server_options) != 0) {LOG(FATAL) << "Fail to start dummy server";return -1; }...
}

r31803之后加入dummy server更容易了,只要一行:

#include <baidu/rpc/server.h>...int main() {... baidu::rpc::StartDummyServerAt(8888/*port*/);...
}

使用brpc客户端的dummy示例

值得注意的是,我们在这里用了bvar::LatencyRecorder g_latency_recorder(“client”);来记录延迟,我们将在下一篇章详细讲述bvar的功能

#include <gflags/gflags.h>
#include <butil/logging.h>
#include <butil/time.h>
#include <bthread/bthread.h>
#include <brpc/channel.h>
#include <brpc/server.h>
#include "echo.pb.h"
#include <bvar/bvar.h>DEFINE_int32(thread_num, 4, "Number of threads to send requests");
DEFINE_bool(use_bthread, false, "Use bthread to send requests");
DEFINE_string(attachment, "foo", "Carry this along with requests");
DEFINE_string(connection_type, "", "Connection type. Available values: single, pooled, short");
DEFINE_string(server, "0.0.0.0:8000", "IP Address of server");
DEFINE_string(load_balancer, "", "The algorithm for load balancing");
DEFINE_int32(timeout_ms, 100, "RPC timeout in milliseconds");
DEFINE_int32(max_retry, 3, "Max retries(not including the first RPC)"); 
DEFINE_string(protocol, "baidu_std", "Protocol type. Defined in src/brpc/options.proto");
DEFINE_int32(depth, 0, "number of loop calls");
// Don't send too frequently in this example
DEFINE_int32(sleep_ms, 100, "milliseconds to sleep after each RPC");
DEFINE_int32(dummy_port, -1, "Launch dummy server at this port");bvar::LatencyRecorder g_latency_recorder("client");void* sender(void* arg) {brpc::Channel* chan = (brpc::Channel*)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(chan);// Send a request and wait for the response every 1 second.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("hello world");if (FLAGS_depth > 0) {request.set_depth(FLAGS_depth);}cntl.set_log_id(log_id ++);  // set by user// Set attachment which is wired to network directly instead of // being serialized into protobuf messages.cntl.request_attachment().append(FLAGS_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);if (cntl.Failed()) {//LOG_EVERY_SECOND(WARNING) << "Fail to send EchoRequest, " << cntl.ErrorText();} else {g_latency_recorder << cntl.latency_us();}if (FLAGS_sleep_ms != 0) {bthread_usleep(FLAGS_sleep_ms * 1000L);}}return NULL;
}int main(int argc, char* argv[]) {// Parse gflags. We recommend you to use gflags as well.GFLAGS_NS::SetUsageMessage("Send EchoRequest to server every second");GFLAGS_NS::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::Channel channel;brpc::ChannelOptions options;options.protocol = FLAGS_protocol;options.connection_type = FLAGS_connection_type;options.timeout_ms = FLAGS_timeout_ms/*milliseconds*/;options.max_retry = FLAGS_max_retry;// Initialize the channel, NULL means using default options. // options, see `brpc/channel.h'.if (channel.Init(FLAGS_server.c_str(), FLAGS_load_balancer.c_str(), &options) != 0) {LOG(ERROR) << "Fail to initialize channel";return -1;}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;}}}if (FLAGS_dummy_port >= 0) {brpc::StartDummyServerAt(FLAGS_dummy_port);}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;
}

DynamicPartitionChannel

主要是用来,就是可以在保持客户端代码不变的情况下,将服务器从一个分区方式更改为另一个分区,这样可以实现服务器之间的无缝切换,提高了系统的可用性和稳定性。具体实例代码如下,由于工作中没用到,大概记录下,后续用到再来补充细节:

client示例:

#include <gflags/gflags.h>
#include <bthread/bthread.h>
#include <butil/logging.h>
#include <butil/string_printf.h>
#include <butil/time.h>
#include <butil/macros.h>
#include <brpc/partition_channel.h>
#include <deque>
#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(server, "file://server_list", "Mapping to servers");
DEFINE_string(load_balancer, "rr", "Name of load balancer");
DEFINE_int32(timeout_ms, 100, "RPC 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;
pthread_mutex_t g_latency_mutex = PTHREAD_MUTEX_INITIALIZER;
struct BAIDU_CACHELINE_ALIGNMENT SenderInfo {size_t nsuccess;int64_t latency_sum;
};
std::deque<SenderInfo> g_sender_info;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));SenderInfo* info = NULL;{BAIDU_SCOPED_LOCK(g_latency_mutex);g_sender_info.push_back(SenderInfo());info = &g_sender_info.back();}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 userif (!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);if (!cntl.Failed()) {info->latency_sum += cntl.latency_us();++info->nsuccess;} else {CHECK(brpc::IsAskedToQuit() || !FLAGS_dont_fail)<< "error=" << cntl.ErrorText() << " latency=" << cntl.latency_us();// 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;
}class MyPartitionParser : public brpc::PartitionParser {
public:bool ParseFromTag(const std::string& tag, brpc::Partition* out) {// "N/M" : #N partition of M partitions.size_t pos = tag.find_first_of('/');if (pos == std::string::npos) {LOG(ERROR) << "Invalid tag=" << tag;return false;}char* endptr = NULL;out->index = strtol(tag.c_str(), &endptr, 10);if (endptr != tag.data() + pos) {LOG(ERROR) << "Invalid index=" << butil::StringPiece(tag.data(), pos);return false;}out->num_partition_kinds = strtol(tag.c_str() + pos + 1, &endptr, 10);if (endptr != tag.c_str() + tag.size()) {LOG(ERROR) << "Invalid num=" << tag.data() + pos + 1;return false;}return true;}
};int main(int argc, char* argv[]) {// Parse gflags. We recommend you to use gflags as well.GFLAGS_NS::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::DynamicPartitionChannel channel;brpc::PartitionChannelOptions options;options.protocol = FLAGS_protocol;options.connection_type = FLAGS_connection_type;options.succeed_without_server = true;options.fail_limit = 1;options.timeout_ms = FLAGS_timeout_ms/*milliseconds*/;options.max_retry = FLAGS_max_retry;if (channel.Init(new MyPartitionParser(),FLAGS_server.c_str(), FLAGS_load_balancer.c_str(),&options) != 0) {LOG(ERROR) << "Fail to init channel";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;}}}int64_t last_counter = 0;int64_t last_latency_sum = 0;std::vector<size_t> last_nsuccess(FLAGS_thread_num);while (!brpc::IsAskedToQuit()) {sleep(1);int64_t latency_sum = 0;int64_t nsuccess = 0;pthread_mutex_lock(&g_latency_mutex);CHECK_EQ(g_sender_info.size(), (size_t)FLAGS_thread_num);for (size_t i = 0; i < g_sender_info.size(); ++i) {const SenderInfo& info = g_sender_info[i];latency_sum += info.latency_sum;nsuccess += info.nsuccess;if (FLAGS_dont_fail) {CHECK(info.nsuccess > last_nsuccess[i]) << "i=" << i;}last_nsuccess[i] = info.nsuccess;}pthread_mutex_unlock(&g_latency_mutex);const int64_t avg_latency = (latency_sum - last_latency_sum) /std::max(nsuccess - last_counter, (int64_t)1);LOG(INFO) << "Sending EchoRequest at qps=" << nsuccess - last_counter<< " latency=" << avg_latency;last_counter = nsuccess;last_latency_sum = latency_sum;}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;
}

server分区配置示例

0.0.0.0:8004  0/30.0.0.0:8004  1/3     0.0.0.0:8004  2/3
# 0.0.0.0:8008 0/30.0.0.0:8005  0/4     0.0.0.0:8005  1/4     0.0.0.0:8005  2/4     0.0.0.0:8005  3/4     0.0.0.0:8006 0/40.0.0.0:8006 1/40.0.0.0:8006 2/40.0.0.0:8006 3/4

server端示例

DEFINE_bool(echo_attachment, true, "Echo attachment as well");
DEFINE_int32(port, 8004, "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(logoff_ms, 2000, "Maximum duration of server's LOGOFF state ""(waiting for client to close connection before server stops)");
DEFINE_int32(max_concurrency, 0, "Limit of request processing in parallel");
DEFINE_int32(server_num, 1, "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::gettimeofday_us() + (int64_t)delay;while (butil::gettimeofday_us() < end_time) {}} else {bthread_usleep((int64_t)delay);}}// Echo request and its attachmentresponse->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_NS::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 pageservers[i].set_version(butil::string_printf("example/dynamic_partition_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. Clients will have/ at most// `FLAGS_logoff_ms' to close their connections. If some connections// still remains after `FLAGS_logoff_ms', they will be closed by force.for (int i = 0; i < FLAGS_server_num; ++i) {servers[i].Stop(FLAGS_logoff_ms);}for (int i = 0; i < FLAGS_server_num; ++i) {servers[i].Join();}delete [] servers;delete [] echo_service_impls;return 0;
}

这篇关于【brpc学习实践七】dummy server、DynamicPartitionChannel的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/420242

相关文章

全面掌握 SQL 中的 DATEDIFF函数及用法最佳实践

《全面掌握SQL中的DATEDIFF函数及用法最佳实践》本文解析DATEDIFF在不同数据库中的差异,强调其边界计算原理,探讨应用场景及陷阱,推荐根据需求选择TIMESTAMPDIFF或inte... 目录1. 核心概念:DATEDIFF 究竟在计算什么?2. 主流数据库中的 DATEDIFF 实现2.1

Spring WebFlux 与 WebClient 使用指南及最佳实践

《SpringWebFlux与WebClient使用指南及最佳实践》WebClient是SpringWebFlux模块提供的非阻塞、响应式HTTP客户端,基于ProjectReactor实现,... 目录Spring WebFlux 与 WebClient 使用指南1. WebClient 概述2. 核心依

SQL Server配置管理器无法打开的四种解决方法

《SQLServer配置管理器无法打开的四种解决方法》本文总结了SQLServer配置管理器无法打开的四种解决方法,文中通过图文示例介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的... 目录方法一:桌面图标进入方法二:运行窗口进入检查版本号对照表php方法三:查找文件路径方法四:检查 S

MyBatis-Plus 中 nested() 与 and() 方法详解(最佳实践场景)

《MyBatis-Plus中nested()与and()方法详解(最佳实践场景)》在MyBatis-Plus的条件构造器中,nested()和and()都是用于构建复杂查询条件的关键方法,但... 目录MyBATis-Plus 中nested()与and()方法详解一、核心区别对比二、方法详解1.and()

Spring Boot @RestControllerAdvice全局异常处理最佳实践

《SpringBoot@RestControllerAdvice全局异常处理最佳实践》本文详解SpringBoot中通过@RestControllerAdvice实现全局异常处理,强调代码复用、统... 目录前言一、为什么要使用全局异常处理?二、核心注解解析1. @RestControllerAdvice2

Spring事务传播机制最佳实践

《Spring事务传播机制最佳实践》Spring的事务传播机制为我们提供了优雅的解决方案,本文将带您深入理解这一机制,掌握不同场景下的最佳实践,感兴趣的朋友一起看看吧... 目录1. 什么是事务传播行为2. Spring支持的七种事务传播行为2.1 REQUIRED(默认)2.2 SUPPORTS2

Java中的雪花算法Snowflake解析与实践技巧

《Java中的雪花算法Snowflake解析与实践技巧》本文解析了雪花算法的原理、Java实现及生产实践,涵盖ID结构、位运算技巧、时钟回拨处理、WorkerId分配等关键点,并探讨了百度UidGen... 目录一、雪花算法核心原理1.1 算法起源1.2 ID结构详解1.3 核心特性二、Java实现解析2.

MySQL 中 ROW_NUMBER() 函数最佳实践

《MySQL中ROW_NUMBER()函数最佳实践》MySQL中ROW_NUMBER()函数,作为窗口函数为每行分配唯一连续序号,区别于RANK()和DENSE_RANK(),特别适合分页、去重... 目录mysql 中 ROW_NUMBER() 函数详解一、基础语法二、核心特点三、典型应用场景1. 数据分

深度解析Spring AOP @Aspect 原理、实战与最佳实践教程

《深度解析SpringAOP@Aspect原理、实战与最佳实践教程》文章系统讲解了SpringAOP核心概念、实现方式及原理,涵盖横切关注点分离、代理机制(JDK/CGLIB)、切入点类型、性能... 目录1. @ASPect 核心概念1.1 AOP 编程范式1.2 @Aspect 关键特性2. 完整代码实

MySQL 用户创建与授权最佳实践

《MySQL用户创建与授权最佳实践》在MySQL中,用户管理和权限控制是数据库安全的重要组成部分,下面详细介绍如何在MySQL中创建用户并授予适当的权限,感兴趣的朋友跟随小编一起看看吧... 目录mysql 用户创建与授权详解一、MySQL用户管理基础1. 用户账户组成2. 查看现有用户二、创建用户1. 基