Re: RE: [Go] expose ability to write arrow.Table to JSON

2021-04-23 Thread Francois Saint-Jacques
You can either use the provided server facility found in flight [1], or use stream directly via ipc [2]. You can look at the tests on how to use both facilities. François [1] https://github.com/apache/arrow/tree/master/go/arrow/flight [2] https://github.com/apache/arrow/tree/master/go/arrow/ipc

Re: RE: [Go] expose ability to write arrow.Table to JSON

2021-04-22 Thread Agam Brahma
Thanks for the clarifications, much appreciated. Looking closer, I realize `arrjson` is anyway separating out the values, which isn't what I'd want to ship a table from one service to another. What's a good way to embed the table as a byte stream that can be "read back out" the other end? I se