Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ParquetSerDe

import type { ParquetSerDe } from "https://aws-api.deno.dev/v0.4/services/firehose.ts?docs=full";

A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet.

interface ParquetSerDe {
BlockSizeBytes?: number | null;
Compression?: ParquetCompression | null;
EnableDictionaryCompression?: boolean | null;
MaxPaddingBytes?: number | null;
PageSizeBytes?: number | null;
WriterVersion?: ParquetWriterVersion | null;
}

§Properties

§
BlockSizeBytes?: number | null
[src]

The Hadoop Distributed File System (HDFS) block size. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 256 MiB and the minimum is 64 MiB. Kinesis Data Firehose uses this value for padding calculations.

§
Compression?: ParquetCompression | null
[src]

The compression code to use over data blocks. The possible values are UNCOMPRESSED, SNAPPY, and GZIP, with the default being SNAPPY. Use SNAPPY for higher decompression speed. Use GZIP if the compression ratio is more important than speed.

§
EnableDictionaryCompression?: boolean | null
[src]

Indicates whether to enable dictionary compression.

§
MaxPaddingBytes?: number | null
[src]

The maximum amount of padding to apply. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 0.

§
PageSizeBytes?: number | null
[src]

The Parquet page size. Column chunks are divided into pages. A page is conceptually an indivisible unit (in terms of compression and encoding). The minimum value is 64 KiB and the default is 1 MiB.

§
WriterVersion?: ParquetWriterVersion | null
[src]

Indicates the version of row format to output. The possible values are V1 and V2. The default is V1.