|
7349 | 7349 | "min":1,
|
7350 | 7350 | "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
|
7351 | 7351 | },
|
| 7352 | + "CompactionConfiguration":{ |
| 7353 | + "type":"structure", |
| 7354 | + "members":{ |
| 7355 | + "icebergConfiguration":{ |
| 7356 | + "shape":"IcebergCompactionConfiguration", |
| 7357 | + "documentation":"<p>The configuration for an Iceberg compaction optimizer.</p>" |
| 7358 | + } |
| 7359 | + }, |
| 7360 | + "documentation":"<p>The configuration for a compaction optimizer. This configuration defines how data files in your table will be compacted to improve query performance and reduce storage costs.</p>" |
| 7361 | + }, |
7352 | 7362 | "CompactionMetrics":{
|
7353 | 7363 | "type":"structure",
|
7354 | 7364 | "members":{
|
|
7359 | 7369 | },
|
7360 | 7370 | "documentation":"<p>A structure that contains compaction metrics for the optimizer run.</p>"
|
7361 | 7371 | },
|
| 7372 | + "CompactionStrategy":{ |
| 7373 | + "type":"string", |
| 7374 | + "enum":[ |
| 7375 | + "binpack", |
| 7376 | + "sort", |
| 7377 | + "z-order" |
| 7378 | + ] |
| 7379 | + }, |
7362 | 7380 | "Comparator":{
|
7363 | 7381 | "type":"string",
|
7364 | 7382 | "enum":[
|
|
16545 | 16563 | "type":"string",
|
16546 | 16564 | "pattern":"^arn:aws(-(cn|us-gov|iso(-[bef])?))?:iam::[0-9]{12}:role/.+"
|
16547 | 16565 | },
|
| 16566 | + "IcebergCompactionConfiguration":{ |
| 16567 | + "type":"structure", |
| 16568 | + "members":{ |
| 16569 | + "strategy":{ |
| 16570 | + "shape":"CompactionStrategy", |
| 16571 | + "documentation":"<p>The strategy to use for compaction. Valid values are:</p> <ul> <li> <p> <code>binpack</code>: Combines small files into larger files, typically targeting sizes over 100MB, while applying any pending deletes. This is the recommended compaction strategy for most use cases. </p> </li> <li> <p> <code>sort</code>: Organizes data based on specified columns which are sorted hierarchically during compaction, improving query performance for filtered operations. This strategy is recommended when your queries frequently filter on specific columns. To use this strategy, you must first define a sort order in your Iceberg table properties using the <code>sort_order</code> table property.</p> </li> <li> <p> <code>z-order</code>: Optimizes data organization by blending multiple attributes into a single scalar value that can be used for sorting, allowing efficient querying across multiple dimensions. This strategy is recommended when you need to query data across multiple dimensions simultaneously. To use this strategy, you must first define a sort order in your Iceberg table properties using the <code>sort_order</code> table property. </p> </li> </ul> <p>If an input is not provided, the default value 'binpack' will be used.</p>" |
| 16572 | + } |
| 16573 | + }, |
| 16574 | + "documentation":"<p>The configuration for an Iceberg compaction optimizer. This configuration defines parameters for optimizing the layout of data files in Iceberg tables.</p>" |
| 16575 | + }, |
16548 | 16576 | "IcebergCompactionMetrics":{
|
16549 | 16577 | "type":"structure",
|
16550 | 16578 | "members":{
|
|
24936 | 24964 | "shape":"TableOptimizerVpcConfiguration",
|
24937 | 24965 | "documentation":"<p>A <code>TableOptimizerVpcConfiguration</code> object representing the VPC configuration for a table optimizer.</p> <p>This configuration is necessary to perform optimization on tables that are in a customer VPC.</p>"
|
24938 | 24966 | },
|
| 24967 | + "compactionConfiguration":{ |
| 24968 | + "shape":"CompactionConfiguration", |
| 24969 | + "documentation":"<p>The configuration for a compaction optimizer. This configuration defines how data files in your table will be compacted to improve query performance and reduce storage costs.</p>" |
| 24970 | + }, |
24939 | 24971 | "retentionConfiguration":{
|
24940 | 24972 | "shape":"RetentionConfiguration",
|
24941 | 24973 | "documentation":"<p>The configuration for a snapshot retention optimizer.</p>"
|
|
24985 | 25017 | "shape":"CompactionMetrics",
|
24986 | 25018 | "documentation":"<p>A <code>CompactionMetrics</code> object containing metrics for the optimizer run.</p>"
|
24987 | 25019 | },
|
| 25020 | + "compactionStrategy":{ |
| 25021 | + "shape":"CompactionStrategy", |
| 25022 | + "documentation":"<p>The strategy used for the compaction run. Indicates which algorithm was applied to determine how files were selected and combined during the compaction process. Valid values are:</p> <ul> <li> <p> <code>binpack</code>: Combines small files into larger files, typically targeting sizes over 100MB, while applying any pending deletes. This is the recommended compaction strategy for most use cases. </p> </li> <li> <p> <code>sort</code>: Organizes data based on specified columns which are sorted hierarchically during compaction, improving query performance for filtered operations. This strategy is recommended when your queries frequently filter on specific columns. To use this strategy, you must first define a sort order in your Iceberg table properties using the <code>sort_order</code> table property.</p> </li> <li> <p> <code>z-order</code>: Optimizes data organization by blending multiple attributes into a single scalar value that can be used for sorting, allowing efficient querying across multiple dimensions. This strategy is recommended when you need to query data across multiple dimensions simultaneously. To use this strategy, you must first define a sort order in your Iceberg table properties using the <code>sort_order</code> table property. </p> </li> </ul>" |
| 25023 | + }, |
24988 | 25024 | "retentionMetrics":{
|
24989 | 25025 | "shape":"RetentionMetrics",
|
24990 | 25026 | "documentation":"<p>A <code>RetentionMetrics</code> object containing metrics for the optimizer run.</p>"
|
|
0 commit comments