mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-19 06:38:04 +00:00

Co-authored-by: kbartlett <keith.bartlett@fullsight.org> Co-authored-by: Andrew Sikowitz <andrew.sikowitz@acryl.io> Co-authored-by: Jay Feldman <8128360+feldjay@users.noreply.github.com> Co-authored-by: Harshal Sheth <hsheth2@gmail.com> Co-authored-by: Mayuri Nehate <33225191+mayurinehate@users.noreply.github.com> Co-authored-by: Shirshanka Das <shirshanka@apache.org> Co-authored-by: deepgarg-visa <149145061+deepgarg-visa@users.noreply.github.com> Co-authored-by: Felix Lüdin <13187726+Masterchen09@users.noreply.github.com>
21 lines
787 B
Markdown
21 lines
787 B
Markdown
## Integration Details
|
|
|
|
<!-- Plain-language description of what this integration is meant to do. -->
|
|
<!-- Include details about where metadata is extracted from (ie. logs, source API, manifest, etc.) -->
|
|
Neo4j metadata will be ingested into DataHub using
|
|
`CALL apoc.meta.schema() YIELD value UNWIND keys(value) AS key RETURN key, value[key] AS value;`
|
|
The data that is returned will be parsed
|
|
and will be displayed as Nodes and Relationships in DataHub. Each object will be tagged with describing what kind of DataHub
|
|
object it is. The defaults are 'Node' and 'Relationship'. These tag values can be overwritten in the recipe.
|
|
|
|
|
|
|
|
## Metadata Ingestion Quickstart
|
|
|
|
### Prerequisites
|
|
|
|
In order to ingest metadata from Neo4j, you will need:
|
|
|
|
* Neo4j instance with APOC installed
|
|
|