From d50e155b1b07775a30a13f1ee5b3516946d05bc3 Mon Sep 17 00:00:00 2001 From: harshsoni2024 <64592571+harshsoni2024@users.noreply.github.com> Date: Mon, 30 Jun 2025 14:23:51 +0530 Subject: [PATCH] add parquet alternate filetypes in table fileformat (#22027) --- .../src/main/resources/json/schema/entity/data/table.json | 2 +- .../src/main/resources/ui/src/generated/entity/data/table.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/openmetadata-spec/src/main/resources/json/schema/entity/data/table.json b/openmetadata-spec/src/main/resources/json/schema/entity/data/table.json index b1e84845106..3eb8797617d 100644 --- a/openmetadata-spec/src/main/resources/json/schema/entity/data/table.json +++ b/openmetadata-spec/src/main/resources/json/schema/entity/data/table.json @@ -955,7 +955,7 @@ "fileFormat": { "description": "File format in case of file/datalake tables.", "type": "string", - "enum": ["csv", "tsv", "avro", "parquet", "json", "json.gz", "json.zip", "jsonl", "jsonl.gz", "jsonl.zip"] + "enum": ["csv", "tsv", "avro", "parquet", "pq", "pqt", "parq", "parquet.snappy", "json", "json.gz", "json.zip", "jsonl", "jsonl.gz", "jsonl.zip"] } }, "properties": { diff --git a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/table.ts b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/table.ts index 60cfe7dbd51..5e6430482c4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/table.ts +++ b/openmetadata-ui/src/main/resources/ui/src/generated/entity/data/table.ts @@ -873,7 +873,11 @@ export enum FileFormat { Jsonl = "jsonl", JsonlGz = "jsonl.gz", JsonlZip = "jsonl.zip", + Parq = "parq", Parquet = "parquet", + ParquetSnappy = "parquet.snappy", + Pq = "pq", + Pqt = "pqt", Tsv = "tsv", }