Skip to content

Commit f23d9a8

Browse files
author
AWS
committed
AWS Glue Update: This release supports additional ConversionSpec parameter as part of IntegrationPartition Structure in CreateIntegrationTableProperty API. This parameter is referred to apply appropriate column transformation for columns that are used for timestamp based partitioning
1 parent 43b1742 commit f23d9a8

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Glue",
4+
"contributor": "",
5+
"description": "This release supports additional ConversionSpec parameter as part of IntegrationPartition Structure in CreateIntegrationTableProperty API. This parameter is referred to apply appropriate column transformation for columns that are used for timestamp based partitioning"
6+
}

services/glue/src/main/resources/codegen-resources/service-2.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9154,7 +9154,7 @@
91549154
"members":{
91559155
"ResourceArn":{
91569156
"shape":"String128",
9157-
"documentation":"<p>The connection ARN of the source, or the database ARN of the target.</p>"
9157+
"documentation":"<p>The Amazon Resource Name (ARN) of the target table for which to create integration table properties. Currently, this API only supports creating integration table properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for creating integration table properties for source connections (using the connection ARN) is not yet implemented and will be added in a future release. </p>"
91589158
},
91599159
"TableName":{
91609160
"shape":"String128",
@@ -14466,7 +14466,7 @@
1446614466
"members":{
1446714467
"ResourceArn":{
1446814468
"shape":"String128",
14469-
"documentation":"<p>The connection ARN of the source, or the database ARN of the target.</p>"
14469+
"documentation":"<p>The Amazon Resource Name (ARN) of the target table for which to retrieve integration table properties. Currently, this API only supports retrieving properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for retrieving integration table properties for source connections (using the connection ARN) is not yet implemented and will be added in a future release. </p>"
1447014470
},
1447114471
"TableName":{
1447214472
"shape":"String128",
@@ -14479,7 +14479,7 @@
1447914479
"members":{
1448014480
"ResourceArn":{
1448114481
"shape":"String128",
14482-
"documentation":"<p>The connection ARN of the source, or the database ARN of the target.</p>"
14482+
"documentation":"<p>The Amazon Resource Name (ARN) of the target table for which to retrieve integration table properties. Currently, this API only supports retrieving properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for retrieving integration table properties for source connections (using the connection ARN) is not yet implemented and will be added in a future release. </p>"
1448314483
},
1448414484
"TableName":{
1448514485
"shape":"String128",
@@ -16963,6 +16963,10 @@
1696316963
"FunctionSpec":{
1696416964
"shape":"String128",
1696516965
"documentation":"<p>Specifies the function used to partition data on the target. The only accepted value for this parameter is `'identity'` (string). The `'identity'` function ensures that the data partitioning on the target follows the same scheme as the source. In other words, the partitioning structure of the source data is preserved in the target destination.</p>"
16966+
},
16967+
"ConversionSpec":{
16968+
"shape":"String128",
16969+
"documentation":"<p>Specifies the timestamp format of the source data. Valid values are:</p> <ul> <li> <p> <code>epoch_sec</code> - Unix epoch timestamp in seconds</p> </li> <li> <p> <code>epoch_milli</code> - Unix epoch timestamp in milliseconds</p> </li> <li> <p> <code>iso</code> - ISO 8601 formatted timestamp</p> </li> </ul> <note> <p> Only specify <code>ConversionSpec</code> when using timestamp-based partition functions (year, month, day, or hour). Glue Zero-ETL uses this parameter to correctly transform source data into timestamp format before partitioning. </p> <p> Do not use high-cardinality columns with the <code>identity</code> partition function. High-cardinality columns include: </p> <ul> <li> <p>Primary keys</p> </li> <li> <p>Timestamp fields (such as <code>LastModifiedTimestamp</code>, <code>CreatedDate</code>)</p> </li> <li> <p>System-generated timestamps</p> </li> </ul> <p> Using high-cardinality columns with identity partitioning creates many small partitions, which can significantly degrade ingestion performance. </p> </note>"
1696616970
}
1696716971
},
1696816972
"documentation":"<p>A structure that describes how data is partitioned on the target.</p>"

0 commit comments

Comments
 (0)