您好,登錄后才能下訂單哦!
1)幫助大家對Nginx有一定的認識
2)熟悉Nginx有哪些應用場景
3)熟悉Nginx特點和架構模型以及相關流程
4)熟悉Nginx定制化開發的幾種模塊分類
Nginx簡介:
Nginx (engine x) 是一個高性能的web服務器和反向代理服務器,也是一個IMAP/POP3/SMTP服務器
Nginx社區分支:
Nginx源碼結構:
Nginx特點:
場景如下:
進程組件角色:
框架模型:
框架模型流程:
load_balance:
Handler模塊:
#配置文件:
server {
...
location test {
test_counter on;
}
}
#config
ngx_addon_name=ngx_http_test_module
HTTP_MODULES="$HTTP_MODULES ngx_http_test_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_test_module.c"
#ngx_http_test_module.c
static ngx_int_t
ngx_http_test_handler(ngx_http_request_t *r)
{
ngx_int_t rc;
ngx_buf_t *b;
ngx_chain_t out;
ngx_http_test_conf_t *lrcf;
ngx_str_t ngx_test_string = ngx_string("hello test");
lrcf = ngx_http_get_module_loc_conf(r, ngx_http_test_module);
if ( lrcf->test_counter == 0 ) {
return NGX_DECLINED;
}
/* we response to 'GET' and 'HEAD' requests only */
if ( !(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD)) ) {
return NGX_HTTP_NOT_ALLOWED;
}
/* discard request body, since we don't need it here */
rc = ngx_http_discard_request_body(r);
if ( rc != NGX_OK ) {
return rc;
}
/* set the 'Content-type' header */
/*
*r->headers_out.content_type.len = sizeof("text/html") - 1;
*r->headers_out.content_type.data = (u_char *)"text/html";
*/
ngx_str_set(&r->headers_out.content_type, "text/html");
/* send the header only, if the request type is http 'HEAD' */
if ( r->method == NGX_HTTP_HEAD ) {
r->headers_out.status = NGX_HTTP_OK;
r->headers_out.content_length_n = ngx_test_string.len;
return ngx_http_send_header(r);
}
/* set the status line */
r->headers_out.status = NGX_HTTP_OK;
r->headers_out.content_length_n = ngx_test_string.len;
/* send the headers of your response */
rc = ngx_http_send_header(r);
if ( rc == NGX_ERROR || rc > NGX_OK || r->header_only ) {
return rc;
}
/* allocate a buffer for your response body */
b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
if ( b == NULL ) {
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
/* attach this buffer to the buffer chain */
out.buf = b;
out.next = NULL;
/* adjust the pointers of the buffer */
b->pos = ngx_test_string.data;
b->last = ngx_test_string.data + ngx_test_string.len;
b->memory = 1; /* this buffer is in memory */
b->last_buf = 1; /* this is the last buffer in the buffer chain */
/* send the buffer chain of your response */
return ngx_http_output_filter(r, &out);
}
解決接入層故障定位慢的問題,幫助OP快速判定問題根因,優先自證清白,提高接入層高效的生產力。
特點:
實現非常靈活的動態的修改策略從而進行切流量。
實現平滑無損的方式進行流量的切換。
通過秒級切換流量可以縮小影響范圍,從而減少損失。
按照某一城市或者某個特征,秒級進行切換流量或者禁用流量。
容忍單機房級別容量故障,縮短了單機房故障的止損時間。
快速的將流量隔離或者流量抽樣。
高效的灰度測試,提高生產力。
讓接入層可以適配動態調度的云環境,實現服務的平滑上下線、彈性擴/縮容。
從而提高接入層高效的生產力以及穩定性,保證業務流量的平滑無損。
鏈路追蹤,梳理接口到后端鏈路的情況。查詢location接口對應upstream server信息。
獲取nginx配置文件格式化為json格式信息。
根據配置文件來動態的添加共享內存。
https://github.com/lidaohang/ngx_shm_dict
ngx_shm_dict
共享內存核心模塊(紅黑樹,隊列)
ngx_shm_dict_manager
添加定時器事件,定時的清除共享內存中過期的key
添加讀事件,支持redis協議,通過redis-cli get,set,del,ttl
ngx_shm_dict_view
共享內存查看
現在注冊滴滴云,有機會可得30元無門檻滴滴出行券
新購云服務1月5折 3月4.5折 6月低至4折
滴滴云使者招募,推薦最高返傭50%
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。