Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/development/extensions-contrib/iceberg.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Security credentials may be provided in the `catalogProperties` object.
## Glue catalog

Configure the `icebergCatalog` type as `glue`.`warehousePath` and properties must be provided in `catalogProperties` object.
Refer [Iceberg Glue Catalog documentation](https://iceberg.apache.org/docs/1.6.0/aws/#glue-catalog) for setting properties.
Refer [Iceberg Glue Catalog documentation](https://iceberg.apache.org/docs/1.7.2/aws/#glue-catalog) for setting properties.


## Downloading Iceberg extension
Expand Down
8 changes: 7 additions & 1 deletion embedded-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<properties>
<surefire.rerunFailingTestsCount>0</surefire.rerunFailingTestsCount>
<!-- Must match iceberg.core.version in extensions-contrib/druid-iceberg-extensions/pom.xml -->
<iceberg.version>1.6.1</iceberg.version>
<iceberg.version>1.7.2</iceberg.version>
</properties>

<parent>
Expand Down Expand Up @@ -292,6 +292,12 @@
<artifactId>iceberg-core</artifactId>
<version>${iceberg.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.iceberg</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
*/
public class IcebergRestCatalogResource extends TestcontainerResource<GenericContainer<?>>
{
// 1.6.0 is the latest available tag; the REST protocol is compatible with the 1.6.1 client libraries
// 1.6.0 is the latest available tag; the REST protocol is compatible with the 1.7.2 client libraries
private static final String ICEBERG_REST_IMAGE = "tabulario/iceberg-rest:1.6.0";
private static final int REST_CATALOG_PORT = 8181;
private static final String CONTAINER_WAREHOUSE_PATH = "/tmp/iceberg-warehouse";
Expand Down
6 changes: 5 additions & 1 deletion extensions-contrib/druid-iceberg-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<iceberg.core.version>1.6.1</iceberg.core.version>
<iceberg.core.version>1.7.2</iceberg.core.version>
<hive.version>3.1.3</hive.version>
</properties>
<dependencies>
Expand Down Expand Up @@ -253,6 +253,10 @@
<groupId>io.airlift</groupId>
<artifactId>aircompressor</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public List<String> extractSnapshotDataFiles(

Expression detectedResidual = null;
for (FileScanTask task : tasks) {
dataFilePaths.add(task.file().path().toString());
dataFilePaths.add(task.file().location());

// Check for residual filters
if (detectedResidual == null) {
Expand Down
Loading