Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR Diff View takes a very long time to load: failed to run attr-check: context deadline exceeded #31600

Closed
engaltori opened this issue Jul 9, 2024 · 27 comments
Labels
issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail issue/regression Indicates a previously functioning feature or behavior that has broken or regressed after a change performance/bigrepo Performance Issues affecting Big Repositories performance/speed performance issues with slow downs type/bug

Comments

@engaltori
Copy link

Description

Hello,

Since the update from 1.21.11 to 1.22.1 I have a problem displaying the differences of commits/PRs.
It takes several minutes for the pages to appear at all.

On the Stacktrace Page of Gitea i see that Gitea stuck on these commands:

  • /usr/bin/git cat-file --batch-check [repo_path: /data/git/repositories/test/test.git] (modules/gitrepo/gitrepo.go:31)
  • /usr/bin/git cat-file --batch [repo_path: /data/git/repositories/test/test.git] (modules/gitrepo/gitrepo.go:31)
  • git(dir:/data/git/repositories/test/test.git): /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= check-attr --stdin -z --cached linguist-vendored linguist-generated linguist-documentation linguist-detectable linguist-language gitlab-language

image
All these Git processes are in sleep state according to the system.

The Full log of Gitea is in the Gist. The Git check-attr Command start on line 17421 and Ends on Line 53584 with a Error : failed to run attr-check. Error: context deadline exceeded

I cannot reproduce this issue in other Repos. The Issue is only in some PRs of this Repo (Mostly the ones with many files (>50)). The Repo has more than 9909 Commit with currently 280 Branches with a Size of 360 MiB (Git 152 MiB, LFS: 208 MiB).

Other Fact: When i run strace on the Gitea Process with all Childs, then this Issue does not occur.

Gitea Version

1.22.1

Can you reproduce the bug on the Gitea demo site?

No

Log Gist

https://gist.github.com/andre-bergemann/580e08a7a4fdb44b67b3a1664375c6d7

Screenshots

No response

Git Version

2.45.2

Operating System

Ubuntu

How are you running Gitea?

Custom Container (For Gitea Config Changes) of the Gitea Docker Image (gitea/gitea:1.22.1) on Ubuntu 22.04.2 VM with Docker Engine 23.0.1

Database

PostgreSQL

@juanpablo-santos
Copy link
Contributor

Hi,

we're experiencing the same issue, also after migrating to 1.22.1. We're also using a custom docker image, based on the official one, with a mysql database

@phyr0s
Copy link

phyr0s commented Jul 16, 2024

Same error here!

@techknowlogick
Copy link
Member

@juanpablo-santos are you able to post your customizations?

@juanpablo-santos
Copy link
Contributor

Hi,

on the Dockerfile side, we copy some certificates, some gitea customizations (labels, license, hooks, README) and we set up GPG, asciidoctor and python, so we can render asciidoc files, upyter notebooks and restructuredtext. So, nothing fancy.

Our app.ini file is more or less this:

APP_NAME = XYZ Gitea: Git with a cup of tea
RUN_MODE = prod
RUN_USER = git
WORK_PATH = /data/gitea

[admin]
DISABLE_REGULAR_ORG_CREATION = false

[api]
MAX_RESPONSE_ITEMS = 500
DEFAULT_PAGING_NUM = 300

[attachment]
PATH = /data/gitea/attachments

; Cleanup hook_task table
[cron.cleanup_hook_task_table]
; Whether to enable the job
ENABLED = true
; Whether to always run at start up time (if ENABLED)
RUN_AT_START = false
; Time interval for job to run
SCHEDULE = @midnight
; OlderThan or PerWebhook. How the records are removed, either by age (i.e. how long ago hook_task record was delivered) or by the number to keep per webhook (i.e. keep most recent x deliveries per webhook).
CLEANUP_TYPE = PerWebhook
; If CLEANUP_TYPE is set to OlderThan, then any delivered hook_task records older than this expression will be deleted.
OLDER_THAN = 168h
; If CLEANUP_TYPE is set to PerWebhook, this is number of hook_task records to keep for a webhook (i.e. keep the most recent x deliveries).
NUMBER_TO_KEEP = 10

