Skip to content

Commit

Permalink
docs: change default size (#1426)
Browse files Browse the repository at this point in the history
  • Loading branch information
CookiePieWw authored Jan 6, 2025
1 parent b85ad0f commit 8925466
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions blog/release-0-7-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
keywords: [release, GreptimeDB, changelog, v0.7.2]
description: GreptimeDB v0.7.2 Changelog
date: 2024-04-08
keywords: [release notes, greptimedb, 0.7.2]
description: GreptimeDB 0.7.2 release notes.
---

# v0.7.2
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/deployments/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ Available options:
| `inverted_index.intermediate_path` | String | `""` | File system path to store intermediate files for external sorting (default `{data_home}/index_intermediate`). |
| `inverted_index.metadata_cache_size` | String | `64MiB` | Cache size for inverted index metadata. |
| `inverted_index.content_cache_size` | String | `128MiB` | Cache size for inverted index content. |
| `inverted_index.content_cache_page_size`| String | `8MiB` | Page size for inverted index content cache. Inverted index content will be read and cached in page size. Adjust this value to change the granularity of cache and optimize the cache hit rate. |
| `inverted_index.content_cache_page_size`| String | `64KiB` | Page size for inverted index content cache. Inverted index content will be read and cached in page size. Adjust this value to change the granularity of cache and optimize the cache hit rate. |
| `memtable.type` | String | `time_series` | Memtable type.<br/>- `time_series`: time-series memtable<br/>- `partition_tree`: partition tree memtable (experimental) |
| `memtable.index_max_keys_per_shard` | Integer | `8192` | The max number of keys in one shard.<br/>Only available for `partition_tree` memtable. |
| `memtable.data_freeze_threshold` | Integer | `32768` | The max rows of data inside the actively writing buffer in one shard.<br/>Only available for `partition_tree` memtable. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ fork_dictionary_bytes = "1GiB"
| `inverted_index.intermediate_path` | 字符串 | `""` | 存放外排临时文件的路径 (默认 `{data_home}/index_intermediate`). |
| `inverted_index.metadata_cache_size` | 字符串 | `64MiB` | 倒排索引元数据缓存大小 |
| `inverted_index.content_cache_size` | 字符串 | `128MiB` | 倒排索引文件内容缓存大小 |
| `inverted_index.content_cache_page_size` | 字符串 | `8MiB` | 倒排索引文件内容缓存页大小。倒排索引文件内容以页为单位进行读取和缓存,该配置项用于调整读取和缓存的粒度,优化缓存命中率。 |
| `inverted_index.content_cache_page_size` | 字符串 | `64KiB` | 倒排索引文件内容缓存页大小。倒排索引文件内容以页为单位进行读取和缓存,该配置项用于调整读取和缓存的粒度,优化缓存命中率。 |
| `memtable.type` | 字符串 | `time_series` | Memtable type.<br/>- `time_series`: time-series memtable<br/>- `partition_tree`: partition tree memtable (实验性功能) |
| `memtable.index_max_keys_per_shard` | 整数 | `8192` | 一个 shard 内的主键数<br/>只对 `partition_tree` memtable 生效 |
| `memtable.data_freeze_threshold` | 整数 | `32768` | 一个 shard 内写缓存可容纳的最大行数<br/>只对 `partition_tree` memtable 生效 |
Expand Down

0 comments on commit 8925466

Please sign in to comment.