当前位置:   article > 正文

redis的多线程

docker redis fatal: can't initialize background jobs.

目录

主要看下redis是怎么使用多线程

先说明下redis也是多线程的.但是redis的主线程处理业务.而其他三个线程跟主要功能是关系不到的

redis的三个线程主要是做什么

初始化入口

  1. void initServer(void) {
  2. ...
  3. bioInit();
  4. ...
  5. }

初始化后redis其他后台线程.

  1. void bioInit(void) {
  2. pthread_attr_t attr;
  3. pthread_t thread;
  4. size_t stacksize;
  5. int j;
  6. /* Initialization of state vars and objects
  7. *
  8. * 初始化 job 队列,以及线程状态
  9. */
  10. for (j = 0; j < REDIS_BIO_NUM_OPS; j++) {
  11. pthread_mutex_init(&bio_mutex[j],NULL);
  12. pthread_cond_init(&bio_condvar[j],NULL);
  13. bio_jobs[j] = listCreate();
  14. bio_pending[j] = 0;
  15. }
  16. /* Set the stack size as by default it may be small in some system
  17. *
  18. * 设置栈大小
  19. */
  20. pthread_attr_init(&attr);
  21. pthread_attr_getstacksize(&attr,&stacksize);
  22. if (!stacksize) stacksize = 1; /* The world is full of Solaris Fixes */
  23. while (stacksize < REDIS_THREAD_STACK_SIZE) stacksize *= 2;
  24. pthread_attr_setstacksize(&attr, stacksize);
  25. /* Ready to spawn our threads. We use the single argument the thread
  26. * function accepts in order to pass the job ID the thread is
  27. * responsible of.
  28. *
  29. * 创建线程
  30. */
  31. for (j = 0; j < REDIS_BIO_NUM_OPS; j++) {
  32. void *arg = (void*)(unsigned long) j;
  33. if (pthread_create(&thread,&attr,bioProcessBackgroundJobs,arg) != 0) {
  34. redisLog(REDIS_WARNING,"Fatal: Can't initialize Background Jobs.");
  35. exit(1);
  36. }
  37. bio_threads[j] = thread;
  38. }
  39. }

初始化三类线程. 这三类线程被认为是后台执行.不影响主线程

  1. BIO_CLOSE_FILE . 关闭重写之前的aof文件.
  2. BIO_AOF_FSYNC . 定时刷新数据到磁盘上.
  3. BIO_LAZY_FREE . 惰性删除过期时间数据

redis为了保证其高效.一些比较耗时的动作会起线程或者进程来完成.不会阻塞在业务主线程上.

使用多线程的特点

  • 创建3个线程.这个三个线程的功能互不影响
  • 每个线程都有一个工作队列.主线程生产任务放到任务队里.这三个线程消费这些任务.
  • 任务队列和取出消费的时候都得加锁.防止竞争
  • 使用条件变量来等待任务.以及通知
  1. // 存放工作的队列
  2. static list *bio_jobs[REDIS_BIO_NUM_OPS];

bio_jobs是一个双端链表结构

  1. void bioCreateBackgroundJob(int type, void *arg1, void *arg2, void *arg3) {
  2. struct bio_job *job = zmalloc(sizeof(*job));
  3. job->time = time(NULL);
  4. job->arg1 = arg1;
  5. job->arg2 = arg2;
  6. job->arg3 = arg3;
  7. pthread_mutex_lock(&bio_mutex[type]);
  8. // 将新工作推入队列
  9. listAddNodeTail(bio_jobs[type],job);
  10. bio_pending[type]++;
  11. pthread_cond_signal(&bio_condvar[type]);
  12. pthread_mutex_unlock(&bio_mutex[type]);
  13. }

当有任务的时候.先把任务丢到redis工作队列里.这里记得加锁

  1. void *bioProcessBackgroundJobs(void *arg) {
  2. struct bio_job *job;
  3. unsigned long type = (unsigned long) arg;
  4. sigset_t sigset;
  5. /* Make the thread killable at any time, so that bioKillThreads()
  6. * can work reliably. */
  7. pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL);
  8. pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
  9. pthread_mutex_lock(&bio_mutex[type]);
  10. /* Block SIGALRM so we are sure that only the main thread will
  11. * receive the watchdog signal. */
  12. sigemptyset(&sigset);
  13. sigaddset(&sigset, SIGALRM);
  14. if (pthread_sigmask(SIG_BLOCK, &sigset, NULL))
  15. redisLog(REDIS_WARNING,
  16. "Warning: can't mask SIGALRM in bio.c thread: %s", strerror(errno));
  17. while(1) {
  18. listNode *ln;
  19. /* The loop always starts with the lock hold. */
  20. if (listLength(bio_jobs[type]) == 0) {
  21. pthread_cond_wait(&bio_condvar[type],&bio_mutex[type]);
  22. continue;
  23. }
  24. /* Pop the job from the queue.
  25. *
  26. * 取出(但不删除)队列中的首个任务
  27. */
  28. ln = listFirst(bio_jobs[type]);
  29. job = ln->value;
  30. /* It is now possible to unlock the background system as we know have
  31. * a stand alone job structure to process.*/
  32. pthread_mutex_unlock(&bio_mutex[type]);
  33. /* Process the job accordingly to its type. */
  34. // 执行任务
  35. if (type == REDIS_BIO_CLOSE_FILE) {
  36. close((long)job->arg1);
  37. } else if (type == REDIS_BIO_AOF_FSYNC) {
  38. aof_fsync((long)job->arg1);
  39. } else {
  40. redisPanic("Wrong job type in bioProcessBackgroundJobs().");
  41. }
  42. zfree(job);
  43. /* Lock again before reiterating the loop, if there are no longer
  44. * jobs to process we'll block again in pthread_cond_wait(). */
  45. pthread_mutex_lock(&bio_mutex[type]);
  46. // 将执行完成的任务从队列中删除,并减少任务计数器
  47. listDelNode(bio_jobs[type],ln);
  48. bio_pending[type]--;
  49. }
  50. }
  • 操作前先上锁
  • 从工作任务里取任务
  • 解锁
  • 执行业务逻辑
  • 执行完上锁.重新pthread_cond_wait

条件变量

条件变量是利用线程间共享的全局变量进行同步的一种机制,主要包括两个动作:

  • 一个线程等待"条件变量的条件成立"而挂起;
  • 另一个线程使"条件成立"(给出条件成立信号)。

==为了防止竞争,条件变量的使用总是和一个互斥锁结合在一起==

pthread_cond_wait原理

就是说pthread_cond_wait(pthread_cond_t cond, pthread_mutex_t mutex)函数传入的参数mutex用于保护条件,因为我们在调用pthread_cond_wait时,如果条件不成立我们就进入阻塞,但是进入阻塞这个期间,如果条件变量改变了的话,那我们就漏掉了这个条件。因为这个线程还没有放到等待队列上,所以调用pthread_cond_wait前要先锁互斥量,即调用pthread_mutex_lock()。

==pthread_cond_wait在把线程放进阻塞队列后,自动对mutex进行解锁,使得其它线程可以获得加锁的权利。这样其它线程才能对临界资源进行访问并在适当的时候唤醒这个阻塞的进程。当pthread_cond_wait返回的时候又自动给mutex加锁==

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/409182
推荐阅读
相关标签
  

闽ICP备14008679号