[cron.delete_old_actions]
; Whether to enable the job
ENABLED = true
; Whether to always run at start up time (if ENABLED)
RUN_AT_START = false
; Time interval for job to run
SCHEDULE = @weekly
; If CLEANUP_TYPE is set to OlderThan, then any delivered hook_task records older than this expression will be deleted.
OLDER_THAN = 2160h

[cron.delete_old_system_notices]
; Whether to enable the job
ENABLED = true
; Whether to always run at start up time (if ENABLED)
RUN_AT_START = false
; Time interval for job to run
SCHEDULE = @midnight
; If CLEANUP_TYPE is set to OlderThan, then any delivered hook_task records older than this expression will be deleted.
OLDER_THAN = 168h

[database]
PATH = /data/gitea/gitea.db
DB_TYPE = mysql
HOST = db:3306
NAME = gitea
USER = XXXXXXXXX
PASSWD = XXXXXXXXX
SSL_MODE = disable

[indexer]
ISSUE_INDEXER_PATH = indexers/issues.bleve
; repo indexer by default disabled, since it uses a lot of disk space
REPO_INDEXER_ENABLED = false
REPO_INDEXER_PATH = indexers/repos.bleve
MAX_FILE_SIZE = 1048576

[queue.issue_indexer]
LENGTH = 20

[git]
HOME_PATH = /data/git

[log]
ROOT_PATH = /data/gitea/log
MODE = file
LEVEL = Error

[mailer]
ENABLED = true
FROM = "Gitea CI/CD" <[email protected]>
SMTP_ADDR = mail.XYZ.XZ
SMTP_PORT = 25
USER = XXXXXXXXX
PASSWD = XXXXXXXXX
FORCE_TRUST_SERVER_CERT = true
SUBJECT_PREFIX = [GITEA]

[migrations]
ALLOW_LOCALNETWORKS = true

[openid]
ENABLE_OPENID_SIGNIN = false
ENABLE_OPENID_SIGNUP = false

[picture]
AVATAR_UPLOAD_PATH = /data/gitea/avatars
DISABLE_GRAVATAR = true
ENABLE_FEDERATED_AVATAR = false

[repository]
ROOT = /data/git/repositories
DEFAULT_BRANCH = master

[repository.pull-request]
WORK_IN_PROGRESS_PREFIXES = WIP:,[WIP]:,WIP,[WIP]

[repository.signing]
# SIGNING_KEY     = default
SIGNING_KEY = XXXXXXXXX
SIGNING_NAME = XXXXXXXXX
SIGNING_EMAIL = [email protected]
INITIAL_COMMIT = always
CRUD_ACTIONS = always
WIKI = always
MERGES = always

[repository.upload]
TEMP_PATH = /data/gitea/uploads

[security]
DISABLE_GIT_HOOKS = false
INSTALL_LOCK = true
INTERNAL_TOKEN = XXXXXXXXX
SECRET_KEY = XXXXXXXXX

[service]
AUTO_WATCH_NEW_REPOS = false
REGISTER_EMAIL_CONFIRM = false
ENABLE_NOTIFY_MAIL = true
DISABLE_REGISTRATION = true
ENABLE_CAPTCHA = false
REQUIRE_SIGNIN_VIEW = true
DEFAULT_KEEP_EMAIL_PRIVATE = false
DEFAULT_ALLOW_CREATE_ORGANIZATION = false
DEFAULT_ENABLE_TIMETRACKING = true
NO_REPLY_ADDRESS = noreply.XYZ.XZ
ENABLE_USER_HEATMAP = true

