gluster性能相关中继器默认值说明

一、性能相关中继器

write-behind, read-ahead, io-cache, quick-read, open-behind, stat-prefetch(md-cache), io-threads(默认server端)

以上中继器默认全部开启,symlink-cache默认关闭。

NFS相关性能优化中继器

默认开启:

performance.nfs.write-behind

默认关闭:

performance.nfs.read-ahead

performance.nfs.io-cache

performance.nfs.quick-read

performance.nfs.stat-prefetch

performance.nfs.io-threads

performance.force-readdirp

二、默认配置及默认值

1、默认配置中继

在./vols/tank/tank-fuse.vol(客户端)文件中,默认会配置如下中继器:

dht和性能相关的write-behind, read-ahead, io-cache, quick-read, open-behind, stat-prefetch(md-cache).

在./vols/tank/tank.node1.data-disk3.vol同类(服务器端)文件中,默认会设置如下中继器参数:

posix、access-control、locks、io-threads、index、maker

2、默认配置项值

cache-size

io-cahce:cache-size:默认32MB

Size of the read cache

quick-read:cache-size:默认128MB

Size of the read cache

gluster volume set tank cache-size 32MB

该命令导致的cache-size更新包含两个部分,一个是io-cache里对应的cache大小,一个是quick-read里的cache大小。

从源代码上看,这两个cache-size对应同一个key,所以会出现一改全改的现象,应该是一个bug。

read-ahead:page-count:默认值4

key为performance.read-ahead-page-count,可以通过该选项进行设置。

gluster volume set tank read-ahead-page-count 4

Number of pages that will be pre-fetched

write-behind:"cache-size"或者"window-size":默认值1MB

key为performance.write-behind-window-size,可以通过该选项进行设置。

gluster volume set tank write-behind-window-size 1MB

Size of the write-behind buffer for a single file (inode).

io-threads:thread-count:默认16

key:performance.io-thread-count

gluster volume set tank io-thread-count 16

Number of threads in IO threads translator which perform concurrent IO operations at a given time

该配置保存在/vols/tank/tank.node1.data-disk3.vol同类文件中。

md-cache:md-cache-timeout:默认值1(亦stat-prefetch)

gluster volume set tank md-cache-timeout 1

该操作会更改md-cache中继器md-cache-timeout选项的默认值

Time period after which cache has to be refreshed

io-cache:cache-timeout:默认值1

key:performance.cache-refresh-timeout

gluster volume set tank cache-refresh-timeout 1

cache-timeout:The cached data for a file will be retained till ‘cache-refresh-timeout‘ seconds, after which data re-validation is performed.

备注:默认参数基于GlusterFS 3.4.5

时间: 2024-10-13 01:01:34

gluster性能相关中继器默认值说明的相关文章

gluster性能调优选项(中继器)详解

1.write-behind(默认on) gluster volume set tank write-behind on Write Behind Translator (后写)    通常情况下,写操作会比读要慢.通过使用"aggregated background write"技术,write-behind translator 相当显著地改善了写的性能.更确切地说,大量小的写操作被集中起来,形成少量的.大一些的写操作,并且进行后台写处理(non-blocking).后写方式在cl

gluster 3.4.5参数及默认值

1 参数及默认值 $gluster-option                                 OPTION: DEFAULT_VALUE            diagnostics.brick-log-level: INFO                network.tcp-window-size: (null)         performance.least-prio-threads: 1                performance.open-behin

String对象内存分配和基本数据类型的默认值与初始化相关问题

题目: 阅读下面代码段,给出以下代码的输出结果. public class TestFunction { static int i; public static void main(String[] args) { String str1 = "abc"; String str = "abc"; String str2 = new String("abc"); System.out.println(str1 == str2); System.ou

爬虫性能相关

性能相关 在编写爬虫时,性能的消耗主要在IO请求中,当单进程单线程模式下请求URL时必然会引起等待,从而使得请求整体变慢. import requests def fetch_async(url): response = requests.get(url) return response url_list = ['http://www.github.com', 'http://www.bing.com'] for url in url_list: fetch_async(url) 1.同步执行

Django-数据库查询性能相关

之前项目中没有考虑过数据库查询关于效率的问题,如果请求量大,数据庞大,不考虑性能的话肯定不行. tips:如图之前我们遇到过,当添加一张表时,作为原来表的外键,要给个默认值,现在我们写null=True - 性能相关 来自为知笔记(Wiz)

Spark 性能相关參数配置具体解释-shuffle篇

作者:刘旭晖 Raymond 转载请注明出处 Email:colorant at 163.com BLOG:http://blog.csdn.net/colorant/ 随着Spark的逐渐成熟完好, 越来越多的可配置參数被加入到Spark中来, 在Spark的官方文档http://spark.apache.org/docs/latest/configuration.html 中提供了这些可配置參数中相当大一部分的说明. 可是文档的更新总是落后于代码的开发的, 另一些配置參数没有来得及被加入到这

Spark 性能相关参数配置详解-压缩与序列化篇

随着Spark的逐渐成熟完善, 越来越多的可配置参数被添加到Spark中来, 本文试图通过阐述这其中部分参数的工作原理和配置思路, 和大家一起探讨一下如何根据实际场合对Spark进行配置优化. 由于篇幅较长,所以在这里分篇组织,如果要看最新完整的网页版内容,可以戳这里:http://spark-config.readthedocs.org/,主要是便于更新内容 压缩和序列化相关 spark.serializer 默认为org.apache.spark.serializer.JavaSeriali

Spark 性能相关参数配置详解-Storage篇

随着Spark的逐渐成熟完善, 越来越多的可配置参数被添加到Spark中来, 本文试图通过阐述这其中部分参数的工作原理和配置思路, 和大家一起探讨一下如何根据实际场合对Spark进行配置优化. 由于篇幅较长,所以在这里分篇组织,如果要看最新完整的网页版内容,可以戳这里:http://spark-config.readthedocs.org/,主要是便于更新内容 Storage相关配置参数 spark.local.dir 这个看起来很简单,就是Spark用于写中间数据,如RDD Cache,Shu

Spark 性能相关参数配置详解-shuffle篇

作者:刘旭晖 Raymond 转载请注明出处 Email:colorant at 163.com BLOG:http://blog.csdn.net/colorant/ 随着Spark的逐渐成熟完善, 越来越多的可配置参数被添加到Spark中来, 在Spark的官方文档http://spark.apache.org/docs/latest/configuration.html 中提供了这些可配置参数中相当大一部分的说明. 但是文档的更新总是落后于代码的开发的, 还有一些配置参数没有来得及被添加到