Map avro schema example in php

2014-09-10 Thread Vadim Keylis
Good evening. This is snippet of avro schema field that I need to build data for and populate in php *{name: meta__kvpairs, type: [ null, { type: map, values: [null, string] } ] }*. Would appreciate if someone gives me an example of how data would look in php to satisfy meta__kvpairs avro rule

Re: Map avro schema example in php

2014-09-10 Thread Vadim Keylis
Please disregard. On Tue, Sep 9, 2014 at 11:26 PM, Vadim Keylis vkeylis2...@gmail.com wrote: Good evening. This is snippet of avro schema field that I need to build data for and populate in php *{name: meta__kvpairs, type: [ null, { type: map, values: [null, string] } ] }*. Would

Avro serialization using php

2014-07-10 Thread Vadim Keylis
How do I just serialize single message using php? It appears php uses Container Files serialization approach and for my project I need to serialize single message without attaching schema as header. Thanks so much for your help