[server]
APP_DATA_PATH = /data/gitea
SSH_DOMAIN = ssh.XYZ.XZ
HTTP_PORT = 3000
ROOT_URL = https://XXXXXXXXX/git/
DISABLE_SSH = false
SSH_PORT = 22
DOMAIN = XXXXXXXXX
OFFLINE_MODE = false
LFS_START_SERVER = true
LFS_JWT_SECRET = XXXXXXXXX

[lfs]
PATH = /data/gitea/lfs

[session]
PROVIDER_CONFIG = /data/gitea/sessions
PROVIDER = file

[metrics]
ENABLED = true
ENABLED_ISSUE_BY_REPOSITORY = true

[markup.asciidoc]
ENABLED = true
FILE_EXTENSIONS = .adoc,.asciidoc
RENDER_COMMAND = asciidoctor --out-file=- -
; Input is not a standard input but a file
IS_INPUT_FILE = false

[markup.jupyter]
ENABLED = true
FILE_EXTENSIONS = .ipynb
RENDER_COMMAND = jupyter nbconvert --stdout --to html --template basic
IS_INPUT_FILE = true

[markup.restructuredtext]
ENABLED = true
FILE_EXTENSIONS = .rst
RENDER_COMMAND = rst2html.py
IS_INPUT_FILE = false

[oauth2]
JWT_SECRET = XXXXXXXXX

[webhook]
ALLOWED_HOST_LIST = *
SKIP_TLS_VERIFY = true
DELIVER_TIMEOUT = 15

[ui.notification]
MIN_TIMEOUT = 0s

@juanpablo-santos
Copy link
Contributor

juanpablo-santos commented Jul 29, 2024

Hi,

we've noticed that having a high amount of branches might be involved on the long time to load. In our case one of the "usual" repos that suffers from this issue contains:

  • +25000 commits
  • +6600 closed PRs
  • 224MB
  • 192 tags, 33 releases
  • 127 branches, aprox. 90% of them closed or merged, the oldest ones being from 2 years ago

Proceeded to delete oldest merged / closed branches, so the repo is up to 73 branches now, we've noticed an increase in performance; it's still slow, but now is manageable

HTH,

@lunny lunny added the performance/bigrepo Performance Issues affecting Big Repositories label Jul 29, 2024
@juanpablo-santos
Copy link
Contributor

juanpablo-santos commented Sep 13, 2024

Hi,

we've noticed that when we hit this issue, also going to the PR's commits also results in waiting a long time before they show up, so may be the diff view takes to long b/c of waiting a lot on retrieving the commits info? Some times all the commits of the PR take a long time, some times some commits involved in the PR take a long time to load. When loading those commits, at the Stacktrace Page of Gitea, I see that Gitea stuck on these commands:

code.gitea.io/gitea/modules/git.CatFileBatchCheck.func2 graceful-lifecycle with-hammer
  runtime.gopark
  /usr/local/go/src/runtime/proc.go:402
  runtime.chanrecv
  /usr/local/go/src/runtime/chan.go:583
  runtime.chanrecv1
  /usr/local/go/src/runtime/chan.go:442
  code.gitea.io/gitea/modules/git.CatFileBatchCheck.func2
  /go/src/code.gitea.io/gitea/modules/git/batch_reader.go:61
code.gitea.io/gitea/modules/git.CatFileBatch.func2 graceful-lifecycle with-hammer
  runtime.gopark
  /usr/local/go/src/runtime/proc.go:402
  runtime.chanrecv
  /usr/local/go/src/runtime/chan.go:583
  runtime.chanrecv1
  /usr/local/go/src/runtime/chan.go:442
  code.gitea.io/gitea/modules/git.CatFileBatch.func2
  /go/src/code.gitea.io/gitea/modules/git/batch_reader.go:113
