ES

作者: 喵_十八 | 来源:发表于2018-04-11 10:24 被阅读0次

    ES 参数
    https://www.cnblogs.com/kaynet/p/5861926.html

    缓存队列过小 ,会丢数据
    threadpool.index.type: fixed 写索引线程池类型
    threadpool.index.size: 64 线程池大小(建议2~3倍cpu数)
    threadpool.index.queue_size: 1000 队列大小

    threadpool.search.size: 64 搜索线程池大小
    threadpool.search.type: fixed 搜索线程池类型
    threadpool.search.queue_size: 1000 队列大小

    threadpool.get.type: fixed 取数据线程池类型
    threadpool.get.size: 32 取数据线程池大小
    threadpool.get.queue_size: 1000 队列大小

    threadpool.bulk.type: fixed 批量请求线程池类型
    threadpool.bulk.size: 32 批量请求线程池大小
    threadpool.bulk.queue_size: 1000 队列大小

    threadpool.flush.type: fixed 刷磁盘线程池类型
    threadpool.flush.size: 32 刷磁盘线程池大小
    threadpool.flush.queue_size: 1000 队列大小

    indices.store.throttle.type: merge
    indices.store.throttle.type: none 写磁盘类型
    indices.store.throttle.max_bytes_per_sec:500mb 写磁盘最大带宽

    相关文章

      网友评论

          本文标题:ES

          本文链接:https://www.haomeiwen.com/subject/snkymxtx.html