forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ingest): connector for Neo4j (datahub-project#11526)
Co-authored-by: kbartlett <[email protected]> Co-authored-by: Andrew Sikowitz <[email protected]> Co-authored-by: Jay Feldman <[email protected]> Co-authored-by: Harshal Sheth <[email protected]> Co-authored-by: Mayuri Nehate <[email protected]> Co-authored-by: Shirshanka Das <[email protected]> Co-authored-by: deepgarg-visa <[email protected]> Co-authored-by: Felix Lüdin <[email protected]>
- Loading branch information
1 parent
a31c88e
commit dc87b51
Showing
11 changed files
with
612 additions
and
0 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,20 @@ | ||
## 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 | ||
|
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,12 @@ | ||
source: | ||
type: 'neo4j' | ||
config: | ||
uri: 'neo4j+ssc://host:7687' | ||
username: 'neo4j' | ||
password: 'password' | ||
env: 'PROD' | ||
|
||
sink: | ||
type: "datahub-rest" | ||
config: | ||
server: 'http://localhost:8080' |
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
Empty file.
Oops, something went wrong.