Class: Aws::Glue::Types::IcebergOrphanFileDeletionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::IcebergOrphanFileDeletionConfiguration
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
The configuration for an Iceberg orphan file deletion optimizer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#location ⇒ String
Specifies a directory in which to look for files (defaults to the table's location).
-
#orphan_file_retention_period_in_days ⇒ Integer
The number of days that orphan files should be retained before file deletion.
-
#run_rate_in_hours ⇒ Integer
The interval in hours between orphan file deletion job runs.
Instance Attribute Details
#location ⇒ String
Specifies a directory in which to look for files (defaults to the table's location). You may choose a sub-directory rather than the top-level table location.
16183 16184 16185 16186 16187 16188 16189 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16183 class IcebergOrphanFileDeletionConfiguration < Struct.new( :orphan_file_retention_period_in_days, :location, :run_rate_in_hours) SENSITIVE = [] include Aws::Structure end |
#orphan_file_retention_period_in_days ⇒ Integer
The number of days that orphan files should be retained before file deletion. If an input is not provided, the default value 3 will be used.
16183 16184 16185 16186 16187 16188 16189 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16183 class IcebergOrphanFileDeletionConfiguration < Struct.new( :orphan_file_retention_period_in_days, :location, :run_rate_in_hours) SENSITIVE = [] include Aws::Structure end |
#run_rate_in_hours ⇒ Integer
The interval in hours between orphan file deletion job runs. This parameter controls how frequently the orphan file deletion optimizer will run to clean up orphan files. The value must be between 3 and 168 hours (7 days). If an input is not provided, the default value 24 will be used.
16183 16184 16185 16186 16187 16188 16189 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16183 class IcebergOrphanFileDeletionConfiguration < Struct.new( :orphan_file_retention_period_in_days, :location, :run_rate_in_hours) SENSITIVE = [] include Aws::Structure end |