Open mapleFU opened 2 months ago
@kou Just wonder if we have some tools to analysis a file, if not I can try to add one
We have only arrow-file-to-stream
and arrow-stream-to-file
: https://github.com/apache/arrow/blob/b6316c091f416967c5e7c9a9284601fa4507aa72/cpp/src/arrow/ipc/CMakeLists.txt#L56-L60
We don't have inspector...
If they exists, it'll be helpful.
(I'm using ruby -r arrow -e 'pp Arrow::Table.load(ARGV[0])' xxx.arrow
or something.)
Sigh, I'd like to add one but I found the arrow-ipc code a bit huge in a file...Let me try it after my vocation..
@bkietz put together a utility when working on the ipc writing for nanoarrow. Do you think you could share it here or a link to it? Maybe even add it to the repo?
For now, here's a gist https://gist.github.com/bkietz/6678297afc8238826c8345ec723aade2
It needs some cleanup, but I'll open a draft PR to add archery annotate
Very nice tool!
Describe the usage question you have. Please include as many useful details as possible.
I'm currently experimenting the arrow-ipc file. When I want to analysis the file, I would like to analysis the file metadata and size related info. Do we have the tools like this?
Component(s)
C++