Skip to content

Commit ddf8630

Browse files
committed
Merge branch 'feature/metadata-cmd' of github.com:MarquezProject/marquez into feature/metadata-cmd
2 parents f0f65cf + b6a21ec commit ddf8630

3 files changed

Lines changed: 845 additions & 832 deletions

File tree

chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ postgresql:
107107
## @param image.tag PostgreSQL image tag (immutable tags are recommended)
108108
##
109109
image:
110-
tag: 0.25.0
110+
tag: 12.1.0
111111
## Authentication parameters
112112
## ref: https://github.com/bitnami/bitnami-docker-postgresql/blob/master/README.md#setting-the-root-password-on-first-run
113113
## ref: https://github.com/bitnami/bitnami-docker-postgresql/blob/master/README.md#creating-a-database-on-first-run

docs/openapi.html

Lines changed: 833 additions & 824 deletions
Large diffs are not rendered by default.

spec/openapi.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,9 @@ components:
697697
schema:
698698
type: string
699699
example: dataset:food_delivery:public.delivery_7_days
700-
description: The ID of the node.
700+
description: The ID of the node. A node can either be a dataset node or a job node. The format of
701+
nodeId for dataset is `dataset:<namespace_of_dataset>:<name_of_the_dataset>` and for job is
702+
`job:<namespace_of_the_job>:<name_of_the_job>`.
701703
required: true
702704

703705
depth:
@@ -850,7 +852,7 @@ components:
850852
$ref: '#/components/schemas/Source'
851853

852854
DatasetType:
853-
type: enum
855+
type: string
854856
enum: [DB_TABLE, STREAM]
855857
description: The type of dataset
856858

@@ -1256,7 +1258,7 @@ components:
12561258
$ref: '#/components/schemas/Tag'
12571259

12581260
JobType:
1259-
type: enum
1261+
type: string
12601262
enum: [BATCH, STREAM, SERVICE]
12611263
description: The type of the job.
12621264

@@ -1690,7 +1692,7 @@ components:
16901692
$ref: '#/components/schemas/GraphEdge'
16911693

16921694
NodeType:
1693-
type: enum
1695+
type: string
16941696
enum: [ JOB, DATASET ]
16951697
description: The type of the diff node.
16961698

@@ -1768,11 +1770,13 @@ components:
17681770
example: food_delivery
17691771
nodeId:
17701772
type: string
1771-
description: The ID of the dataset or job node.
1772-
example: dataset:food_delivery:public.delivery_7_days
1773+
description: The ID of the node. A node can either be a dataset node or a job node. The format of
1774+
nodeId for dataset is `dataset:<namespace_of_dataset>:<name_of_the_dataset>` and for job is
1775+
`job:<namespace_of_the_job>:<name_of_the_job>`.
1776+
example: 'dataset:food_delivery:public.delivery_7_days'
17731777

17741778
SearchResultType:
1775-
type: enum
1779+
type: string
17761780
enum: [DATASET, JOB]
17771781
description: The type of search result.
17781782
example: DATASET

0 commit comments

Comments
 (0)