On Mar 6, 2011, at 12:19 , ksamdev wrote:
libprotobuf ERROR google/protobuf/io/coded_stream.cc:147] A protocol message was rejected because it was too big (more than 67108864 bytes). To increase the limit (or to disable these warnings), see CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/ coded_stream.h.
Protocol buffers limit the parsed size to 64 MB by default. You have generated a very large message. You either need to set the limit larger, or split your message into multiple messages. See:
http://code.google.com/apis/protocolbuffers/docs/techniques.html#large-data http://code.google.com/apis/protocolbuffers/docs/reference/cpp/google.protobuf.io.coded_stream.html#CodedInputStream.SetTotalBytesLimit.details Hope this helps, Evan -- http://evanjones.ca/ -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
