-
File name
{{ filename }}
-
File path
{{ file_path }}
-
File size
{{ "{:,}".format(summary.file_size) }} bytes
-
Footer size
{{ "{:,}".format(summary.footer_size) }} bytes
-
Total page header size
{{ "{:,}".format(summary.page_header_size) }} bytes
-
Total compressed page data size
{{ "{:,}".format(summary.compressed_page_data_size) }} bytes
-
Total uncompressed page data size
{{ "{:,}".format(summary.uncompressed_page_data_size) }} bytes
-
Compression ratio
{% if summary.compressed_page_data_size > 0 %}
{{ "%.2f" | format(summary.uncompressed_page_data_size / summary.compressed_page_data_size) }}x
{% else %}
N/A
{% endif %}
-
Total column index size
{{ "{:,}".format(summary.column_index_size) }} bytes
-
Total offset index size
{{ "{:,}".format(summary.offset_index_size) }} bytes
-
Total bloom filter size
{{ "{:,}".format(summary.bloom_filter_size) }} bytes
-
Rows
{{ "{:,}".format(summary.num_rows) }}
-
Columns
{% if summary.num_columns is defined %}
{{ "{:,}".format(summary.num_columns) }}
{% else %}
undefined
{% endif %}
-
Row groups
{{ "{:,}".format(summary.num_row_groups) }}
-
Pages
{{ "{:,}".format(summary.num_pages) }}
-
Dictionary pages
{{ "{:,}".format(summary.num_dict_pages) }}
-
Data pages (V1)
{{ "{:,}".format(summary.num_v1_data_pages) }}
-
Data pages (V2)
{{ "{:,}".format(summary.num_v2_data_pages) }}
-
Encoding(s)
{% for encoding in encodings %}
{{ encoding }}{% if not loop.last %}, {% endif %}
{% else %}
-
{% endfor %}
-
Compression codec(s)
{% for codec in codecs %}
{{ codec }}{% if not loop.last %}, {% endif %}
{% else %}
-
{% endfor %}
-
Version
{{ footer.version }}
-
Created by
{{ footer.created_by }}