The usage of parqlook
is
stilts <stilts-flags> parqlook items=[schema|keyvalue|blocks|chunks|votable, ...] | all [in=]<filename>If you don't have the
stilts
script installed,
write "java -jar stilts.jar
" instead of
"stilts
" - see Section 3.
The available <stilts-flags>
are listed
in Section 2.1.
For programmatic invocation,
the Task class for this
command is uk.ac.starlink.ttools.task.ParquetTool
.
Parameter values are assigned on the command line as explained in Section 2.3. They are as follows:
in = <filename>
(String)
items = [schema|keyvalue|blocks|chunks|votable, ...] | all
(MetaItem[])
schema
: displays the parquet schema
keyvalue
: displays the parquet per-table key-value metadata pairs
blocks
: displays information about the parquet data blocks
chunks
: displays information about the column chunks in the parquet file
votable
: displays the VOTable document providing additional metadata according to the VOParquet convention
all
"
then all the items above will be output,
and if the value is blank then none of these will be output.
Either way, informational reports will still be written
as requested.
The text is written to standard output. If there are multiple items to display, they are indented and presented under headings. In the case that there is only one however, it is output without adornment.
[Default: all
]