aws-sdk-glue 1.221.0 → 1.222.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +16 -1
- data/lib/aws-sdk-glue/client_api.rb +11 -0
- data/lib/aws-sdk-glue/types.rb +87 -0
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +10 -0
- data/sig/types.rbs +12 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06ff978a27f19ad72933805d99570e2f2d1bd04bd2fd44497964be6b471566af
|
4
|
+
data.tar.gz: 388917bf2360aca50ef34a5e7f23b91adc9aa561a1023bf7547bcf5976f97843
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6dc8b1ca9603603c6ab425215ef410b2b9ad40a38c08e9fbd3fd3f411d449e6b8b576cc4e9c342509683723f40124d253787a51e16a3f70ffa4585acbc63015e
|
7
|
+
data.tar.gz: 4c42d23f17eafe8d4d1b1a801626152176a3524eef33ab977b0564813358902e1d73cfddbd865a1a1a1a8e9bdc5cad4151c8da60757b82d09b604a46b9d9f1f6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.222.0 (2025-06-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Glue now supports sort and z-order strategy for managed automated compaction for Iceberg tables in addition to binpack.
|
8
|
+
|
4
9
|
1.221.0 (2025-06-20)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.222.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -2243,6 +2243,7 @@ module Aws::Glue
|
|
2243
2243
|
# resp.table_optimizers[0].table_optimizer.configuration.role_arn #=> String
|
2244
2244
|
# resp.table_optimizers[0].table_optimizer.configuration.enabled #=> Boolean
|
2245
2245
|
# resp.table_optimizers[0].table_optimizer.configuration.vpc_configuration.glue_connection_name #=> String
|
2246
|
+
# resp.table_optimizers[0].table_optimizer.configuration.compaction_configuration.iceberg_configuration.strategy #=> String, one of "binpack", "sort", "z-order"
|
2246
2247
|
# resp.table_optimizers[0].table_optimizer.configuration.retention_configuration.iceberg_configuration.snapshot_retention_period_in_days #=> Integer
|
2247
2248
|
# resp.table_optimizers[0].table_optimizer.configuration.retention_configuration.iceberg_configuration.number_of_snapshots_to_retain #=> Integer
|
2248
2249
|
# resp.table_optimizers[0].table_optimizer.configuration.retention_configuration.iceberg_configuration.clean_expired_files #=> Boolean
|
@@ -2261,6 +2262,7 @@ module Aws::Glue
|
|
2261
2262
|
# resp.table_optimizers[0].table_optimizer.last_run.compaction_metrics.iceberg_metrics.dpu_hours #=> Float
|
2262
2263
|
# resp.table_optimizers[0].table_optimizer.last_run.compaction_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
2263
2264
|
# resp.table_optimizers[0].table_optimizer.last_run.compaction_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
2265
|
+
# resp.table_optimizers[0].table_optimizer.last_run.compaction_strategy #=> String, one of "binpack", "sort", "z-order"
|
2264
2266
|
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_data_files_deleted #=> Integer
|
2265
2267
|
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_manifest_files_deleted #=> Integer
|
2266
2268
|
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_manifest_lists_deleted #=> Integer
|
@@ -5315,6 +5317,11 @@ module Aws::Glue
|
|
5315
5317
|
# vpc_configuration: {
|
5316
5318
|
# glue_connection_name: "glueConnectionNameString",
|
5317
5319
|
# },
|
5320
|
+
# compaction_configuration: {
|
5321
|
+
# iceberg_configuration: {
|
5322
|
+
# strategy: "binpack", # accepts binpack, sort, z-order
|
5323
|
+
# },
|
5324
|
+
# },
|
5318
5325
|
# retention_configuration: {
|
5319
5326
|
# iceberg_configuration: {
|
5320
5327
|
# snapshot_retention_period_in_days: 1,
|
@@ -12937,6 +12944,7 @@ module Aws::Glue
|
|
12937
12944
|
# resp.table_optimizer.configuration.role_arn #=> String
|
12938
12945
|
# resp.table_optimizer.configuration.enabled #=> Boolean
|
12939
12946
|
# resp.table_optimizer.configuration.vpc_configuration.glue_connection_name #=> String
|
12947
|
+
# resp.table_optimizer.configuration.compaction_configuration.iceberg_configuration.strategy #=> String, one of "binpack", "sort", "z-order"
|
12940
12948
|
# resp.table_optimizer.configuration.retention_configuration.iceberg_configuration.snapshot_retention_period_in_days #=> Integer
|
12941
12949
|
# resp.table_optimizer.configuration.retention_configuration.iceberg_configuration.number_of_snapshots_to_retain #=> Integer
|
12942
12950
|
# resp.table_optimizer.configuration.retention_configuration.iceberg_configuration.clean_expired_files #=> Boolean
|
@@ -12955,6 +12963,7 @@ module Aws::Glue
|
|
12955
12963
|
# resp.table_optimizer.last_run.compaction_metrics.iceberg_metrics.dpu_hours #=> Float
|
12956
12964
|
# resp.table_optimizer.last_run.compaction_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
12957
12965
|
# resp.table_optimizer.last_run.compaction_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
12966
|
+
# resp.table_optimizer.last_run.compaction_strategy #=> String, one of "binpack", "sort", "z-order"
|
12958
12967
|
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_data_files_deleted #=> Integer
|
12959
12968
|
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_manifest_files_deleted #=> Integer
|
12960
12969
|
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_manifest_lists_deleted #=> Integer
|
@@ -16140,6 +16149,7 @@ module Aws::Glue
|
|
16140
16149
|
# resp.table_optimizer_runs[0].compaction_metrics.iceberg_metrics.dpu_hours #=> Float
|
16141
16150
|
# resp.table_optimizer_runs[0].compaction_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
16142
16151
|
# resp.table_optimizer_runs[0].compaction_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
16152
|
+
# resp.table_optimizer_runs[0].compaction_strategy #=> String, one of "binpack", "sort", "z-order"
|
16143
16153
|
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.number_of_data_files_deleted #=> Integer
|
16144
16154
|
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.number_of_manifest_files_deleted #=> Integer
|
16145
16155
|
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.number_of_manifest_lists_deleted #=> Integer
|
@@ -20014,6 +20024,11 @@ module Aws::Glue
|
|
20014
20024
|
# vpc_configuration: {
|
20015
20025
|
# glue_connection_name: "glueConnectionNameString",
|
20016
20026
|
# },
|
20027
|
+
# compaction_configuration: {
|
20028
|
+
# iceberg_configuration: {
|
20029
|
+
# strategy: "binpack", # accepts binpack, sort, z-order
|
20030
|
+
# },
|
20031
|
+
# },
|
20017
20032
|
# retention_configuration: {
|
20018
20033
|
# iceberg_configuration: {
|
20019
20034
|
# snapshot_retention_period_in_days: 1,
|
@@ -20306,7 +20321,7 @@ module Aws::Glue
|
|
20306
20321
|
tracer: tracer
|
20307
20322
|
)
|
20308
20323
|
context[:gem_name] = 'aws-sdk-glue'
|
20309
|
-
context[:gem_version] = '1.
|
20324
|
+
context[:gem_version] = '1.222.0'
|
20310
20325
|
Seahorse::Client::Request.new(handlers, context)
|
20311
20326
|
end
|
20312
20327
|
|
@@ -225,7 +225,9 @@ module Aws::Glue
|
|
225
225
|
ColumnValuesString = Shapes::StringShape.new(name: 'ColumnValuesString')
|
226
226
|
CommentString = Shapes::StringShape.new(name: 'CommentString')
|
227
227
|
CommitIdString = Shapes::StringShape.new(name: 'CommitIdString')
|
228
|
+
CompactionConfiguration = Shapes::StructureShape.new(name: 'CompactionConfiguration')
|
228
229
|
CompactionMetrics = Shapes::StructureShape.new(name: 'CompactionMetrics')
|
230
|
+
CompactionStrategy = Shapes::StringShape.new(name: 'CompactionStrategy')
|
229
231
|
Comparator = Shapes::StringShape.new(name: 'Comparator')
|
230
232
|
Compatibility = Shapes::StringShape.new(name: 'Compatibility')
|
231
233
|
CompressionType = Shapes::StringShape.new(name: 'CompressionType')
|
@@ -796,6 +798,7 @@ module Aws::Glue
|
|
796
798
|
HudiTargetList = Shapes::ListShape.new(name: 'HudiTargetList')
|
797
799
|
HyperTargetCompressionType = Shapes::StringShape.new(name: 'HyperTargetCompressionType')
|
798
800
|
IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
|
801
|
+
IcebergCompactionConfiguration = Shapes::StructureShape.new(name: 'IcebergCompactionConfiguration')
|
799
802
|
IcebergCompactionMetrics = Shapes::StructureShape.new(name: 'IcebergCompactionMetrics')
|
800
803
|
IcebergInput = Shapes::StructureShape.new(name: 'IcebergInput')
|
801
804
|
IcebergOrphanFileDeletionConfiguration = Shapes::StructureShape.new(name: 'IcebergOrphanFileDeletionConfiguration')
|
@@ -2327,6 +2330,9 @@ module Aws::Glue
|
|
2327
2330
|
|
2328
2331
|
ColumnValueStringList.member = Shapes::ShapeRef.new(shape: ColumnValuesString)
|
2329
2332
|
|
2333
|
+
CompactionConfiguration.add_member(:iceberg_configuration, Shapes::ShapeRef.new(shape: IcebergCompactionConfiguration, location_name: "icebergConfiguration"))
|
2334
|
+
CompactionConfiguration.struct_class = Types::CompactionConfiguration
|
2335
|
+
|
2330
2336
|
CompactionMetrics.add_member(:iceberg_metrics, Shapes::ShapeRef.new(shape: IcebergCompactionMetrics, location_name: "IcebergMetrics"))
|
2331
2337
|
CompactionMetrics.struct_class = Types::CompactionMetrics
|
2332
2338
|
|
@@ -4674,6 +4680,9 @@ module Aws::Glue
|
|
4674
4680
|
|
4675
4681
|
HudiTargetList.member = Shapes::ShapeRef.new(shape: HudiTarget)
|
4676
4682
|
|
4683
|
+
IcebergCompactionConfiguration.add_member(:strategy, Shapes::ShapeRef.new(shape: CompactionStrategy, location_name: "strategy"))
|
4684
|
+
IcebergCompactionConfiguration.struct_class = Types::IcebergCompactionConfiguration
|
4685
|
+
|
4677
4686
|
IcebergCompactionMetrics.add_member(:number_of_bytes_compacted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfBytesCompacted"))
|
4678
4687
|
IcebergCompactionMetrics.add_member(:number_of_files_compacted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfFilesCompacted"))
|
4679
4688
|
IcebergCompactionMetrics.add_member(:dpu_hours, Shapes::ShapeRef.new(shape: dpuHours, location_name: "DpuHours"))
|
@@ -6704,6 +6713,7 @@ module Aws::Glue
|
|
6704
6713
|
TableOptimizerConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: ArnString, location_name: "roleArn"))
|
6705
6714
|
TableOptimizerConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "enabled"))
|
6706
6715
|
TableOptimizerConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: TableOptimizerVpcConfiguration, location_name: "vpcConfiguration"))
|
6716
|
+
TableOptimizerConfiguration.add_member(:compaction_configuration, Shapes::ShapeRef.new(shape: CompactionConfiguration, location_name: "compactionConfiguration"))
|
6707
6717
|
TableOptimizerConfiguration.add_member(:retention_configuration, Shapes::ShapeRef.new(shape: RetentionConfiguration, location_name: "retentionConfiguration"))
|
6708
6718
|
TableOptimizerConfiguration.add_member(:orphan_file_deletion_configuration, Shapes::ShapeRef.new(shape: OrphanFileDeletionConfiguration, location_name: "orphanFileDeletionConfiguration"))
|
6709
6719
|
TableOptimizerConfiguration.struct_class = Types::TableOptimizerConfiguration
|
@@ -6714,6 +6724,7 @@ module Aws::Glue
|
|
6714
6724
|
TableOptimizerRun.add_member(:metrics, Shapes::ShapeRef.new(shape: RunMetrics, deprecated: true, location_name: "metrics", metadata: {"deprecatedMessage" => "Metrics has been replaced by optimizer type specific metrics such as IcebergCompactionMetrics"}))
|
6715
6725
|
TableOptimizerRun.add_member(:error, Shapes::ShapeRef.new(shape: MessageString, location_name: "error"))
|
6716
6726
|
TableOptimizerRun.add_member(:compaction_metrics, Shapes::ShapeRef.new(shape: CompactionMetrics, location_name: "compactionMetrics"))
|
6727
|
+
TableOptimizerRun.add_member(:compaction_strategy, Shapes::ShapeRef.new(shape: CompactionStrategy, location_name: "compactionStrategy"))
|
6717
6728
|
TableOptimizerRun.add_member(:retention_metrics, Shapes::ShapeRef.new(shape: RetentionMetrics, location_name: "retentionMetrics"))
|
6718
6729
|
TableOptimizerRun.add_member(:orphan_file_deletion_metrics, Shapes::ShapeRef.new(shape: OrphanFileDeletionMetrics, location_name: "orphanFileDeletionMetrics"))
|
6719
6730
|
TableOptimizerRun.struct_class = Types::TableOptimizerRun
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -3423,6 +3423,22 @@ module Aws::Glue
|
|
3423
3423
|
include Aws::Structure
|
3424
3424
|
end
|
3425
3425
|
|
3426
|
+
# The configuration for a compaction optimizer. This configuration
|
3427
|
+
# defines how data files in your table will be compacted to improve
|
3428
|
+
# query performance and reduce storage costs.
|
3429
|
+
#
|
3430
|
+
# @!attribute [rw] iceberg_configuration
|
3431
|
+
# The configuration for an Iceberg compaction optimizer.
|
3432
|
+
# @return [Types::IcebergCompactionConfiguration]
|
3433
|
+
#
|
3434
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CompactionConfiguration AWS API Documentation
|
3435
|
+
#
|
3436
|
+
class CompactionConfiguration < Struct.new(
|
3437
|
+
:iceberg_configuration)
|
3438
|
+
SENSITIVE = []
|
3439
|
+
include Aws::Structure
|
3440
|
+
end
|
3441
|
+
|
3426
3442
|
# A structure that contains compaction metrics for the optimizer run.
|
3427
3443
|
#
|
3428
3444
|
# @!attribute [rw] iceberg_metrics
|
@@ -15449,6 +15465,44 @@ module Aws::Glue
|
|
15449
15465
|
include Aws::Structure
|
15450
15466
|
end
|
15451
15467
|
|
15468
|
+
# The configuration for an Iceberg compaction optimizer. This
|
15469
|
+
# configuration defines parameters for optimizing the layout of data
|
15470
|
+
# files in Iceberg tables.
|
15471
|
+
#
|
15472
|
+
# @!attribute [rw] strategy
|
15473
|
+
# The strategy to use for compaction. Valid values are:
|
15474
|
+
#
|
15475
|
+
# * `binpack`: Combines small files into larger files, typically
|
15476
|
+
# targeting sizes over 100MB, while applying any pending deletes.
|
15477
|
+
# This is the recommended compaction strategy for most use cases.
|
15478
|
+
#
|
15479
|
+
# * `sort`: Organizes data based on specified columns which are sorted
|
15480
|
+
# hierarchically during compaction, improving query performance for
|
15481
|
+
# filtered operations. This strategy is recommended when your
|
15482
|
+
# queries frequently filter on specific columns. To use this
|
15483
|
+
# strategy, you must first define a sort order in your Iceberg table
|
15484
|
+
# properties using the `sort_order` table property.
|
15485
|
+
#
|
15486
|
+
# * `z-order`: Optimizes data organization by blending multiple
|
15487
|
+
# attributes into a single scalar value that can be used for
|
15488
|
+
# sorting, allowing efficient querying across multiple dimensions.
|
15489
|
+
# This strategy is recommended when you need to query data across
|
15490
|
+
# multiple dimensions simultaneously. To use this strategy, you must
|
15491
|
+
# first define a sort order in your Iceberg table properties using
|
15492
|
+
# the `sort_order` table property.
|
15493
|
+
#
|
15494
|
+
# If an input is not provided, the default value 'binpack' will be
|
15495
|
+
# used.
|
15496
|
+
# @return [String]
|
15497
|
+
#
|
15498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergCompactionConfiguration AWS API Documentation
|
15499
|
+
#
|
15500
|
+
class IcebergCompactionConfiguration < Struct.new(
|
15501
|
+
:strategy)
|
15502
|
+
SENSITIVE = []
|
15503
|
+
include Aws::Structure
|
15504
|
+
end
|
15505
|
+
|
15452
15506
|
# Compaction metrics for Iceberg for the optimizer run.
|
15453
15507
|
#
|
15454
15508
|
# @!attribute [rw] number_of_bytes_compacted
|
@@ -25751,6 +25805,12 @@ module Aws::Glue
|
|
25751
25805
|
# that are in a customer VPC.
|
25752
25806
|
# @return [Types::TableOptimizerVpcConfiguration]
|
25753
25807
|
#
|
25808
|
+
# @!attribute [rw] compaction_configuration
|
25809
|
+
# The configuration for a compaction optimizer. This configuration
|
25810
|
+
# defines how data files in your table will be compacted to improve
|
25811
|
+
# query performance and reduce storage costs.
|
25812
|
+
# @return [Types::CompactionConfiguration]
|
25813
|
+
#
|
25754
25814
|
# @!attribute [rw] retention_configuration
|
25755
25815
|
# The configuration for a snapshot retention optimizer.
|
25756
25816
|
# @return [Types::RetentionConfiguration]
|
@@ -25765,6 +25825,7 @@ module Aws::Glue
|
|
25765
25825
|
:role_arn,
|
25766
25826
|
:enabled,
|
25767
25827
|
:vpc_configuration,
|
25828
|
+
:compaction_configuration,
|
25768
25829
|
:retention_configuration,
|
25769
25830
|
:orphan_file_deletion_configuration)
|
25770
25831
|
SENSITIVE = []
|
@@ -25802,6 +25863,31 @@ module Aws::Glue
|
|
25802
25863
|
# run.
|
25803
25864
|
# @return [Types::CompactionMetrics]
|
25804
25865
|
#
|
25866
|
+
# @!attribute [rw] compaction_strategy
|
25867
|
+
# The strategy used for the compaction run. Indicates which algorithm
|
25868
|
+
# was applied to determine how files were selected and combined during
|
25869
|
+
# the compaction process. Valid values are:
|
25870
|
+
#
|
25871
|
+
# * `binpack`: Combines small files into larger files, typically
|
25872
|
+
# targeting sizes over 100MB, while applying any pending deletes.
|
25873
|
+
# This is the recommended compaction strategy for most use cases.
|
25874
|
+
#
|
25875
|
+
# * `sort`: Organizes data based on specified columns which are sorted
|
25876
|
+
# hierarchically during compaction, improving query performance for
|
25877
|
+
# filtered operations. This strategy is recommended when your
|
25878
|
+
# queries frequently filter on specific columns. To use this
|
25879
|
+
# strategy, you must first define a sort order in your Iceberg table
|
25880
|
+
# properties using the `sort_order` table property.
|
25881
|
+
#
|
25882
|
+
# * `z-order`: Optimizes data organization by blending multiple
|
25883
|
+
# attributes into a single scalar value that can be used for
|
25884
|
+
# sorting, allowing efficient querying across multiple dimensions.
|
25885
|
+
# This strategy is recommended when you need to query data across
|
25886
|
+
# multiple dimensions simultaneously. To use this strategy, you must
|
25887
|
+
# first define a sort order in your Iceberg table properties using
|
25888
|
+
# the `sort_order` table property.
|
25889
|
+
# @return [String]
|
25890
|
+
#
|
25805
25891
|
# @!attribute [rw] retention_metrics
|
25806
25892
|
# A `RetentionMetrics` object containing metrics for the optimizer
|
25807
25893
|
# run.
|
@@ -25821,6 +25907,7 @@ module Aws::Glue
|
|
25821
25907
|
:metrics,
|
25822
25908
|
:error,
|
25823
25909
|
:compaction_metrics,
|
25910
|
+
:compaction_strategy,
|
25824
25911
|
:retention_metrics,
|
25825
25912
|
:orphan_file_deletion_metrics)
|
25826
25913
|
SENSITIVE = []
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -2635,6 +2635,11 @@ module Aws
|
|
2635
2635
|
vpc_configuration: {
|
2636
2636
|
glue_connection_name: ::String?
|
2637
2637
|
}?,
|
2638
|
+
compaction_configuration: {
|
2639
|
+
iceberg_configuration: {
|
2640
|
+
strategy: ("binpack" | "sort" | "z-order")?
|
2641
|
+
}?
|
2642
|
+
}?,
|
2638
2643
|
retention_configuration: {
|
2639
2644
|
iceberg_configuration: {
|
2640
2645
|
snapshot_retention_period_in_days: ::Integer?,
|
@@ -7576,6 +7581,11 @@ module Aws
|
|
7576
7581
|
vpc_configuration: {
|
7577
7582
|
glue_connection_name: ::String?
|
7578
7583
|
}?,
|
7584
|
+
compaction_configuration: {
|
7585
|
+
iceberg_configuration: {
|
7586
|
+
strategy: ("binpack" | "sort" | "z-order")?
|
7587
|
+
}?
|
7588
|
+
}?,
|
7579
7589
|
retention_configuration: {
|
7580
7590
|
iceberg_configuration: {
|
7581
7591
|
snapshot_retention_period_in_days: ::Integer?,
|
data/sig/types.rbs
CHANGED
@@ -889,6 +889,11 @@ module Aws::Glue
|
|
889
889
|
SENSITIVE: []
|
890
890
|
end
|
891
891
|
|
892
|
+
class CompactionConfiguration
|
893
|
+
attr_accessor iceberg_configuration: Types::IcebergCompactionConfiguration
|
894
|
+
SENSITIVE: []
|
895
|
+
end
|
896
|
+
|
892
897
|
class CompactionMetrics
|
893
898
|
attr_accessor iceberg_metrics: Types::IcebergCompactionMetrics
|
894
899
|
SENSITIVE: []
|
@@ -3847,6 +3852,11 @@ module Aws::Glue
|
|
3847
3852
|
SENSITIVE: []
|
3848
3853
|
end
|
3849
3854
|
|
3855
|
+
class IcebergCompactionConfiguration
|
3856
|
+
attr_accessor strategy: ("binpack" | "sort" | "z-order")
|
3857
|
+
SENSITIVE: []
|
3858
|
+
end
|
3859
|
+
|
3850
3860
|
class IcebergCompactionMetrics
|
3851
3861
|
attr_accessor number_of_bytes_compacted: ::Integer
|
3852
3862
|
attr_accessor number_of_files_compacted: ::Integer
|
@@ -6301,6 +6311,7 @@ module Aws::Glue
|
|
6301
6311
|
attr_accessor role_arn: ::String
|
6302
6312
|
attr_accessor enabled: bool
|
6303
6313
|
attr_accessor vpc_configuration: Types::TableOptimizerVpcConfiguration
|
6314
|
+
attr_accessor compaction_configuration: Types::CompactionConfiguration
|
6304
6315
|
attr_accessor retention_configuration: Types::RetentionConfiguration
|
6305
6316
|
attr_accessor orphan_file_deletion_configuration: Types::OrphanFileDeletionConfiguration
|
6306
6317
|
SENSITIVE: []
|
@@ -6313,6 +6324,7 @@ module Aws::Glue
|
|
6313
6324
|
attr_accessor metrics: Types::RunMetrics
|
6314
6325
|
attr_accessor error: ::String
|
6315
6326
|
attr_accessor compaction_metrics: Types::CompactionMetrics
|
6327
|
+
attr_accessor compaction_strategy: ("binpack" | "sort" | "z-order")
|
6316
6328
|
attr_accessor retention_metrics: Types::RetentionMetrics
|
6317
6329
|
attr_accessor orphan_file_deletion_metrics: Types::OrphanFileDeletionMetrics
|
6318
6330
|
SENSITIVE: []
|