You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TiDB provided a restful API to query all DDL jobs in the history: http://{TiDBIP}:10080/ddl/history.
The initial intention of the API is to debug TiDB in an easy way. However, it has been used by some old ecosystem tools like 'drainer'.
When there are a lot of DDL jobs for a long-running cluster, DDL jobs list will be long and it takes a large amount of memory when querying http://{TiDBIP}:10080/ddl/history.
For the compatibility with old tools, it is reasonable to try reducing the memory usage of getAllHistoryDDL.
The text was updated successfully, but these errors were encountered:
Enhancement
TiDB provided a restful API to query all DDL jobs in the history:
http://{TiDBIP}:10080/ddl/history
.The initial intention of the API is to debug TiDB in an easy way. However, it has been used by some old ecosystem tools like 'drainer'.
When there are a lot of DDL jobs for a long-running cluster, DDL jobs list will be long and it takes a large amount of memory when querying
http://{TiDBIP}:10080/ddl/history
.For the compatibility with old tools, it is reasonable to try reducing the memory usage of
getAllHistoryDDL
.The text was updated successfully, but these errors were encountered: