-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Store map data in the data store in a compact, encoded form #9
Comments
Try avro. It has the most frugal encoding. |
A portability hurdle: building Avro from source requires that the build machine have I cannot also find pre-built packages for the Linux based OSes that I can point people to. I had a quick look around in the Avro Python source tree: the build requires |
which linux are you looking for? You may shoot a mail to the user mailing |
I searched for prebuilt packages for Ubuntu or Debian; packaged Avro libraries have not reached those repositories yet. The download page for Avro has source code only; nothing in pre-packaged form. Anyhow, for now I have forked the Avro tree, let me see if an alternative build scheme is easy to implement... |
The jkoshy-build-rework branch of my fork of Avro now supports the following features:
|
This looks like a useful feature in general. You may contribute it back to avro itself . Raise an issue here |
FYI, the following patches have been submitted to the Avro project:
|
Noting another interesting project, for the record: MsgPack. |
Store data in the data store encoded using protobufs. If done right, this change has the potential to reduce the storage requirements for the back end.
The text was updated successfully, but these errors were encountered: