You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A serialization/deserialization mechanism that do not require a static definition of schema
This mechanism should allow schema-free organization of data, and being able to provide serialization and deserialization to the dynamically formed structure.
This is going to be very useful for the dynamic aggregation/organization of heterogenous data, especially when there is a need to aggregate different type of querying result, to organize compound result of a request in a way that is not predefined.
Describe the solution you'd like
Logically, it is a big key-value format, and can be self-embedded, and inside, it has to be self-describing, meaning each element in it should contain the type/size information so that we know exactly how to parse the bytes.
Describe alternatives you've considered
Solutions that requires predefined schemas:
the serde framework in mercury
protobuf
avro
thrift serde
Solutions that does not require predefined schemas
A serialization/deserialization mechanism that do not require a static definition of schema
This mechanism should allow schema-free organization of data, and being able to provide serialization and deserialization to the dynamically formed structure.
This is going to be very useful for the dynamic aggregation/organization of heterogenous data, especially when there is a need to aggregate different type of querying result, to organize compound result of a request in a way that is not predefined.
Describe the solution you'd like
Logically, it is a big key-value format, and can be self-embedded, and inside, it has to be self-describing, meaning each element in it should contain the type/size information so that we know exactly how to parse the bytes.
Describe alternatives you've considered
Solutions that requires predefined schemas:
Solutions that does not require predefined schemas
Additional Information
N/A
The text was updated successfully, but these errors were encountered: