這篇文章主要介紹“怎么用fastcgi模式提高RGW并發(fā)數(shù)”,在日常操作中,相信很多人在怎么用fastcgi模式提高RGW并發(fā)數(shù)問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”怎么用fastcgi模式提高RGW并發(fā)數(shù)”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
金臺(tái)網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),金臺(tái)網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為金臺(tái)上1000+提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的金臺(tái)做網(wǎng)站的公司定做!
以rgw服務(wù)的main()為入口,查看整個(gè)fastcgi的初始化過程,代碼如下
#src/rgw/rgw_main.cc int main(int argc, const char **argv) if (framework == "fastcgi" || framework == "fcgi") { RGWProcessEnv fcgi_pe = { store, &rest, olog, 0 }; fe = new RGWFCGXFrontend(fcgi_pe, config); dout(0) << "starting handler: " << fiter->first << dendl; int r = fe->init(); #調(diào)用RGWFCGXFrontend的init()方法
再看init()方法構(gòu)建了一個(gè)RGWFCGXProcess,并將rgw_thread_pool_size作為實(shí)參傳遞進(jìn)去。
#src/rgw/rgw_frontend.h class RGWFCGXFrontend : public RGWProcessFrontend { public: RGWFCGXFrontend(RGWProcessEnv& pe, RGWFrontendConfig* _conf) : RGWProcessFrontend(pe, _conf) {} int init() { pprocess = new RGWFCGXProcess(g_ceph_context, &env, g_conf->rgw_thread_pool_size, conf); return 0; } };
默認(rèn)rgw_thread_pool_size為100,代碼定義如下
#src/common/config_opts.h OPTION(rgw_thread_pool_size, OPT_INT, 100)
通過RGWFCGXProcess的構(gòu)造函數(shù)發(fā)現(xiàn)max_connections=num_threads + (num_threads >> 3),也就是說默認(rèn)情況下max_connections=100+1=101,代碼注釋中也提到這是為了確保能夠盡可能多的處理請(qǐng)求。
#src/rgw/rgw_process.h class RGWFCGXProcess : public RGWProcess { int max_connections; public: /* have a bit more connections than threads so that requests are * still accepted even if we're still processing older requests */ RGWFCGXProcess(CephContext* cct, RGWProcessEnv* pe, int num_threads, RGWFrontendConfig* _conf) : RGWProcess(cct, pe, num_threads, _conf), max_connections(num_threads + (num_threads >> 3)) {} void run(); void handle_request(RGWRequest* req); };
所以num_threads控制著max_connections的數(shù)量,如果你想提高單個(gè)rgw進(jìn)程的最大并發(fā)數(shù)量,需要調(diào)高rgw_thread_pool_size。
到此,關(guān)于“怎么用fastcgi模式提高RGW并發(fā)數(shù)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
網(wǎng)頁(yè)名稱:怎么用fastcgi模式提高RGW并發(fā)數(shù)
網(wǎng)站地址:http://www.rwnh.cn/article14/psjcge.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動(dòng)網(wǎng)站建設(shè)、App設(shè)計(jì)、服務(wù)器托管、企業(yè)建站、網(wǎng)站設(shè)計(jì)公司、搜索引擎優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)