I am new to protobuf and I have a question about how to generate a really big protobuf file. Use the Google tutorial as an example:
message Person {
required string name = 1;
required int32 id = 2;
optional string email = 3;
enum PhoneType {
MOBILE = 0;
HOME = 1;
WORK = 2;
}
message PhoneNumber {
required string number = 1;
optional PhoneType type = 2 [default = HOME];
}
repeated PhoneNumber phone = 4;
}
message AddressBook {
repeated Person person = 1;
}
I have to do something similarly: I need to generate a lot of(about 200 million) messages in one file. And If I try using
message AddressBook {
repeated Person person = 1;
}
Then the memory would obviously run out quickly if using AddressBook.writeTo() method. Any suggestions on how to handle this case? Thanks