Re: [protobuf] Message Migration Practice?

2016-02-19 Thread 'Josh Haberman' via Protocol Buffers
If the structure of the schema changes, your new schema will be incompatible with your old schema. You might need to convert the data manually to your new schema in this case. On Tuesday, February 16, 2016 at 8:58:58 AM UTC-8, Vincent Dupuis wrote: > > How to migrate when the schema structure

Re: [protobuf] Message Migration Practice?

2016-02-16 Thread Vince
How to migrate when the schema structure change? I'm talking about fields moving of a schema of a serialization file that needs to be migrated. On Monday, September 10, 2012 at 11:11:45 PM UTC-4, Jason Hsueh wrote: > > The general practices for changing messages are listed here: >

[protobuf] Message Migration Practice?

2012-09-10 Thread Minhyuk Kwon
Hello, I have plan for introducing protobuf to in our products for passing information of product's input project file structure. And this information may frequently upgrade near future(via product version upgrade). So, I have a question. If I remove old field from message and add new field,

Re: [protobuf] Message Migration Practice?

2012-09-10 Thread Jason Hsueh
The general practices for changing messages are listed here: https://developers.google.com/protocol-buffers/docs/proto#updating. On Wed, Sep 5, 2012 at 7:04 PM, Minhyuk Kwon mug...@gmail.com wrote: Hello, I have plan for introducing protobuf to in our products for passing information of