首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

转tokyotyrant张宴等性能相干

2012-07-23 
转tokyotyrant张宴等性能相关http://tech.it168.com/a2010/0419/875/000000875687_2.shtmlhttp://www.4pan

转tokyotyrant张宴等性能相关
http://tech.it168.com/a2010/0419/875/000000875687_2.shtml

http://www.4pang.com/2010/09/06/%E5%BD%93%E5%BF%83ttservertokyo-tyrant%E5%9C%A8%E7%B3%BB%E7%BB%9F%E5%B4%A9%E6%BA%83%E6%88%96%E6%96%AD%E7%94%B5%E7%9A%84%E6%97%B6%E5%80%99%E4%B8%A2%E5%A4%B1%E6%95%B0%E6%8D%AE.html

http://korrespondence.blogspot.com/2009/09/tokyo-tyrant-tuning-parameters.html

Tokyo Tyrant tuning parametersWe've been working with Tokyo Tyrant for some large scale key-value lookups and the performance has been very nice, but has degraded over time. I've been poking around the various options to try to improve the performance and although there is documentation of various options, the pages are hard to read and figure out what's what. So I thought I'd collect them here for reference. I'll describe the results of tuning and tweaking in a future post.The most recent authoritative references are here:http://1978th.net/tokyocabinet/spex-en.htmlhttp://1978th.net/tokyotyrant/spex.html#installationTokyo Tyrant (actually Tokyo Cabinet – the storage engine) supports various types of storage – B+ Tree indexing, hash index, etc. This is configured by setting the filename or file extension to a particular value:If the name is "*", the database will be an in-memory hash database.If it is "+", the database will be an in-memory tree database.If its suffix is ".tch", the database will be a hash database.If its suffix is ".tcb", the database will be a B+ tree database.If its suffix is ".tcf", the database will be a fixed-length database.If its suffix is ".tct", the database will be a table database.Each has its own set of options and while different flavors of storage may accept the same option name (like bnum), the optimal value likely should be different across storage types.Tuning parameters can trail the filename, separated by "#". Each parameter is composed of the name and the value, separated by "=". For example, "casket.tch#bnum=1000000#opts=ld" means that the name of the database file is "casket.tch", and the bucket array size is 1000000, and the options are large and deflate.For disk-based storage, several tuning parameters specify the on-disk layout while others specify memory and caching settings. Changing the on-disk layout requires scanning and re-writing the database data file which requires exclusive access to the file – which means taking the database offline. This scanning and re-writing process is done via tools provided with the distribution (ex: tchmgr and tcbmgr). Changing the memory and caching settings only requires a restart of Tokyo Tyrant.We've been working only with on-disk storage via the hash and B+ Tree database engines. For a hash database the tuning parameters for the on-disk layout is limited to the size of the bucket array and the size of an element in the bucket array (choosing 'large' gets you 64-bit addressing and addressable data greater than 2GB). When a hash database file is first created, space is allocated on disk for the full bucket array. For example a database with 100M bucket size and 'large' option would start out at around 800MB. This region of the data file is accessed via memory mapped IO. There is an additional 'extra mapped memory' setting which default to 64MB – I'm not sure what this is used for, but for performance more memory is always better.For a B+ Tree database, there are additional tuning parameters for the structure of the B+ Tree – how many members (links to child nodes) in an interior non-leaf node and how many members in a leaf node. Records are not stored in the B-Tree leaf nodes, but within 'pages'. The leaf nodes point to these pages and each page holds multiple records and is accessed via an internal hash database (and since this is a B+ Tree the records within a page are of course stored in sorted order). There is also a parameter for the bucket size of this internal hash database. One subtle detail is that the bucket size for a B+Tree database is the number of pages, not the number of elements (records) being stored – so this would likely be a smaller number than a hash database for the same number of records.I've not yet figured out how the dfunit tuning parameter works or what impact that has on a running server, but it looks interesting.In memory hash bnumthe number of bucketscapnumthe capacity number of recordscapsizthe capacity size of using memory. Note - records spilled the capacity are removed by the storing order.In memory treecapnumthe capacity number of recordscapsizthe capacity size of using memory. Note - records spilled the capacity are removed by the storing order.Hashopts"l" of large option (the size of the database can be larger than 2GB by using 64-bit bucket array.), "d" of Deflate option (each record is compressed with Deflate encoding), "b" of BZIP2 option, "t" of TCBS optionbnumnumber of elements of the bucket array. If it is not more than 0, the default value is specified. The default value is 131071 (128K). Suggested size of the bucket array is about from 0.5 to 4 times of the number of all records to be stored.rcnummaximum number of records to be cached. If it is not more than 0, the record cache is disabled. It is disabled by default.xmsizsize of the extra mapped memory. If it is not more than 0, the extra mapped memory is disabled. The default size is 67108864 (64MB).apowsize of record alignment by power of 2. If it is negative, the default value is specified. The default value is 4 standing for 2^4=16.fpowmaximum number of elements of the free block pool by power of 2. If it is negative, the default value is specified. The default value is 10 standing for 2^10=1024.dfunitunit step number of auto defragmentation. If it is not more than 0, the auto defragmentation is disabled. It is disabled by default.mode"w" of writer, "r" of reader,"c" of creating,"t" of truncating ,"e" of no locking,"f" of non-blocking lockB-treeopts"l" of large option,"d" of Deflate option,"b" of BZIP2 option,"t" of TCBS optionbnumnumber of elements of the bucket array. If it is not more than 0, the default value is specified. The default value is 32749 (32K). Suggested size of the bucket array is about from 1 to 4 times of the number of all pages to be stored.nmembnumber of members in each non-leaf page. If it is not more than 0, the default value is specified. The default value is 256.ncnummaximum number of non-leaf nodes to be cached. If it is not more than 0, the default value is specified. The default value is 512.lmembnumber of members in each leaf page. If it is not more than 0, the default value is specified. The default value is 128.lcnummaximum number of leaf nodes to be cached. If it is not more than 0, the default value is specified. The default value is 1024.apowsize of record alignment by power of 2. If it is negative, the default value is specified. The default value is 8 standing for 2^8=256.fpowmaximum number of elements of the free block pool by power of 2. If it is negative, the default value is specified. The default value is 10 standing for 2^10=1024.xmsizsize of the extra mapped memory. If it is not more than 0, the extra mapped memory is disabled. It is disabled by default.dfunitunit step number of auto defragmentation. If it is not more than 0, the auto defragmentation is disabled. It is disabled by default.mode"w" of writer, "r" of reader,"c" of creating,"t" of truncating ,"e" of no locking,"f" of non-blocking lockFixed-lengthwidthwidth of the value of each record. If it is not more than 0, the default value is specified. The default value is 255.limsizlimit size of the database file. If it is not more than 0, the default value is specified. The default value is 268435456 (256MB).mode"w" of writer, "r" of reader,"c" of creating,"t" of truncating ,"e" of no locking,"f" of non-blocking lockTableopts"l" of large option,"d" of Deflate option,"b" of BZIP2 option,"t" of TCBS optionidxspecifies the column name of an index and its type separated by ":"bnumnumber of elements of the bucket array. If it is not more than 0, the default value is specified. The default value is 131071. Suggested size of the bucket array is about from 0.5 to 4 times of the number of all records to be stored.rcnummaximum number of records to be cached. If it is not more than 0, the record cache is disabled. It is disabled by default.lcnummaximum number of leaf nodes to be cached. If it is not more than 0, the default value is specified. The default value is 4096.ncnummaximum number of non-leaf nodes to be cached. If it is not more than 0, the default value is specified. The default value is 512.xmsizsize of the extra mapped memory. If it is not more than 0, the extra mapped memory is disabled. The default size is 67108864.apowsize of record alignment by power of 2. If it is negative, the default value is specified. The default value is 4 standing for 2^4=16.fpowmaximum number of elements of the free block pool by power of 2. If it is negative, the default value is specified. The default value is 10 standing for 2^10=1024.dfunitunit step number of auto defragmentation. If it is not more than 0, the auto defragmentation is disabled. It is disabled by default.mode"w" of writer, "r" of reader,"c" of creating,"t" of truncating ,"e" of no locking,"f" of non-blocking lock

热点排行