Skip to content

Commit

Permalink
fix(ingest/iceberg): Iceberg table name (#11599)
Browse files Browse the repository at this point in the history
  • Loading branch information
skrydal authored Oct 11, 2024
1 parent 14c7938 commit ebcce1f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ def _create_iceberg_workunit(
custom_properties["snapshot-id"] = str(table.current_snapshot().snapshot_id)
custom_properties["manifest-list"] = table.current_snapshot().manifest_list
dataset_properties = DatasetPropertiesClass(
name=table.name()[-1],
tags=[],
description=table.metadata.properties.get("comment", None),
customProperties=custom_properties,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
spark-iceberg:
image: tabulario/spark-iceberg:3.3.2_1.3.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
{
"com.linkedin.pegasus2avro.dataset.DatasetProperties": {
"name": "another_taxis",
"customProperties": {
"owner": "root",
"created-at": "2024-06-27T17:29:32.492204247Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
{
"com.linkedin.pegasus2avro.dataset.DatasetProperties": {
"name": "taxis",
"customProperties": {
"owner": "root",
"created-at": "2024-05-22T14:08:04.001538500Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
{
"com.linkedin.pegasus2avro.dataset.DatasetProperties": {
"name": "taxis",
"customProperties": {
"owner": "root",
"created-at": "2024-05-22T14:10:22.926080700Z",
Expand Down

0 comments on commit ebcce1f

Please sign in to comment.