-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Copy of 16M+ file to container causes invalid data frame error #460
Comments
@liggitt size seems suspicious compared to recent fixes. |
What version of client-go and apiserver is this seen with? |
@deads2k @liggitt thanks for the quick response! Current versions (from glide.yaml):
But we have also tried it with:
And got the same results. API Server image is: Thanks again :) |
are you able to recreate on a version of the server with kubernetes/kubernetes#67902 fixed (v1.12.0+, v1.11.4+)? |
it looks like the bytes.Buffer you are providing as input implements a We can fix this by wrapping the provided stdin stream in an io.Reader that only implements In the meantime, you can do the same to work around the issue, instead of providing the bytes.Buffer directly as stdin |
fixed in kubernetes/kubernetes#70999 |
Thanks @liggitt! That solves the problem! |
Would you like me to close the issue or leave it open? |
you can leave it, it'll get closed when the pull request merges |
Hello,
We have been trying to implement a copy mechanism in to a container.
We are using this code:
The complete code can be found here
We noticed that when trying to copy a file which is 16M and up, the action is not successful and we get an output of
E0904 12:56:33.953212 15894 v2.go:105] invalid data frame
.Any file that is under 16M (16777215 and less) is being copied without any error.
Can anyone help on this?
Thanks in advance!
The text was updated successfully, but these errors were encountered: