-
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
Add dataset ownership metadata collection #3
Merged
Conversation
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
StringBuilder execCmd = new StringBuilder(""); | ||
execCmd.append("cd " + remoteDir + ";"); | ||
execCmd.append("javac " + JAVA_FILE_NAME + JAVA_EXT + ";"); | ||
execCmd.append("java -cp " + CLASSPATH + " " + JAVA_FILE_NAME + " \"" + hiveQuery + "\" " + OUTPUT_FILE_NAME + ";"); |
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.
As we discussed, it may be better to copy a file to remote, then execute that sql file to avoid escape problem.
In production mode, will read sql from database and store into local file, then do the same steps.
changes that fix escaping issue have been committed. |
SunZhaonan
added a commit
that referenced
this pull request
Dec 10, 2015
Add dataset ownership metadata collection
Closed
hsheth2
referenced
this pull request
in hsheth2/datahub
Feb 16, 2021
* Add codegen * New architecture + setup file -> console pipeline * Cleanup source loader * Basic Kafka metadata source * Kafka source and extractor * Add kwargs construct interface * Fix kafka source unit test * start working on pipeline test * kafka datahub sink * Make myself a profile * Ingest to datahub from kafka * Update codegen * Add restli transport * Fix bug in restli conversion
hsheth2
referenced
this pull request
in hsheth2/datahub
Feb 16, 2021
* Add codegen * New architecture + setup file -> console pipeline * Cleanup source loader * Basic Kafka metadata source * Kafka source and extractor * Add kwargs construct interface * Fix kafka source unit test * start working on pipeline test * kafka datahub sink * Make myself a profile * Ingest to datahub from kafka * Update codegen * Add restli transport * Fix bug in restli conversion
shirshanka
pushed a commit
that referenced
this pull request
Feb 16, 2021
* Add codegen * New architecture + setup file -> console pipeline * Cleanup source loader * Basic Kafka metadata source * Kafka source and extractor * Add kwargs construct interface * Fix kafka source unit test * start working on pipeline test * kafka datahub sink * Make myself a profile * Ingest to datahub from kafka * Update codegen * Add restli transport * Fix bug in restli conversion
Masterchen09
pushed a commit
to Masterchen09/datahub
that referenced
this pull request
Jul 14, 2022
5 tasks
5 tasks
RyanHolstien
pushed a commit
to RyanHolstien/datahub
that referenced
this pull request
Apr 13, 2023
…luent-schema-registry fix spring dep issues
aabharti-visa
pushed a commit
to aabharti-visa/datahub
that referenced
this pull request
Feb 5, 2024
…utes-v1 business-attribute: Created initial version of Business Attribute Scr…
jeff-xu-z
pushed a commit
to jeff-xu-z/datahub
that referenced
this pull request
Mar 25, 2024
[DPOE-22223] use dev & public artifactory for public images
5 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fix bugs and add dataset ownership metadata collection for hdfs