From 4009631306b6e58cb0df49956f7b5435a52e177a Mon Sep 17 00:00:00 2001 From: "Yu Shao Pang (SQPC)" <yushao.pang@squarepoint-capital.com> Date: Mon, 22 Apr 2024 06:17:11 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: Michael Kozono <mkozono@gitlab.com> --- doc/development/geo/proxying.md | 35 ++------------------------------- 1 file changed, 2 insertions(+), 33 deletions(-) diff --git a/doc/development/geo/proxying.md b/doc/development/geo/proxying.md index 49777771b2e54..ba3b449c8e915 100644 --- a/doc/development/geo/proxying.md +++ b/doc/development/geo/proxying.md @@ -252,10 +252,8 @@ S-->>C: return Git response from primary ### Git push over HTTP(S) -#### Git push over HTTP(S) unified URLs - -With unified URLs, a push redirects to a local path formatted as `/-/push_from_secondary/$SECONDARY_ID/*`. Further -requests through this path are proxied to the primary, which will handle the push. +If a requested repository isn't synced, or we detect is not up to date, the request will be proxied to the primary, a push redirects to a local path formatted as `/-/push_from_secondary/$SECONDARY_ID/*`. +Further, requests through this path are proxied to the primary, which will handle the push. ```mermaid sequenceDiagram @@ -287,32 +285,3 @@ G-->>W: Return a stream of Proto messages W-->>Wsec: Pipe messages to the Git client Wsec-->>C: Return piped messages from Git ``` - -#### Git push over HTTP(S) with separate URLs - -With separate URLs, the secondary will redirect to a URL formatted like `$PRIMARY/-/push_from_secondary/$SECONDARY_ID/*`. - -```mermaid -sequenceDiagram -participant Wsec as Workhorse (secondary) -participant C as Git client -participant W as Workhorse (primary) -participant R as Rails (primary) -participant G as Gitaly (primary) -C->>Wsec: GET $SECONDARY/foo/bar.git/info/refs/?service=git-receive-pack -Wsec->>C: 302 Redirect to $PRIMARY/-/push_from_secondary/2/foo/bar.git/info/refs?service=git-receive-pack -C->>W: GET $PRIMARY/-/push_from_secondary/2/foo/bar.git/info/refs/?service=git-receive-pack -W->>R: <data> -R-->>W: 401 Unauthorized -W-->>C: <response> -C->>W: GET /-/push_from_secondary/2/foo/bar.git/info/refs/?service=git-receive-pack -W->>R: <data> -R-->>W: Render Workhorse OK -W-->>C: <response> -C->>W: POST /-/push_from_secondary/2/foo/bar.git/git-receive-pack -W->>R: GitHttpController:git_receive_pack -R-->>W: Render Workhorse OK -W->>G: Get connection details from Rails and connects to SmartHTTP Service, ReceivePack RPC -G-->>W: Return a stream of Proto messages -W-->>C: Pipe messages to the Git client -``` -- GitLab