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

[release/2.0] Update remote content to break up writes to avoid grpc message size limits #11457

Conversation

jsternberg
Copy link
Contributor

@jsternberg jsternberg commented Feb 28, 2025

The remote content writer proxy already has the capability to break up
large files into multiple writes, but the current API doesn't recognize
when it's about to exceed the limits and attempts to send the data over
grpc in one message instead of breaking it into multiple messages.

This changes the behavior of Write to automatically break up the size
of the content based on the max send message size.

(cherry picked from commit f25f36c)

The remote content writer proxy already has the capability to break up
large files into multiple writes, but the current API doesn't recognize
when it's about to exceed the limits and attempts to send the data over
grpc in one message instead of breaking it into multiple messages.

This changes the behavior of `Write` to automatically break up the size
of the content based on the max send message size.

Signed-off-by: Jonathan A. Sternberg <[email protected]>
(cherry picked from commit f25f36c)
@k8s-ci-robot
Copy link

Hi @jsternberg. Thanks for your PR.

I'm waiting for a containerd member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@thaJeztah thaJeztah requested a review from dmcgowan February 28, 2025 17:31
@thaJeztah thaJeztah changed the title proxy: break up writes from the remote writer to avoid grpc limits [release/2.0 backport] proxy: break up writes from the remote writer to avoid grpc limits Feb 28, 2025
Comment on lines +84 to +88
end := i + maxBufferSize
if end > len(p) {
end = len(p)
}
data := p[i:end]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For others; the backport is slightly different than the original as this one doesn't use slices.Chunk; see #11441 (review)

Copy link
Member

@thaJeztah thaJeztah left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@dmcgowan dmcgowan changed the title [release/2.0 backport] proxy: break up writes from the remote writer to avoid grpc limits [release/2.0] Update remote content to break up writes to avoid grpc message size limits Feb 28, 2025
@dmcgowan dmcgowan merged commit 84e6cba into containerd:release/2.0 Feb 28, 2025
58 checks passed
@jsternberg jsternberg deleted the backport-remote-write-grpc-limits-exceeded branch February 28, 2025 18:52
renovate bot added a commit to hetznercloud/csi-driver that referenced this pull request Mar 5, 2025
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/moby/buildkit](https://redirect.github.com/moby/buildkit)
| `v0.20.0` -> `v0.20.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fmoby%2fbuildkit/v0.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fmoby%2fbuildkit/v0.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fmoby%2fbuildkit/v0.20.0/v0.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fmoby%2fbuildkit/v0.20.0/v0.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>moby/buildkit (github.com/moby/buildkit)</summary>

###
[`v0.20.1`](https://redirect.github.com/moby/buildkit/releases/tag/v0.20.1)

[Compare
Source](https://redirect.github.com/moby/buildkit/compare/v0.20.0...v0.20.1)

Welcome to the v0.20.1 release of buildkit!

Please try out the release binaries and report any issues at
https://github.com/moby/buildkit/issues.

##### Contributors

-   Tõnis Tiigi
-   Akihiro Suda
-   CrazyMax

##### Notable Changes

- Fix panic during CDI manager initialization.
[#&#8203;5769](https://redirect.github.com/moby/buildkit/issues/5769)
[cncf-tags/container-device-interface#254](https://redirect.github.com/cncf-tags/container-device-interface/issues/254)
- Fix gRPC message size when writing SBOMs.
[#&#8203;5798](https://redirect.github.com/moby/buildkit/issues/5798)
[containerd/containerd#11457](https://redirect.github.com/containerd/containerd/issues/11457)
- Update azblob client retries for GitHub Actions cache backend.
[#&#8203;5797](https://redirect.github.com/moby/buildkit/issues/5797)
[tonistiigi/go-actions-cache#33](https://redirect.github.com/tonistiigi/go-actions-cache/issues/33)
- Embedded binfmt emulators in the release image have been updated to
QEMU v9.2.2.
[#&#8203;5808](https://redirect.github.com/moby/buildkit/issues/5808)
- Update documentation and examples for rootless mode.
[#&#8203;5765](https://redirect.github.com/moby/buildkit/issues/5765)

##### Dependency Changes

-   **github.com/containerd/containerd/v2**      v2.0.2 -> v2.0.3
- **github.com/tonistiigi/go-actions-cache**
[`1a5174a`](https://redirect.github.com/moby/buildkit/commit/1a5174abd055)
->
[`3e9a664`](https://redirect.github.com/moby/buildkit/commit/3e9a6642607f)
-   **tags.cncf.io/container-device-interface**  v0.8.0 -> v0.8.1

Previous release can be found at
[v0.20.0](https://redirect.github.com/moby/buildkit/releases/tag/v0.20.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/hetznercloud/csi-driver).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODUuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE4NS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

4 participants