-
Bug
-
Resolution: Fixed
-
High
-
7.3.0, 8.5.4, 8.13.17, 8.20.5
-
7.03
-
6
-
Severity 2 - Major
-
4
-
-
Summary
Very poor performance on the project picker dropdown when there are over 3500 projects.
Steps to Reproduce
- Deploy a new JIRA instance.
- Use this script to generate 4000 projects, filling the values at the top prior to running it.
#!/bin/bash PROJECTS=4000 JIRA_BASE_URL="http://ecrmac-632.local:54593/PS-9149" JIRA_USER="admin" JIRA_PASSWORD="sphere" for p in $(seq $PROJECTS); do echo -n "Creating project $p of $PROJECTS: " PKEY=$(LC_CTYPE=C tr -dc A-Z < /dev/urandom | fold -w ${1:-6} | head -n 1) curl -u $JIRA_USER:$JIRA_PASSWORD \ --header "Content-Type:application/json" \ -X POST \ -d "{ \"key\": \"$PKEY\", \"name\": \"$PKEY\", \"projectTypeKey\": \"business\", \"lead\": \"$JIRA_USER\" }" \ $JIRA_BASE_URL/rest/api/2/project echo done
- Grab a coffee, this will take a while.
- Navigate to Issues > Search for issues
- Make sure the basic search is active.
- Click the Project dropdown.
Expected Results
Project picker dropdown performs fast like the user picker.
Actual Results
All projects are loaded into the dropdown, taking a long time to render and being generally unresponsive.
Notes
- The slowness is much more noticeable on Portfolio, as described in
JPO-1791.
Workaround
None.
- causes
-
JPOSERVER-1791 Poor performance on project picker when there are over 3500 projects
- Closed
- is caused by
-
JRASERVER-67413 Project status - archive project
- Not Being Considered
- is related to
-
JSWSERVER-21038 Project drop down slow in basic JQL search, having project count more than 2k
- Closed
- relates to
-
JRASERVER-67279 Request timeout when creating project
- Closed
- mentioned in
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...