-
Notifications
You must be signed in to change notification settings - Fork 709
Add Deploy Operation and Maintenance FAQs #3241
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
Add Deploy Operation and Maintenance FAQs #3241
Conversation
|
/label translation/from-docs-cn |
|
/label status/PTAL |
|
/label needs-cherry-pick-4.0 |
faq/deploy-and-maintain-faq.md
Outdated
| #### What's the relationship between the TiDB cluster capacity (QPS) and the number of nodes? How does TiDB compare to MySQL? | ||
|
|
||
| - Within 10 nodes, the relationship between TiDB write capacity (Insert TPS) and the number of nodes is roughly 40% linear increase. Because MySQL uses single-node write, its write capacity cannot be scaled. | ||
| - In MySQL, the read capacity can be increased by adding secondary, but the write capacity cannot be increased except using sharding, which has many problems. |
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.
“具体参考方案虽好,成本先行:数据库 Sharding+Proxy 实践解析“是中文文章 英文这里省略掉了。
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.
OK.
|
|
||
| This is because the address in the startup parameter has been registered in the PD cluster by other TiKVs. Common conditions that cause this error: There is no data folder in the path specified by TiKV `--data-dir` (no update --data-dir after deleting or moving), restart the TiKV with the previous parameters.Please try [store delete](https://github.com/pingcap/pd/tree/55db505e8f35e8ab4e00efd202beb27a8ecc40fb/tools/pd-ctl#store-delete--label--weight-store_id----jqquery-string) function of pd-ctl, delete the previous store, and then restart TiKV. | ||
|
|
||
| #### TiKV primary node and secondary node use the same compression algorithm, why the results are different? |
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.
Not sure whether 'node' can be used here.
lilin90
left a comment
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
|
/merge |
|
@lilin90 Oops! This PR requires at least 2 LGTMs to merge. The current number of |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
|
cherry pick to release-4.0 in PR #3362 |
* cherry pick #3241 to release-4.0 Signed-off-by: ti-srebot <ti-srebot@pingcap.com> * Update faq/deploy-and-maintain-faq.md * Update benchmark sysbench link Co-authored-by: JoyinQ <56883733+Joyinqin@users.noreply.github.com> Co-authored-by: Lilian Lee <lilin@pingcap.com>
What is changed, added or deleted? (Required)
Which TiDB version(s) do your changes apply to? (Required)
What is the related PR or file link(s)?