【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

相关文章

Spring Boot 配置文件之类型、加载顺序与最佳实践记录

《SpringBoot配置文件之类型、加载顺序与最佳实践记录》SpringBoot的配置文件是灵活且强大的工具,通过合理的配置管理,可以让应用开发和部署更加高效,无论是简单的属性配置,还是复杂... 目录Spring Boot 配置文件详解一、Spring Boot 配置文件类型1.1 applicatio

mysql出现ERROR 2003 (HY000): Can‘t connect to MySQL server on ‘localhost‘ (10061)的解决方法

《mysql出现ERROR2003(HY000):Can‘tconnecttoMySQLserveron‘localhost‘(10061)的解决方法》本文主要介绍了mysql出现... 目录前言:第一步:第二步:第三步:总结:前言:当你想通过命令窗口想打开mysql时候发现提http://www.cpp

tomcat多实例部署的项目实践

《tomcat多实例部署的项目实践》Tomcat多实例是指在一台设备上运行多个Tomcat服务,这些Tomcat相互独立,本文主要介绍了tomcat多实例部署的项目实践,具有一定的参考价值,感兴趣的可... 目录1.创建项目目录,测试文China编程件2js.创建实例的安装目录3.准备实例的配置文件4.编辑实例的

Python 中的异步与同步深度解析(实践记录)

《Python中的异步与同步深度解析(实践记录)》在Python编程世界里,异步和同步的概念是理解程序执行流程和性能优化的关键,这篇文章将带你深入了解它们的差异,以及阻塞和非阻塞的特性,同时通过实际... 目录python中的异步与同步:深度解析与实践异步与同步的定义异步同步阻塞与非阻塞的概念阻塞非阻塞同步

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

springboot集成Deepseek4j的项目实践

《springboot集成Deepseek4j的项目实践》本文主要介绍了springboot集成Deepseek4j的项目实践,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录Deepseek4j快速开始Maven 依js赖基础配置基础使用示例1. 流式返回示例2. 进阶

SQL Server清除日志文件ERRORLOG和删除tempdb.mdf

《SQLServer清除日志文件ERRORLOG和删除tempdb.mdf》数据库再使用一段时间后,日志文件会增大,特别是在磁盘容量不足的情况下,更是需要缩减,以下为缩减方法:如果可以停止SQLSe... 目录缩减 ERRORLOG 文件(停止服务后)停止 SQL Server 服务:找到错误日志文件:删除

Windows Server服务器上配置FileZilla后,FTP连接不上?

《WindowsServer服务器上配置FileZilla后,FTP连接不上?》WindowsServer服务器上配置FileZilla后,FTP连接错误和操作超时的问题,应该如何解决?首先,通过... 目录在Windohttp://www.chinasem.cnws防火墙开启的情况下,遇到的错误如下:无法与

Android App安装列表获取方法(实践方案)

《AndroidApp安装列表获取方法(实践方案)》文章介绍了Android11及以上版本获取应用列表的方案调整,包括权限配置、白名单配置和action配置三种方式,并提供了相应的Java和Kotl... 目录前言实现方案         方案概述一、 androidManifest 三种配置方式

一文详解SQL Server如何跟踪自动统计信息更新

《一文详解SQLServer如何跟踪自动统计信息更新》SQLServer数据库中,我们都清楚统计信息对于优化器来说非常重要,所以本文就来和大家简单聊一聊SQLServer如何跟踪自动统计信息更新吧... SQL Server数据库中,我们都清楚统计信息对于优化器来说非常重要。一般情况下,我们会开启"自动更新