clojusc / meson

Clojure Client Library for the Mesos HTTP API
Apache License 2.0
9 stars 10 forks source link

Add RecordIO parsing #18

Closed oubiwann closed 8 years ago

oubiwann commented 8 years ago

The scheduler sends results in RecordIO format (I think this is from Go? It's used internally at Google, and they haven't released a standalone library yet). We need to be able to parse that.

Files/URLs of potential interest:

The last bullet provides example Python which has since been converted to pseudo code on the HTTP docs site.

Related commit to protobuf:

oubiwann commented 8 years ago

Okay, I've got a protocol extending a java.io.InputStream that addresses this. PR incoming ...