-
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
fix(ingest/dremio): Dremio software jobs retrieval SQL query fix query error #11817
fix(ingest/dremio): Dremio software jobs retrieval SQL query fix query error #11817
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.
Adding a comment as to inconsistent type of queries_datasets
across cloud and software would help for future readers.
Added comment on dremio_sql_queries.py pointing to incorrect documentation. |
I'm using Dremio Cloud and I have sqlglot parsing errors because : For point 1, Dremio is using double quotes instead of backquotes around folders name in the from part of the queries I was able to stop sqlglot errors by using modified VIEW_DEFINITION and query column in the metadata-ingestion/src/datahub/ingestion/source/dremio/dremio_sql_queries.py file. Before: After: Same for the sys.project.history.jobs, replacing : by These change replace all doublequotes by backquotes and remove AT BRANCH MAIN (case insensitives). Can these changes be implemented and I'll be more than happy to test if you tell me how. Cheers, |
…y error (datahub-project#11817) Co-authored-by: Mayuri Nehate <33225191+mayurinehate@users.noreply.github.com>
Checklist