From 87bec89f16b39f7fad55fc303e100256cf81b89d Mon Sep 17 00:00:00 2001 From: David Goss Date: Mon, 30 Oct 2023 09:23:14 +0000 Subject: [PATCH] Clarify Potgres dataset naming convention Per the spec (https://github.com/OpenLineage/OpenLineage/blob/main/spec/Naming.md#postgres), Postgres dataset names include schema (unlike MySQL which has no such concept). Signed-off-by: David Goss --- docs/spec/naming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/spec/naming.md b/docs/spec/naming.md index 00f0a0f58e..0390484565 100644 --- a/docs/spec/naming.md +++ b/docs/spec/naming.md @@ -14,7 +14,7 @@ A dataset, or `table`, is organized according to a producer, namespace, database | Producer | Namespace | Name | Example Namespace | Example Name | | -------- | --------- | ---- | ----------------- | ------------ | -| Postgres | postgres + host + port | database + table | postgres://db.foo.com:6543 | metrics.sales.orders | +| Postgres | postgres + host + port | database + schema + table | postgres://db.foo.com:6543 | metrics.sales.orders | | MySQL | mysql + host + port | database + table | mysql://db.foo.com:6543 | metrics.orders | | S3 | s3 + bucket | path | s3://sales-metrics | orders.csv | | GCS | gcs + bucket | path | gcs://sales-metrics | orders.csv |