code.gitea.io/gitea/modules/web.toHandlerProvider.func1.1 graceful-lifecycle with-hammer
  runtime.gopark
  /usr/local/go/src/runtime/proc.go:402
  runtime.netpollblock
  /usr/local/go/src/runtime/netpoll.go:573
  internal/poll.runtime_pollWait
  /usr/local/go/src/runtime/netpoll.go:345
  internal/poll.(*pollDesc).wait
  /usr/local/go/src/internal/poll/fd_poll_runtime.go:84
  internal/poll.(*pollDesc).waitRead
  /usr/local/go/src/internal/poll/fd_poll_runtime.go:89
  internal/poll.(*FD).Read
  /usr/local/go/src/internal/poll/fd_unix.go:164
  net.(*netFD).Read
  /usr/local/go/src/net/fd_posix.go:55
  net.(*conn).Read
  /usr/local/go/src/net/net.go:185
  github.com/go-sql-driver/mysql.(*buffer).fill
  /go/pkg/mod/github.com/go-sql-driver/[email protected]/buffer.go:90
  github.com/go-sql-driver/mysql.(*buffer).readNext
  /go/pkg/mod/github.com/go-sql-driver/[email protected]/buffer.go:119
  github.com/go-sql-driver/mysql.(*mysqlConn).readPacket
  /go/pkg/mod/github.com/go-sql-driver/[email protected]/packets.go:32
  github.com/go-sql-driver/mysql.(*okHandler).readResultSetHeaderPacket
  /go/pkg/mod/github.com/go-sql-driver/[email protected]/packets.go:531
  github.com/go-sql-driver/mysql.(*mysqlStmt).query
  /go/pkg/mod/github.com/go-sql-driver/[email protected]/statement.go:111
  github.com/go-sql-driver/mysql.(*mysqlStmt).QueryContext
  /go/pkg/mod/github.com/go-sql-driver/[email protected]/connection.go:564
  database/sql.ctxDriverStmtQuery
  /usr/local/go/src/database/sql/ctxutil.go:82
  database/sql.rowsiFromStatement
  /usr/local/go/src/database/sql/sql.go:2836
  database/sql.(*DB).queryDC
  /usr/local/go/src/database/sql/sql.go:1806
  database/sql.(*DB).query
  /usr/local/go/src/database/sql/sql.go:1754
  database/sql.(*DB).QueryContext.func1
  /usr/local/go/src/database/sql/sql.go:1732
  database/sql.(*DB).retry
  /usr/local/go/src/database/sql/sql.go:1566
  database/sql.(*DB).QueryContext
  /usr/local/go/src/database/sql/sql.go:1731
  xorm.io/xorm/core.(*DB).QueryContext
  /go/pkg/mod/xorm.io/[email protected]/core/db.go:151
  xorm.io/xorm.(*Session).queryRows
  /go/pkg/mod/xorm.io/[email protected]/session_raw.go:52
  xorm.io/xorm.(*Session).noCacheFind
  /go/pkg/mod/xorm.io/[email protected]/session_find.go:235
  xorm.io/xorm.(*Session).find
  /go/pkg/mod/xorm.io/[email protected]/session_find.go:163
  xorm.io/xorm.(*Session).Find
  /go/pkg/mod/xorm.io/[email protected]/session_find.go:33
  code.gitea.io/gitea/models/repo.GetRepoAssignees
  /go/src/code.gitea.io/gitea/models/repo/user_repo.go:109
  code.gitea.io/gitea/routers/web/repo.viewPullFiles
  /go/src/code.gitea.io/gitea/routers/web/repo/pull.go:811
  code.gitea.io/gitea/routers/web/repo.ViewPullFilesForSingleCommit
  /go/src/code.gitea.io/gitea/routers/web/repo/pull.go:889
  reflect.Value.call
  /usr/local/go/src/reflect/value.go:596
  reflect.Value.Call
  /usr/local/go/src/reflect/value.go:380
code.gitea.io/gitea/modules/web.toHandlerProvider.func1.1
  github.com/go-sql-driver/mysql.(*mysqlConn).startWatcher.func1 graceful-lifecycle with-hammer
  runtime.gopark
  /usr/local/go/src/runtime/proc.go:402
  runtime.selectgo
  /usr/local/go/src/runtime/select.go:327
  github.com/go-sql-driver/mysql.(*mysqlConn).startWatcher.func1
  /go/pkg/mod/github.com/go-sql-driver/[email protected]/connection.go:626

