Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Calling Send() with large objects errors out in the spdy implementation #65

Open
BrianBland opened this issue Oct 25, 2014 · 0 comments
Labels
Milestone

Comments

@BrianBland
Copy link

The spdy channel.Send method will return a spdy.InvalidDataFrame error if the serialized size of the message is greater than 16MB (the spdy max data frame size). This could be fixed with a combination of automatic data frame chunking (moby/spdystream#31) and using the underlying spdystream object as an io.Reader for msgpack deserialization on the Receive side.

@BrianBland BrianBland added the bug label Oct 25, 2014
BrianBland added a commit to BrianBland/docker-registry that referenced this issue Oct 25, 2014
This is done because libchan/spdystream does not currently support sending
serialzied objects of size larger than 16MB
See docker/libchan#65
BrianBland added a commit to BrianBland/docker-registry that referenced this issue Oct 25, 2014
This is done because libchan/spdystream does not currently support sending
serialzied objects of size larger than 16MB
See docker/libchan#65
@dmcgowan dmcgowan added this to the v0.2.0 milestone Feb 17, 2015
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants