-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ingest): support knowledge links in business glossary #6375
Merged
hsheth2
merged 12 commits into
datahub-project:master
from
siddiquebagwan:master+knowledge_links
Dec 7, 2022
Merged
Changes from 4 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7d3b776
add business glossary improvements, delete children
shirshanka 0b7c64c
improvements
siddiquebagwan-gslab 7f062ea
support knowledge_links in node
siddiquebagwan-gslab 0b5b007
from master
siddiquebagwan-gslab 115eb5e
Merge branch 'master' into master+knowledge_links
siddiquebagwan-gslab afd34d1
Merge branch 'master' into master+knowledge_links
siddiquebagwan-gslab f80eac0
review comment
siddiquebagwan-gslab 8bc28cf
Merge branch 'master+knowledge_links' of github.com:acryldata/datahub…
siddiquebagwan-gslab 564c8b2
Merge branch 'master' into master+knowledge_links
siddiquebagwan-gslab b6c9e9a
Merge branch 'master+knowledge_links' of github.com:acryldata/datahub…
siddiquebagwan-gslab cd74473
fix code
hsheth2 98e35d3
fix bug
hsheth2 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
72 changes: 72 additions & 0 deletions
72
metadata-ingestion/tests/integration/business-glossary/business_glossary.yml
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,72 @@ | ||
version: 1 | ||
source: DataHub | ||
owners: | ||
users: | ||
- mjames | ||
url: "https://github.com/datahub-project/datahub/" | ||
nodes: | ||
- name: Classification | ||
description: A set of terms related to Data Classification | ||
knowledge_links: | ||
- label: Wiki link for classification | ||
url: "https://en.wikipedia.org/wiki/Classification" | ||
terms: | ||
- name: Sensitive | ||
description: Sensitive Data | ||
custom_properties: | ||
is_confidential: false | ||
knowledge_links: | ||
- label: Google Link | ||
url: "https://www.google.com" | ||
- name: Confidential | ||
description: Confidential Data | ||
custom_properties: | ||
is_confidential: true | ||
- name: Highly Confidential | ||
description: Highly Confidential Data | ||
custom_properties: | ||
is_confidential: true | ||
- name: Personal Information | ||
description: All terms related to personal information | ||
owners: | ||
users: | ||
- mjames | ||
terms: | ||
- name: Email | ||
description: An individual's email address | ||
inherits: | ||
- Classification.Confidential | ||
owners: | ||
groups: | ||
- Trust and Safety | ||
- name: Address | ||
description: A physical address | ||
- name: Gender | ||
description: The gender identity of the individual | ||
inherits: | ||
- Classification.Sensitive | ||
- name: Clients And Accounts | ||
description: Provides basic concepts such as account, account holder, account provider, relationship manager that are commonly used by financial services providers to describe customers and to determine counterparty identities | ||
owners: | ||
groups: | ||
- finance | ||
terms: | ||
- name: Account | ||
description: Container for records associated with a business arrangement for regular transactions and services | ||
term_source: "EXTERNAL" | ||
source_ref: FIBO | ||
source_url: "https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/ClientsAndAccounts/Account" | ||
inherits: | ||
- Classification.Highly Confidential | ||
contains: | ||
- Clients And Accounts.Balance | ||
- name: Balance | ||
description: Amount of money available or owed | ||
term_source: "EXTERNAL" | ||
source_ref: FIBO | ||
source_url: "https://spec.edmcouncil.org/fibo/ontology/FBC/ProductsAndServices/ClientsAndAccounts/Balance" | ||
- name: KPIs | ||
description: Common Business KPIs | ||
terms: | ||
- name: CSAT % | ||
description: Customer Satisfaction Score |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add to urn_encoder.py instead
You can add '%' to the
RESERVED_CHARS
var in that file (and also convert it from a list to a set)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done