当前位置:   article > 正文

kafka内存池设计的艺术_kafka内存池设计的优势

kafka内存池设计的优势

        kafka之所以能够做到高吞吐,究其原因是因为生产者发送消息使用的是攒批发送的方式。这样做的好处还有可以减少网络上的资源消耗。在新版的Kafka Producer中,设计了一个内存缓冲池,在创建Producer时会默认创建一个大小为32M的缓冲池,也可以通过buffer.memory参数指定缓冲池的大小,同时缓冲池被切分成多个内存块,内存块的大小就是我们创建Producer时传的batch.size大小,默认大小16384,而每个Batch都会包含一个batch.size大小的内存块,消息就是存放在内存块当中

        kafka设计这样一个内存缓冲池的好处是什么呢?新版本的kafka是由Java语言实现的Java语言中有GC机制在高并发的场景下如果频繁的创建ByteBuffer对象然后再销毁ByteBuffer对象势必会影响性能甚至还会引发Java GC中的Stop the world这一问题让应用停止响应kafka Producer是通过在RecordAccumulator中调用append方法添加一条消息到RecordAccumulator中这个方法会调用BufferPool中的allocate方法来申请一个ByteBufferBufferPool是kafka设计的一个内存缓冲池它大体上分为两部分:Deque<ByteBuffer> freeavailableMemory。free中存储的一个ByteBuffer内存块是16KB当RecordAccumulator去调用BufferPool的allocate时根据传入的size判断由哪个内存区域分配内存块在构建RecordAccumulator对象的时候传入的batchSize参数是由batch.size提供的默认是16384byte也就是16kb也就是kafka默认一个批次是16kb大小如果是16kb直接从Deque<ByteBuffer> free中拿一个返回不过不是则从availableMemory重新分配下图是BufferPool的组成结构和流程

        类BufferPool

        重要字段如下:

  1. // BufferPool总内存,默认32M
  2. private final long totalMemory;
  3. // 可以池化的内存大小,在RecordAccumulator构造函数中调用BufferPool构造函数,
  4. // 传入的是batchSize来给这个变量赋值,也就是定义了一个批次的大小。
  5. private final int poolableSize;
  6. // 因为会有多线程并发创建和回收ByteBuffer,所以使用锁控制并发,保证了线程安全。
  7. private final ReentrantLock lock;
  8. // 可以用于池化的内存。
  9. private final Deque<ByteBuffer> free;
  10. // 因为会有申请不到足够内存的线程,线程为了等待其他线程释放内存而阻塞等待,
  11. // 对应的Condition对象会进入该队列。
  12. private final Deque<Condition> waiters;
  13. // 可以额外在分配的内存。
  14. private long availableMemory;

        接下来我们来看看BufferPool中的allocate方法。该方法的作用根据给定的size,在BufferPool中分配一个buffer。如果没有足够的内存用于分配并且BufferPool配置为阻塞模式,则这个方法会阻塞。

  1. public ByteBuffer allocate(int size, long maxTimeToBlockMs) throws InterruptedException {
  2. if (size > this.totalMemory)
  3. throw new IllegalArgumentException("Attempt to allocate " + size + " bytes, but there is a hard limit of "
  4. + this.totalMemory + " on memory allocations.");
  5. // 加锁同步
  6. this.lock.lock();
  7. try {
  8. // check if we have a free buffer of the right size pooled
  9. // 请求的是poolableSize指定大小的ByteBuffer,且free Deque中有空闲的ByteBuffer。
  10. if (size == poolableSize && !this.free.isEmpty())
  11. return this.free.pollFirst();
  12. // 当申请的空间大小不是poolableSize,则执行下面的处理。
  13. // free队列中都是poolableSize大小的ByteBuffer,可以直接计算整个free队列的空间。
  14. // now check if the request is immediately satisfiable with the
  15. // memory on hand or if we need to block
  16. int freeListSize = this.free.size() * this.poolableSize;
  17. // 可用内存加上内存队列上的内存数,即总内存。
  18. if (this.availableMemory + freeListSize >= size) {
  19. // 为了让availableMemory > size,freeUp()方法会从free队列中不断释放ByteBuffer,直到availableMemory满足这次申请。
  20. // we have enough unallocated or pooled memory to immediately
  21. // satisfy the request
  22. freeUp(size);
  23. // 减少availableMemory
  24. this.availableMemory -= size;
  25. lock.unlock();
  26. return ByteBuffer.allocate(size);
  27. } else {
  28. // we are out of memory and will have to block
  29. int accumulated = 0;
  30. ByteBuffer buffer = null;
  31. Condition moreMemory = this.lock.newCondition();
  32. long remainingTimeToBlockNs = TimeUnit.MILLISECONDS.toNanos(maxTimeToBlockMs);
  33. // 将Condition添加到waiters中。
  34. this.waiters.addLast(moreMemory);
  35. // loop over and over until we have a buffer or have reserved
  36. // enough memory to allocate one
  37. while (accumulated < size) {
  38. long startWaitNs = time.nanoseconds();
  39. long timeNs;
  40. boolean waitingTimeElapsed;
  41. try {
  42. waitingTimeElapsed = !moreMemory.await(remainingTimeToBlockNs, TimeUnit.NANOSECONDS);
  43. } catch (InterruptedException e) {
  44. this.waiters.remove(moreMemory);
  45. throw e;
  46. } finally {
  47. long endWaitNs = time.nanoseconds();
  48. timeNs = Math.max(0L, endWaitNs - startWaitNs);
  49. this.waitTime.record(timeNs, time.milliseconds());
  50. }
  51. if (waitingTimeElapsed) {
  52. this.waiters.remove(moreMemory);
  53. throw new TimeoutException("Failed to allocate memory within the configured max blocking time " + maxTimeToBlockMs + " ms.");
  54. }
  55. remainingTimeToBlockNs -= timeNs;
  56. // check if we can satisfy this request from the free list,
  57. // otherwise allocate memory
  58. if (accumulated == 0 && size == this.poolableSize && !this.free.isEmpty()) {
  59. // just grab a buffer from the free list
  60. buffer = this.free.pollFirst();
  61. accumulated = size;
  62. } else {
  63. // we'll need to allocate memory, but we may only get
  64. // part of what we need on this iteration
  65. freeUp(size - accumulated);
  66. int got = (int) Math.min(size - accumulated, this.availableMemory);
  67. this.availableMemory -= got;
  68. accumulated += got;
  69. }
  70. }
  71. // remove the condition for this thread to let the next thread
  72. // in line start getting memory
  73. Condition removed = this.waiters.removeFirst();
  74. if (removed != moreMemory)
  75. throw new IllegalStateException("Wrong condition: this shouldn't happen.");
  76. // signal any additional waiters if there is more memory left
  77. // over for them
  78. if (this.availableMemory > 0 || !this.free.isEmpty()) {
  79. if (!this.waiters.isEmpty())
  80. this.waiters.peekFirst().signal();
  81. }
  82. // unlock and return the buffer
  83. lock.unlock();
  84. if (buffer == null)
  85. return ByteBuffer.allocate(size);
  86. else
  87. return buffer;
  88. }
  89. } finally {
  90. if (lock.isHeldByCurrentThread())
  91. lock.unlock();
  92. }
  93. }

