4

When I save a parquet file in R and Python (using pyarrow) I get a arrow schema string saved in the metadata.

How do I read the metadata? Is it Flatbuffer encoded data? Where is the definition for the schema? It's not listed on the arrow documentation site.

The metadata is a key-value pair that looks like this

key: "ARROW:schema"

value: "/////5AAAAAQAAAAAAAKAAwABgAFAAgACgAAAAABAwAEAAAAyP///wQAAAABAAAAFAAAABAAGAAIAAYABwAMABAAFAAQAAAAAAABBUAAAAA4AAAAEAAAACgAAAAIAAgAAAAEAAgAAAAMAAAACAAMAAgABwA…

as a result of writing this in R

df = data.frame(a = factor(c(1, 2)))
arrow::write_parquet(df, "c:/scratch/abc.parquet")
xiaodai
  • 14,889
  • 18
  • 76
  • 140

1 Answers1

7

The schema is base64-encoded flatbuffer data. You can read the schema in Python using the following code:

import base64
import pyarrow as pa
import pyarrow.parquet as pq

meta = pq.read_metadata(filename)
decoded_schema = base64.b64decode(meta.metadata[b"ARROW:schema"])
schema = pa.ipc.read_schema(pa.BufferReader(decoded_schema))
Uwe L. Korn
  • 8,080
  • 1
  • 30
  • 42