-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OL facets - PR1 - create & feed new tables while not reading them
Signed-off-by: Pawel Leszczynski <leszczynski.pawel@gmail.com>
- Loading branch information
1 parent
9a481bd
commit 3b63ae1
Showing
32 changed files
with
1,580 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
/* | ||
* Copyright 2018-2022 contributors to the Marquez project | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package marquez.db; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import java.time.Instant; | ||
import java.util.Spliterator; | ||
import java.util.Spliterators; | ||
import java.util.UUID; | ||
import java.util.stream.StreamSupport; | ||
import lombok.NonNull; | ||
import marquez.common.Utils; | ||
import marquez.service.models.LineageEvent; | ||
import org.jdbi.v3.sqlobject.statement.SqlUpdate; | ||
import org.jdbi.v3.sqlobject.transaction.Transaction; | ||
import org.postgresql.util.PGobject; | ||
|
||
/** The DAO for {@code dataset} facets. */ | ||
public interface DatasetFacetsDao { | ||
/* An {@code enum} used ... */ | ||
enum Type { | ||
DATASET, | ||
INPUT, | ||
OUTPUT, | ||
UNKNOWN; | ||
} | ||
|
||
/* An {@code enum} used to determine the dataset facet. */ | ||
enum DatasetFacet { | ||
DOCUMENTATION(Type.DATASET, "documentation"), | ||
DESCRIPTION(Type.DATASET, "description"), | ||
SCHEMA(Type.DATASET, "schema"), | ||
DATASOURCE(Type.DATASET, "dataSource"), | ||
LIFECYCLE_STATE_CHANGE(Type.DATASET, "lifecycleStateChange"), | ||
VERSION(Type.DATASET, "version"), | ||
COLUMN_LINEAGE(Type.DATASET, "columnLineage"), | ||
OWNERSHIP(Type.DATASET, "ownership"), | ||
DATA_QUALITY_METRICS(Type.INPUT, "dataQualityMetrics"), | ||
DATA_QUALITY_ASSERTIONS(Type.INPUT, "dataQualityAssertions"), | ||
OUTPUT_STATISTICS(Type.OUTPUT, "outputStatistics"); | ||
|
||
final Type type; | ||
final String name; | ||
|
||
DatasetFacet(@NonNull final Type type, @NonNull final String name) { | ||
this.type = type; | ||
this.name = name; | ||
} | ||
|
||
Type getType() { | ||
return type; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
/** ... */ | ||
public static Type typeFromName(@NonNull final String name) { | ||
for (final DatasetFacet facet : DatasetFacet.values()) { | ||
if (facet.getName().equalsIgnoreCase(name)) { | ||
return facet.getType(); | ||
} | ||
} | ||
return Type.UNKNOWN; | ||
} | ||
} | ||
|
||
/** | ||
* @param uuid | ||
* @param createdAt | ||
* @param datasetUuid | ||
* @param runUuid | ||
* @param lineageEventTime | ||
* @param lineageEventType | ||
* @param type | ||
* @param name | ||
* @param facet | ||
*/ | ||
@SqlUpdate( | ||
""" | ||
INSERT INTO dataset_facets ( | ||
uuid, | ||
created_at, | ||
dataset_uuid, | ||
run_uuid, | ||
lineage_event_time, | ||
lineage_event_type, | ||
type, | ||
name, | ||
facet | ||
) VALUES ( | ||
:uuid, | ||
:createdAt, | ||
:datasetUuid, | ||
:runUuid, | ||
:lineageEventTime, | ||
:lineageEventType, | ||
:type, | ||
:name, | ||
:facet | ||
) | ||
""") | ||
void insertDatasetFacet( | ||
UUID uuid, | ||
Instant createdAt, | ||
UUID datasetUuid, | ||
UUID runUuid, | ||
Instant lineageEventTime, | ||
String lineageEventType, | ||
Type type, | ||
String name, | ||
PGobject facet); | ||
|
||
/** | ||
* @param datasetUuid | ||
* @param runUuid | ||
* @param lineageEventTime | ||
* @param lineageEventType | ||
* @param datasetFacets | ||
*/ | ||
@Transaction | ||
default void insertDatasetFacetsFor( | ||
@NonNull UUID datasetUuid, | ||
@NonNull UUID runUuid, | ||
@NonNull Instant lineageEventTime, | ||
@NonNull String lineageEventType, | ||
@NonNull LineageEvent.DatasetFacets datasetFacets) { | ||
final Instant now = Instant.now(); | ||
|
||
JsonNode jsonNode = Utils.getMapper().valueToTree(datasetFacets); | ||
StreamSupport.stream( | ||
Spliterators.spliteratorUnknownSize(jsonNode.fieldNames(), Spliterator.DISTINCT), false) | ||
.forEach( | ||
fieldName -> | ||
insertDatasetFacet( | ||
UUID.randomUUID(), | ||
now, | ||
datasetUuid, | ||
runUuid, | ||
lineageEventTime, | ||
lineageEventType, | ||
DatasetFacet.typeFromName(fieldName), | ||
fieldName, | ||
FacetUtils.toPgObject(fieldName, jsonNode.get(fieldName)))); | ||
} | ||
|
||
record DatasetFacetRow( | ||
UUID uuid, | ||
Instant createdAt, | ||
UUID datasetUuid, | ||
UUID runUuid, | ||
Instant lineageEventTime, | ||
String lineageEventType, | ||
DatasetFacetsDao.Type type, | ||
String name, | ||
PGobject facet) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2018-2022 contributors to the Marquez project | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package marquez.db; | ||
|
||
import com.fasterxml.jackson.databind.node.ObjectNode; | ||
import lombok.NonNull; | ||
import marquez.common.Utils; | ||
import org.postgresql.util.PGobject; | ||
|
||
public class FacetUtils { | ||
|
||
static ObjectNode asJson(@NonNull final String facetName, @NonNull Object facetValue) { | ||
final ObjectNode facetAsJson = Utils.getMapper().createObjectNode(); | ||
facetAsJson.putPOJO(facetName, facetValue); | ||
return facetAsJson; | ||
} | ||
|
||
static PGobject toPgObject(String name, Object o) { | ||
return Columns.toPgObject(asJson(name, o)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* | ||
* Copyright 2018-2022 contributors to the Marquez project | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package marquez.db; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import java.time.Instant; | ||
import java.util.Spliterator; | ||
import java.util.Spliterators; | ||
import java.util.UUID; | ||
import java.util.stream.StreamSupport; | ||
import lombok.NonNull; | ||
import marquez.common.Utils; | ||
import marquez.service.models.LineageEvent; | ||
import org.jdbi.v3.sqlobject.statement.SqlUpdate; | ||
import org.jdbi.v3.sqlobject.transaction.Transaction; | ||
import org.postgresql.util.PGobject; | ||
|
||
/** The DAO for {@code job} facets. */ | ||
public interface JobFacetsDao { | ||
|
||
@SqlUpdate( | ||
""" | ||
INSERT INTO job_facets ( | ||
uuid, | ||
created_at, | ||
job_uuid, | ||
run_uuid, | ||
lineage_event_time, | ||
lineage_event_type, | ||
name, | ||
facet | ||
) VALUES ( | ||
:uuid, | ||
:createdAt, | ||
:jobUuid, | ||
:runUuid, | ||
:lineageEventTime, | ||
:lineageEventType, | ||
:name, | ||
:facet | ||
) | ||
""") | ||
void insertJobFacet( | ||
UUID uuid, | ||
Instant createdAt, | ||
UUID jobUuid, | ||
UUID runUuid, | ||
Instant lineageEventTime, | ||
String lineageEventType, | ||
String name, | ||
PGobject facet); | ||
|
||
@Transaction | ||
default void insertJobFacetsFor( | ||
@NonNull UUID jobUuid, | ||
@NonNull UUID runUuid, | ||
@NonNull Instant lineageEventTime, | ||
@NonNull String lineageEventType, | ||
@NonNull LineageEvent.JobFacet jobFacet) { | ||
final Instant now = Instant.now(); | ||
|
||
JsonNode jsonNode = Utils.getMapper().valueToTree(jobFacet); | ||
StreamSupport.stream( | ||
Spliterators.spliteratorUnknownSize(jsonNode.fieldNames(), Spliterator.DISTINCT), false) | ||
.forEach( | ||
fieldName -> | ||
insertJobFacet( | ||
UUID.randomUUID(), | ||
now, | ||
jobUuid, | ||
runUuid, | ||
lineageEventTime, | ||
lineageEventType, | ||
fieldName, | ||
FacetUtils.toPgObject(fieldName, jsonNode.get(fieldName)))); | ||
} | ||
|
||
record JobFacetRow( | ||
UUID uuid, | ||
Instant createdAt, | ||
UUID jobUuid, | ||
UUID runUuid, | ||
Instant lineageEventTime, | ||
String lineageEventType, | ||
String name, | ||
PGobject facet) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.