Class: Aws::Firehose::Types::ParquetSerDe

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#block_size_bytesInteger

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. Firehose uses this value for padding calculations.

Returns:

  • (Integer)


3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3028

class ParquetSerDe < Struct.new(
  :block_size_bytes,
  :page_size_bytes,
  :compression,
  :enable_dictionary_compression,
  :max_padding_bytes,
  :writer_version)
  SENSITIVE = []
  include Aws::Structure
end

#compressionString

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.

Returns:

  • (String)


3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3028

class ParquetSerDe < Struct.new(
  :block_size_bytes,
  :page_size_bytes,
  :compression,
  :enable_dictionary_compression,
  :max_padding_bytes,
  :writer_version)
  SENSITIVE = []
  include Aws::Structure
end

#enable_dictionary_compressionBoolean

Indicates whether to enable dictionary compression.

Returns:

  • (Boolean)


3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3028

class ParquetSerDe < Struct.new(
  :block_size_bytes,
  :page_size_bytes,
  :compression,
  :enable_dictionary_compression,
  :max_padding_bytes,
  :writer_version)
  SENSITIVE = []
  include Aws::Structure
end

#max_padding_bytesInteger

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.

Returns:

  • (Integer)


3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3028

class ParquetSerDe < Struct.new(
  :block_size_bytes,
  :page_size_bytes,
  :compression,
  :enable_dictionary_compression,
  :max_padding_bytes,
  :writer_version)
  SENSITIVE = []
  include Aws::Structure
end

#page_size_bytesInteger

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.

Returns:

  • (Integer)


3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3028

class ParquetSerDe < Struct.new(
  :block_size_bytes,
  :page_size_bytes,
  :compression,
  :enable_dictionary_compression,
  :max_padding_bytes,
  :writer_version)
  SENSITIVE = []
  include Aws::Structure
end

#writer_versionString

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

Returns:

  • (String)


3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3028

class ParquetSerDe < Struct.new(
  :block_size_bytes,
  :page_size_bytes,
  :compression,
  :enable_dictionary_compression,
  :max_padding_bytes,
  :writer_version)
  SENSITIVE = []
  include Aws::Structure
end