-
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): add stateful ingestion support to looker and lookml source #6443
feat(ingest): add stateful ingestion support to looker and lookml source #6443
Conversation
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.
some minor things but overall looking good
metadata-ingestion/src/datahub/ingestion/source/state/looker_state.py
Outdated
Show resolved
Hide resolved
metadata-ingestion/src/datahub/ingestion/source/looker/looker_source.py
Outdated
Show resolved
Hide resolved
Pending - - refractor common test methods , move to test_helpers - lookml source stateful ingestion - update stateful ingestion doc to include improved simpler impl details
7fbea59
to
0f20d2d
Compare
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.
LGTM!
raise ConfigurationError("Looker Source doesn't support platform instances") | ||
def platform_instance_not_supported(cls, v: Optional[str]) -> Optional[str]: | ||
if v is not None: | ||
raise ConfigurationError("Looker Source doesn't support platform instances") |
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.
In the future, we should raise value error here instead
Checklist