we've updated to 1.22.2 to see if #31754 would help, but long times still persist

@lunny
Copy link
Member

lunny commented Sep 15, 2024

#31754 just delays the cat file commands invocation to avoid unnecessary usage of that command.

@juanpablo-santos
Copy link
Contributor

Hi,

issue doesn't seem related to big repos, we've just experienced the same issue on a PR of a repo with:

  • +6200 commits
  • +1200 closed PRs
  • 315MB
  • 131 tags, 14 releases
  • 16 branches, the oldest ones being from 4 years ago, the rest updated between 5 days and 4 months ago, 6 of them open

The PR experiencing this issue had 6 commits, 3 of them taking a really long time to render.

Oh, and one last note, the files' rendering seems to always take around six minutes?

@juanpablo-santos
Copy link
Contributor

One more update, as the six minutes waiting seem to be the git default timeout, we've set

[git.timeout]
DEFAULT = 60

after that, we wait, hit one minute, and the diff of the PR/commit appears. Not sure anything is missing, everything seems in place :-?

@lschwahn
Copy link

@juanpablo-santos thanks for the hint. We’ve been encountering the same error with some PRs/diffs since version 1.22. Reducing the git.timeout seems to be a workaround.

@jpraet jpraet added issue/regression Indicates a previously functioning feature or behavior that has broken or regressed after a change performance/speed performance issues with slow downs labels Nov 23, 2024
@lunny
Copy link
Member

lunny commented Dec 5, 2024

As a workaround, #31896 (comment)

@rwalravens
Copy link

We encountered a timeout, and I downloaded the diagnosis report.
Gitea 1.23.3 with postgres db.

gitea-diagnosis-20250227-154934.zip

@jpraet
Copy link
Member

jpraet commented Mar 6, 2025

@jpraet
Copy link
Member

jpraet commented Mar 14, 2025

Does anyone have any insights on what might be causing these git commands to hang or timeout (regression introduced between 1.21 and 1.22)?

  • /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= check-attr --stdin -z --cached linguist-vendored linguist-generated linguist-documentation linguist-detectable linguist-language gitlab-language
  • /usr/bin/git cat-file --batch-check
  • /usr/bin/git cat-file --batch

In my instance, it mostly seems to happens for quite large PRs, but occasionally also for smaller PRs. Furthermore, it is an intermittent problem: it might hang and timeout after 90 seconds, but when you retry some time later you might get a correct response after 1 second.

Also wondering about @juanpablo-santos comment:

One more update, as the six minutes waiting seem to be the git default timeout, we've set

[git.timeout]
DEFAULT = 60

after that, we wait, hit one minute, and the diff of the PR/commit appears. Not sure anything is missing, everything seems in place :-?

Indeed: if I were to configure a smaller value for git.timeout of let's say 20 seconds as a workaround, what would be the potential risks? Are these commands performing any crucial functionality?

@wxiaoguang
Copy link
Contributor

Does anyone have any insights on what might be causing these git commands to hang or timeout

