mirror of https://github.com/go-gitea/gitea.git
![]() Noticed a SQL in gitea.com has a bigger load. It seems both `is_pull` and `pin_order` are not indexed columns in the database. ```SQL SELECT `id`, `repo_id`, `index`, `poster_id`, `original_author`, `original_author_id`, `name`, `content`, `content_version`, `milestone_id`, `priority`, `is_closed`, `is_pull`, `num_comments`, `ref`, `pin_order`, `deadline_unix`, `created_unix`, `updated_unix`, `closed_unix`, `is_locked`, `time_estimate` FROM `issue` WHERE (repo_id =?) AND (is_pull = 0) AND (pin_order > 0) ORDER BY pin_order ``` I came across a comment https://github.com/go-gitea/gitea/pull/24406#issuecomment-1527747296 from @delvh , which presents a more reasonable approach. Based on this, this PR will migrate all issue and pull request pin data from the `issue` table to the `issue_pin` table. This change benefits larger Gitea instances by improving scalability and performance. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> |
||
---|---|---|
.. | ||
base | ||
fixtures | ||
v1_6 | ||
v1_7 | ||
v1_8 | ||
v1_9 | ||
v1_10 | ||
v1_11 | ||
v1_12 | ||
v1_13 | ||
v1_14 | ||
v1_15 | ||
v1_16 | ||
v1_17 | ||
v1_18 | ||
v1_19 | ||
v1_20 | ||
v1_21 | ||
v1_22 | ||
v1_23 | ||
v1_24 | ||
migrations.go | ||
migrations_test.go |