-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[doc][2024.2.2] auto analyze service #25188
base: master
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for infallible-bardeen-164bc9 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
LGTM
@@ -42,7 +42,7 @@ Increasing either of these flags reduces the frequency of statistics updates. | |||
If the total number of mutations for a table is greater than its analyze threshold, then the service runs ANALYZE on the table. The analyze threshold of a table is calculated as follows: | |||
|
|||
```sh | |||
analyze_threshold = ysql_auto_analyze_threshold + ysql_auto_analyze_scale_factor * <table_size> | |||
analyze_threshold = ysql_auto_analyze_threshold + (ysql_auto_analyze_scale_factor * <table_size>) |
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.
The added parenthesis is unnecessary IMO.
Thanks for your edits @ddhodge. The overall contents look good to me. We need to update the page later as we gradually develop Auto Analyze service. |
This pull request adds one dedicated doc page for auto analyze service feature.
Some links in this pull request depends on pull request: #25097
DOC-527
DOC-600