FYI: Clarify the git command Stdin hanging problem (#26967)

@wxiaoguang
Copy link
Contributor

wxiaoguang commented Mar 16, 2025

I made a simple test (repo_attribute_test.go), are you able to reproduce the "hang" by running it on your large repo?

(the sample code is also in #33901)

func TestAttributeReader(t *testing.T) {
	ctx := t.Context()

	timeout := 1 * time.Second  // TODO: change it to a larger duration if needed
	repoPath := filepath.Join(testReposDir, "language_stats_repo") // TODO: change it to your repo
	commitRef := "HEAD"  // TODO: change it to your repo

	oneRound := func(t *testing.T, roundIdx int) {
		ctx, cancel := context.WithTimeout(ctx, timeout)
		_ = cancel
		gitRepo, err := OpenRepository(ctx, repoPath)
		require.NoError(t, err)
		defer gitRepo.Close()

		commit, err := gitRepo.GetCommit(commitRef)
		require.NoError(t, err)

		files, err := gitRepo.LsFiles()
		require.NoError(t, err)

		randomFiles := append(files, "any-file-1", "any-file-2")

		t.Logf("Round %v with %d files", roundIdx, len(randomFiles))

		attrReader, deferrable := gitRepo.CheckAttributeReader(commit.ID.String())
		defer deferrable()

		wg := sync.WaitGroup{}
		wg.Add(1)

		go func() {
			for {
				file := randomFiles[mathRand.IntN(len(randomFiles))]
				_, err := attrReader.CheckPath(file)
				if err != nil {
					for i := 0; i < 10; i++ {
						_, _ = attrReader.CheckPath(file)
					}
					break
				}
			}
			wg.Done()
		}()
		wg.Wait()
	}

	for i := 0; i < 100; i++ {
		oneRound(t, i)
	}
}

@wxiaoguang
Copy link
Contributor

According to your stacktrace, the hang-point is here, in the CheckAttributeReader.CheckPath:

# labels: {"graceful-lifecycle":"with-hammer", "pid":"67c9ac7f-3", "ppid":"", "process-description":"GET: /CBSS/dismissal-compensation-mutations-batch/pulls/19/files", "process-type":"request"}
#	0xdb02de	code.gitea.io/gitea/modules/git.(*CheckAttributeReader).CheckPath+0x31e								/go/src/code.gitea.io/gitea/modules/git/repo_attribute.go:196
#	0x1fca908	code.gitea.io/gitea/services/gitdiff.GetDiff+0x1128										/go/src/code.gitea.io/gitea/services/gitdiff/gitdiff.go:1187
#	0x1fcbc28	code.gitea.io/gitea/services/gitdiff.SyncAndGetUserSpecificDiff+0x68								/go/src/code.gitea.io/gitea/services/gitdiff/gitdiff.go:1271
#	0x2ab29bd	code.gitea.io/gitea/routers/web/repo.viewPullFiles+0x9dd									/go/src/code.gitea.io/gitea/routers/web/repo/pull.go:770
#	0x2ab40a4	code.gitea.io/gitea/routers/web/repo.ViewPullFilesForAllCommitsOfPr+0x24							/go/src/code.gitea.io/gitea/routers/web/repo/pull.go:925

It is called by gitdiff.GetDiff, if the test above can't reproduce, maybe you could try to modify it to call GetDiff to try to reproduce.

@wxiaoguang
Copy link
Contributor

Two PRs:

@wxiaoguang wxiaoguang changed the title PR Diff View takes a very long time to load: failed to run attr-check PR Diff View takes a very long time to load: failed to run attr-check: context deadline exceeded Mar 16, 2025
@lunny
Copy link
Member

lunny commented Mar 26, 2025

Issue #34016 may resolve a related problem.

@jpraet
Copy link
Member

jpraet commented Mar 26, 2025

I can now see these types of error logs after upgrading to 1.23.6:

2025/03/26 09:03:24 ...it/repo_attribute.go:180:func1() [E] Unexpected error when checking path registries-gui-web/src/test/java/be/fgov/kszbcss/soa/registries/gui/controller/workflow/list/NrReplacementsOverviewWorkflowControllerTest.java in registries-gui.git, error: CheckPath timeout: check path "registries-gui-web/src/test/java/be/fgov/kszbcss/soa/registries/gui/controller/workflow/list/NrReplacementsOverviewWorkflowControllerTest.java" in repo "registries-gui.git", stdOut: tmp="gitlab-language", pos=1, closed=false, process state: "<nil>"

2025/03/26 09:22:09 ...it/repo_attribute.go:180:func1() [E] Unexpected error when checking path dimona-notifications-batch-app/src/test/java/be/fgov/kszbcss/dimona/notifications/acceptance/DimonaNotificationsAnomalyAcceptanceIntegrationTest.java in dimona-notifications-batch.git, error: CheckPath timeout: check path "dimona-notifications-batch-app/src/test/java/be/fgov/kszbcss/dimona/notifications/acceptance/DimonaNotificationsAnomalyAcceptanceIntegrationTest.java" in repo "dimona-notifications-batch.git", stdOut: tmp="dimona-notifications-batch-app/src/test/java/be/fgov/kszbcss/dimona/notifications/acceptance/DimonaNotificationsAnomalyAcceptanceIntegrationTest.java", pos=0, closed=false, process state: "<nil>"

2025/03/26 11:32:59 ...it/repo_attribute.go:180:func1() [E] Unexpected error when checking path one-shot-tools/DossierSynchronizer/src/main/java/be/fgov/kszbcss/soa/registries/oneshot/dossiersynchronizer/model/register/DeceaseInfo.java in registries-core.git, error: CheckPath timeout: check path "one-shot-tools/DossierSynchronizer/src/main/java/be/fgov/kszbcss/soa/registries/oneshot/dossiersynchronizer/model/register/DeceaseInfo.java" in repo "registries-core.git", stdOut: tmp="unspecified", pos=2, closed=false, process state: "<nil>"

@wxiaoguang
Copy link
Contributor

Sorry but that's the content of tmp="???"? It is important 😄 Or you could privately mail it to me

@jpraet
Copy link
Member

jpraet commented Mar 26, 2025

Sorry but that's the content of tmp="???"? It is important 😄 Or you could privately mail it to me

Ok, I updated my comment because it's not really business-sensitive information after all.

@wxiaoguang
Copy link
Contributor

Let me try to summarize the current state of 1.23.6:

  1. It won't hang for long time, the pages could be successfully loaded after a few seconds.
  2. There are many CheckPath timeout error logs, and only frequently occurs in some repositories, other repositories seldom/rarely have such error logs.

Am I right?

@jpraet
Copy link
Member

jpraet commented Mar 26, 2025

Definitely 1. is right. Since the upgrade to 1.23.6 the page no longer times out as they did previously (after 90 seconds due to HA proxy timeout), which is already a great improvement.

I do wonder: are we missing out any important information on the PR diff page when these slow attr-check have been aborted?

About the frequency of CheckPath timeout errors and relation to specific repositories, it's too early to observe any pattern at this point.

@wxiaoguang
Copy link
Contributor

wxiaoguang commented Mar 26, 2025

outdated

Are you able to build your own binary with this patch? The same for 1.23 & 1.24:

  • change return len(p), nil to return l, nil

And then check whether the timeout whether still occurs.

-> Try to fix check-attr bug #34029

diff --git a/modules/git/repo_attribute.go b/modules/git/repo_attribute.go
index 89101e5af3..8a5e5fa983 100644
--- a/modules/git/repo_attribute.go
+++ b/modules/git/repo_attribute.go
@@ -280,7 +280,7 @@ func (wr *nulSeparatedAttributeWriter) Write(p []byte) (n int, err error) {
                }
        }
        wr.tmp = append(wr.tmp, p...)
-       return len(p), nil
+       return l, nil
 }
 
 func (wr *nulSeparatedAttributeWriter) ReadAttribute() <-chan attributeTriple {

@wxiaoguang
Copy link
Contributor

1.23 nightly is ready, it is a stable release and will be next 1.23.7:

I have managed to reproduce the problem and a fix is in 1.23-nightly now. Feel free to update and try.

@wxiaoguang wxiaoguang added the issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail label Mar 27, 2025
@jpraet
Copy link
Member

jpraet commented Mar 27, 2025

I upgraded to 1.23-nightly and it's looking good so far. Thanks @wxiaoguang!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail issue/regression Indicates a previously functioning feature or behavior that has broken or regressed after a change performance/bigrepo Performance Issues affecting Big Repositories performance/speed performance issues with slow downs type/bug
Projects
None yet
Development

No branches or pull requests

9 participants