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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-09-19 18:13:32 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-19 18:13:32 +0300
commit8cfe3415e91f4403ded9cc44066a0a459688a609 (patch)
treeb86f809e278776a8da6ac4ebfd31d9d814d36eda /lib/gitlab/jira_import
parent7de8ed230af7b166e7cc65b3b9351694fadb7d48 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/jira_import')
-rw-r--r--lib/gitlab/jira_import/issues_importer.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/gitlab/jira_import/issues_importer.rb b/lib/gitlab/jira_import/issues_importer.rb
index 25dffcbe0ee..e41c5331c68 100644
--- a/lib/gitlab/jira_import/issues_importer.rb
+++ b/lib/gitlab/jira_import/issues_importer.rb
@@ -7,10 +7,6 @@ module Gitlab
# see https://jira.atlassian.com/browse/JRACLOUD-67570
# We set it to 1000 in case they change their mind.
BATCH_SIZE = 1000
- JIRA_IMPORT_THRESHOLD = 100_000
- JIRA_IMPORT_PAUSE_LIMIT = 50_000
-
- RetriesExceededError = Class.new(RuntimeError)
attr_reader :imported_items_cache_key, :start_at, :job_waiter
@@ -71,9 +67,6 @@ module Gitlab
{ iid: next_iid }
).execute
- # Pause the importer to allow the import to catch up and cache to drain
- pause_jira_issue_importer if jira_import_issue_worker.queue_size > JIRA_IMPORT_THRESHOLD
-
Gitlab::JiraImport::ImportIssueWorker.perform_async(project.id, jira_issue.id, issue_attrs, job_waiter.key)
job_waiter.jobs_remaining += 1
@@ -97,27 +90,6 @@ module Gitlab
job_waiter
end
- def jira_import_issue_worker
- @_jira_import_issue_worker ||= Gitlab::JiraImport::ImportIssueWorker
- end
-
- def pause_jira_issue_importer
- # Wait for import workers to drop below 50K in the iterations of the timeout
- # timeout - Set to 5 seconds.
- # Time to process 100K jobs is currently ~14 seconds.
- # Source: https://github.com/mperham/sidekiq#performance
- # retries - Set to 10 times to avoid indefinitely pause.
- # Raises an error if the queue does not reduce below the limit after 10 tries.
-
- retries = 10
- while retries > 0 && jira_import_issue_worker.queue_size >= JIRA_IMPORT_PAUSE_LIMIT
- job_waiter.wait(5)
- retries -= 1
- end
-
- raise RetriesExceededError, 'Retry failed after 10 attempts' if retries == 0
- end
-
def fetch_issues(start_at)
client.Issue.jql("PROJECT='#{jira_project_key}' ORDER BY created ASC", { max_results: BATCH_SIZE, start_at: start_at })
end