Skip to content

Commit

Permalink
Add in latest UI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Jun 2, 2024
1 parent 65a7bc5 commit 8cfbaef
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions docs/sample/ui/configuration-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -888,6 +888,53 @@ dataSourcePropertiesMap.set("http", {
},
}
});
dataSourcePropertiesMap.set("iceberg", {
optGroupLabel: "Data Source",
Name: "Iceberg",
properties: {
catalogType: {
displayName: "Catalog Type",
default: "hadoop",
type: "text",
choice: ["hadoop", "glue", "hive", "jdbc", "nessie", "rest"],
help: "Catalog Type for Iceberg metadata.",
required: ""
},
path: {
displayName: "Warehouse Path",
default: "/tmp/generated-data/iceberg",
type: "text",
help: "File pathway to Iceberg warehouse.",
},
catalogUri: {
displayName: "Catalog URI",
default: "",
type: "text",
help: "Catalog URI for Iceberg metadata."
},
table: {
displayName: "Table Name",
default: "",
type: "text",
help: "Table name for Iceberg dataset (format: [database name].[table name]).",
override: "true"
},
partitions: {
displayName: "Num Partitions",
default: "1",
type: "number",
help: "Number of file partitions.",
override: "true"
},
partitionBy: {
displayName: "Partition By",
default: "",
type: "text",
help: "Column name(s) to partition by (comma separated).",
override: "true"
}
}
});
dataSourcePropertiesMap.set("json", {
optGroupLabel: "Data Source",
Name: "JSON",
Expand Down

0 comments on commit 8cfbaef

Please sign in to comment.