下面我们来总结一下allocate方法的逻辑。

  1. 如果本次申请的内存size大于totalMemory,就抛出异常,内存停止分配直接返回。
  2. 因为会存在多线程内存分配的场景,所以调用lock的lock方法进行加锁操作。
  3. 如果请求内存分配的size等于Kafka Producer配置的批次大小(默认16k),则直接从ByteBuffer队列中返回一个内存块。这样做的好处是减少内存的频繁创建和GC,提高Kafka的吞吐量和性能。
  4. 如果本次申请的内存size大于了Kafka Producer配置的批次大小(默认16k),代表本次生成的消息ByteBuffer队列提供的默认批次大小16k的内存块不能满足需求,需要重新申请内存空间。
  5. 计算已经分配好并且已经回收的空闲内存块总大小。
  6. 如果可用内存加上已经分配好并且已经回收的空闲内存块总大小大于申请的内存分配size,在freeUp方法中判断如果free不是空的,并且availableMemory小于申请的内存分配size,则回收free中的内存,添加到availableMemory。之后从freeUp方法返回,进行this.availableMemory -= size操作,解锁,分配内存空间。
  7. 如果可用内存加上已经分配好并且已经回收的空闲内存块总大小不大于申请的内存分配size,首先定义一个accumulate变量,用于记录已经收集的内存大小。创建一个当前线程对应的Condition实例,记录剩余阻塞时间变量,将创建的Condition对象添加到变量名为waiters的队列中,下面是一个while循环操作,循环的条件是判断accumulate变量是否小于申请的内存分配size,如果小于则执行循环操作。在这个循环中,先记录当前系统时间毫秒(startWaitNs)作为开始等待的时间,之后调用Condition实例的await方法休眠等待其他线程释放内存后,调用signal方法,在唤醒当前线程继续执行逻辑。唤醒之后,如果Condition实例的await方法返回false,则代表等待超时了,程序会从变量名为waiters的队列中移除当前的Condition实例,之后抛出TimeoutException,内存分配失败。如果没有等待超时,上一步的await方法的final块中会记录一个等待消耗时间(timeNs = Math.max(0L, endWaitNs - startWaitNs)),之后从剩余阻塞时间中减去等待消耗时间,也就是说Kafka要达到阻塞等待的时间越来越少的效果。
  8. 如果这时accumulate == 0 && size == this.poolableSize && !this.free.isEmpty(),直接从free队列中返回第一个ByteBuffer对象,修改accumulate变量的值为size。
  9. 如果不是accumulate == 0 && size == this.poolableSize && !this.free.isEmpty(),执行freeUp方法,不过此时比较的不是size了,而是size - accumulate的大小,因为是在循环里调用,要比较availableMemory 和还剩下size的大小关系。计算获得了多少内存,然后累加accumulate变量。
  10. accumulate大于size退出while循环,从waiters变量中移除第一个Condition实例,如果移除的不是当前线程对应的Condition实例,则抛出IllegalStateException,否则判断如果this.availableMemory > 0 || !this.free.isEmpty(),再判断如果waiters不是空,此时程序的逻辑是,有内存空间并且内存池也可以用,还存在等待分配内存的线程,则从waiters队列中获得一个Condition实例,并调用signal方法唤醒其关联的线程。
  11. 最后解锁,如果此时buffer还是空,说明size不是Kafka Producer中配置的batchSize参数,需要调用ByteBuffer.allocate(size)方法,来额外分配内存。否则直接返回buffer实例。
  12. 在整个的final块中调用unlock方法进行解锁,防止当前线程长时间独占锁。

我把allocate方法用流程图再来画一下。

         

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

闽ICP备14008679号