-
Notifications
You must be signed in to change notification settings - Fork 694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tikv-in-memory-engine: Add link to config and extend docs #20293
base: master
Are you sure you want to change the base?
Conversation
70a67d5
to
8cd857d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
glossary.md
Outdated
### IME | ||
|
||
The IME abbreviation is for [TiKV MVCC In-Memory Engine](/tikv-in-memory-engine.md). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
### IME | |
The IME abbreviation is for [TiKV MVCC In-Memory Engine](/tikv-in-memory-engine.md). | |
### TiKV MVCC In-Memory Engine (IME) | |
[TiKV MVCC In-Memory Engine](/tikv-in-memory-engine.md) (IME) caches the latest written MVCC versions in memory and implements an MVCC GC mechanism independent of TiDB to accelerate queries involving a large number of MVCC historical versions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the ordering still right if we change this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! After this change, we need to move this term to the ## T section.
Co-authored-by: Grace Cai <qqzczy@126.com>
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Co-authored-by: Grace Cai <qqzczy@126.com>
Co-authored-by: Grace Cai <qqzczy@126.com>
Co-authored-by: Grace Cai <qqzczy@126.com>
Co-authored-by: Grace Cai <qqzczy@126.com>
- Oldest Auto GC SafePoint: The oldest automatic GC safe point for Regions cached in the in-memory engine | ||
- Newest Auto GC SafePoint: The newest automatic GC safe point for Regions cached in the in-memory engine | ||
- Auto GC SafePoint Gap: The time gap between the newest automatic GC safe point and the oldest automatic GC safe point for Regions cached in the in-memory engine | ||
- Auto GC SafePoint Gap With TiKV: The gap between the TiKV automatic GC safe point and the oldest automatic GC safe point for Regions cached in the in-memory engine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Oldest Auto GC SafePoint: The oldest automatic GC safe point for Regions cached in the in-memory engine | |
- Newest Auto GC SafePoint: The newest automatic GC safe point for Regions cached in the in-memory engine | |
- Auto GC SafePoint Gap: The time gap between the newest automatic GC safe point and the oldest automatic GC safe point for Regions cached in the in-memory engine | |
- Auto GC SafePoint Gap With TiKV: The gap between the TiKV automatic GC safe point and the oldest automatic GC safe point for Regions cached in the in-memory engine | |
- Oldest Auto GC SafePoint: The oldest automatic GC safepoint for Regions cached in the in-memory engine | |
- Newest Auto GC SafePoint: The newest automatic GC safepoint for Regions cached in the in-memory engine | |
- Auto GC SafePoint Gap: The time gap between the newest automatic GC safepoint and the oldest automatic GC safepoint for Regions cached in the in-memory engine | |
- Auto GC SafePoint Gap With TiKV: The gap between the TiKV automatic GC safepoint and the oldest automatic GC safepoint for Regions cached in the in-memory engine |
|
||
### How can I check whether the TiKV MVCC in-memory engine is enabled? | ||
|
||
You can check the TiKV configuration using the [`SHOW CONFIG`](/sql-statements/sql-statement-show-config.md) statement. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can check the TiKV configuration using the [`SHOW CONFIG`](/sql-statements/sql-statement-show-config.md) statement. | |
You can check the TiKV configuration using the [`SHOW CONFIG`](/sql-statements/sql-statement-show-config.md) statement. If the value of `in-memory-engine.enable` is `true`, it means that TiKV MVCC in-memory engine is enabled. |
Co-authored-by: xixirangrang <hfxsd@hotmail.com>
Co-authored-by: xixirangrang <hfxsd@hotmail.com>
@dveeden: The following test failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
What is changed, added or deleted? (Required)
Which TiDB version(s) do your changes apply to? (Required)
Tips for choosing the affected version(s):
By default, CHOOSE MASTER ONLY so your changes will be applied to the next TiDB major or minor releases. If your PR involves a product feature behavior change or a compatibility change, CHOOSE THE AFFECTED RELEASE BRANCH(ES) AND MASTER.
For details, see tips for choosing the affected versions.
What is the related PR or file link(s)?
Do your changes match any of the following descriptions?