memcache的线程模型

MC采用一master多worker的工作模型,由master负责accept客户端请求,然后以RR分发给worker;
-t 线程数,用于处理请求,默认为4
-b backlog队列长度,默认1024

线程结构体
typedef struct { 
    pthread_t thread_id;        /* unique ID of this thread */ 
    struct event_base *base;    /* libevent handle this thread uses */ 
    struct event notify_event;  /* listen event for notify pipe */ 
    int notify_receive_fd;      /* receiving end of notify pipe */ 
    int notify_send_fd;         /* sending end of notify pipe */ 
    CQ  new_conn_queue;         /* queue of new connections to handle */ 
} LIBEVENT_THREAD; 
每个线程都包含一个CQ队列,一条通知管道pipe 和一个libevent的实例event_base ;
当master接受新连接后,通过pipe通知worker;
无论是主线程还是workers线程全部通过libevent管理网络事件,实际上每个线程都是一个单独的libevent实例 ;

启动流程
 

 

 
 


代码实现
master调用accept等待客户端连接(accept为非阻塞调用),返回的sfd也同样被设置为非阻塞,之后分发给worker;
下面看看dispatch_conn_new内部是如何进行链接分发的。
void dispatch_conn_new(int sfd, enum conn_states init_state, int event_flags, 
                       int read_buffer_size, enum network_transport transport) { 
    CQ_ITEM *item = cqi_new();//创建一个conn_item
    char buf[1]; 
    int tid = (last_thread + 1) % settings.num_threads;//通过round-robin算法选择一个线程

    LIBEVENT_THREAD *thread = threads + tid;//thread数组存储了所有的工作线程 

    cq_push(thread->new_conn_queue, item);//投递item信息到Worker线程的工作队列中 

    buf[0] = 'c'; 
    //在Worker线程的notify_send_fd写入字符c,表示有连接    
    if (write(thread->notify_send_fd, buf, 1) != 1) { 
        perror("Writing to thread notify pipe"); 
    }

worker thread在管道描述符notify_send_fd的回调函数为thread_libevent_process,故一旦有数据到达立刻执行
//子线程会在PIPE管道读上面建立libevent事件,事件回调函数是thread_libevent_process
static void thread_libevent_process(int fd, short which, void *arg) { 
    LIBEVENT_THREAD *me = arg; 
    CQ_ITEM *item; 
    char buf[1]; 
 
    if (read(fd, buf, 1) != 1)//PIPE管道读取一个字节的数据 
        if (settings.verbose > 0) 
            fprintf(stderr, "Can't read from libevent pipe\n"); 
 
    switch (buf[0]) { 
    case 'c'://如果是c,则处理网络连接 
    item = cq_pop(me->new_conn_queue);//从连接队列读出Master线程投递的消息 \

    if (NULL != item) { 
        conn *c = conn_new(item->sfd, item->init_state, item->event_flags, 
                           item->read_buffer_size, item->transport, me->base);//创建连接

conn_new里面会建立sfd的网络监听libevent事件,事件回调函数为event_handler,而event_handler的执行流程最终会进入到业务处理的状态机中。
conn *conn_new(const int sfd, enum conn_states init_state, const int event_flags, 
        const int read_buffer_size, enum network_transport transport, 
        struct event_base *base) 

    conn *c = conn_from_freelist();//获取一个空闲连接,conn是Memcached内部对网络连接的一个封装 
 
    if (NULL == c)//如果没有空闲的连接 
    { 
        if (!(c = (conn *) calloc(1, sizeof(conn))))//申请空间 
        { 
            fprintf(stderr, "calloc()\n"); 
            return NULL; 
        }MEMCACHED_CONN_CREATE(c);

//每个conn都自带读入和输出缓冲区,在进行网络收发数据时,特别方便 
        c->rbuf = (char *) malloc((size_t) c->rsize); 
        c->wbuf = (char *) malloc((size_t) c->wsize); 
        c->ilist = (item **) malloc(sizeof(item *) * c->isize); 

 //建立sfd描述符上面的event事件,事件回调函数为event_handler 
    event_set(&c->event, sfd, event_flags, event_handler, (void *) c); 
    event_base_set(base, &c->event); 
    c->ev_flags = event_flags; 
    if (event_add(&c->event, 0) == -1) 
    {        
       //如果建立libevent事件失败,将创建的conn添加到空闲列表中 
       if (conn_add_to_freelist(c)) 
        { 
            conn_free(c); 
        } 
        perror("event_add"); 
        return NULL; 
    } 

//libevent事件回调函数的处理,回调函数被调用时,表明Memcached监听的端口号有网络事件到了 
void event_handler(const int fd, const short which, void *arg) 

conn *c; 
//进入业务处理状态机 
drive_machine(c); 
 


线程通信
master和worker通过连接队列进行单向通信,即Master接受到新的客户端连接时,将sfd封装到conn_queue_item并投送给woker,Worker从其连接队列中读取conn_queue_item同客户端连接进行交互,详情参见dispatch_conn_new;
struct conn_queue_item { 
    int               sfd;//accept之后的描述符 
    enum conn_states  init_state;//连接的初始状态 
    int               event_flags;//libevent标志 
    int               read_buffer_size;//读取数据缓冲区大小 
    enum network_transport     transport;//内部通信所用的协议 
    CQ_ITEM          *next;//用于实现链表的指针 
}; 

struct conn_queue { 
    CQ_ITEM *head;//头指针,注意这里是单链表,不是双向链表 
    CQ_ITEM *tail;//尾部指针, 
    pthread_mutex_t lock;//锁 
    pthread_cond_t  cond;//条件变量 
}; 

//获取一个连接 
static CQ_ITEM *cq_pop(CQ *cq) { 
    CQ_ITEM *item; 
 
    pthread_mutex_lock(&cq->lock);//执行加锁操作 
    item = cq->head;//获得头部指针指向的数据 
    if (NULL != item) { 
        cq->head = item->next;//更新头指针信息 
        if (NULL == cq->head)//这里为空的话,则尾指针也为空,链表此时为空 
            cq->tail = NULL; 
    }
    pthread_mutex_unlock(&cq->lock);//释放锁操作 
 
    return item; 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值