I've received an update from our specialist team stating that you need to convert the file from protocol buffer to text using protoc. The github for this can be found here- https://github.com/protocolbuffers/protobuf . This is a command line tool, once you have downloaded it and run a line of code in the command line similar to this: protoc --decode PublisherSettingsList --proto_path . publisher-settings.proto < 2019-03-19T10_00.pb > pub_settings
--
You received this message because you are subscribed to the Google Groups "Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+u...@googlegroups.com.
To post to this group, send email to prot...@googlegroups.com.
Visit this group at https://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.
[libprotobuf WARNING google/protobuf/io/coded_stream.cc:537] Reading dangerously large protocol message. If the message turns out to be larger than 67108864 bytes, parsing will be halted for security reasons. To increase the limit (or to disable these warnings), see CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/coded_stream.h.
[libprotobuf ERROR google/protobuf/io/coded_stream.cc:180] 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.
[libprotobuf WARNING google/protobuf/io/coded_stream.cc:78] The total number of bytes read was 67108864
Failed to parse input.
86.2 MB to be exact.
I've heard back from our Specialist team stating that the error message is related to the capacity of the machine on which you're decoding the file. These files are quite large and take up more space on the system when they're decompressed. Therefore, in order to decode the file, our team has made a few suggestions mentioned below:
--
Failed to parse input.
--