From 2da699e36bc8b42576da88cde5c4b4377c161ea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Tue, 7 Mar 2023 10:45:12 +0100 Subject: [PATCH] *: Change GitHub issue template to use the forum (#40779) --- .github/ISSUE_TEMPLATE/config.yml | 8 +++++ .github/ISSUE_TEMPLATE/general-question.md | 20 ------------- .../ISSUE_TEMPLATE/performance-questions.md | 29 ------------------- 3 files changed, 8 insertions(+), 49 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/general-question.md delete mode 100644 .github/ISSUE_TEMPLATE/performance-questions.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..3e0f023a81 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: TiDB Forum + url: https://ask.pingcap.com/ + about: Ask a question on the TiDB Forum + - name: TiDB Forum(Chinese) + url: https://asktug.com/ + about: Ask a question on the TiDB user group (Chinese) diff --git a/.github/ISSUE_TEMPLATE/general-question.md b/.github/ISSUE_TEMPLATE/general-question.md deleted file mode 100644 index 02534c6f6e..0000000000 --- a/.github/ISSUE_TEMPLATE/general-question.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: "\U0001F914 Ask a Question" -about: I want to ask a question. -labels: type/question ---- - -## General Question - - diff --git a/.github/ISSUE_TEMPLATE/performance-questions.md b/.github/ISSUE_TEMPLATE/performance-questions.md deleted file mode 100644 index e4d8530875..0000000000 --- a/.github/ISSUE_TEMPLATE/performance-questions.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: "\U0001F947 Ask a Database Performance Question" -about: I want to ask a database performance question. -labels: type/question, type/performance ---- - -## Performance Questions - -- What version of TiDB are you using? - - -- What's the observed and your expected performance respectively? - -- Have you compared TiDB with other databases? If yes, what's their difference? - -- For a specific slow SQL query, please provide the following information: - - Whether you analyzed the tables involved in the query and how long it is after you ran the last `ANALYZE`. - - Whether this SQL query always or occasionally runs slowly. - - The `EXPLAIN ANALYZE` result of this query if your TiDB version is higher than 2.1, or you can just provide the `EXPLAIN` result. - - The plain text of the SQL query and table schema so we can test it locally. It would be better if you can provide the dumped statistics information. - - - - The `EXPLAIN` result of the compared database. For MySQL, `EXPLAIN format=json`'s result will be more helpful. - - Other information that is useful from your perspective. - -- For a general performance question, e.g. the benchmark result you got by yourself is not expected, please provide the following information: - - Your cluster's topology architecture. - - A simple description of you workload. - - The metrics PDF generated from Grafana monitor. Remember to set the time range to the performance issue duration.