Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab')
-rw-r--r--.gitlab/issue_templates/N+1_Query.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/.gitlab/issue_templates/N+1_Query.md b/.gitlab/issue_templates/N+1_Query.md
new file mode 100644
index 000000000..4e77e859d
--- /dev/null
+++ b/.gitlab/issue_templates/N+1_Query.md
@@ -0,0 +1,33 @@
+Corresponding gitlab-rails issue: LINK
+
+------------------------------------------------------------
+
+**Stages**:
+
+- [ ] Investigate
+
+- [ ] Assess priority
+
+- [ ] Server-side fixed LINK
+
+- [ ] Client-side fixed LINK
+
+**Affected RPC's**:
+ - `Endpoint::Name`
+
+------------------------------------------------------------
+
+Process explanation:
+
+### Investigate
+
+If it's not clear what RPC's add up to the N+1 violation, do a new CI run on gitlab-ce/ee to find out.
+
+### Assess priority
+
+- Does this N+1 degrade the user experience?
+- Does it cause more than 100 (extra) requests per second on gitlab.com?
+
+If the answer to both questions is 'no' then downgrade the priority of this issue to `v1.1`.
+
+------------------------------------------------------------