-
Notifications
You must be signed in to change notification settings - Fork 1k
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
HBaseInputFormat tests and fix #1269
base: titan11
Are you sure you want to change the base?
Conversation
Hi @sjudeng, thanks for your contribution! In order for us to evaluate and accept your PR, we ask that you sign a contribution license agreement. It's all electronic and will take just minutes. |
You might want to check pull request 1218 which makes the same changes plus cleans up a lot of old Titan back level support. |
Thanks @graben1437. I'm having trouble testing on that branch. See question in #1218. |
@graben1437, unfortunately issue #1268 is not resolved in #1218. To reproduce the error, you can cherry pick the first commit from this PR, which adds HBaseInputFormat tests. git remote add graben1437 https://github.com/graben1437/titan.git
git fetch graben1437
git checkout hbase-support1
git merge titan11
git remote add ngageoint https://github.com/ngageoint/titan.git
git fetch ngageoint
git cherry-pick 4b163aa4c7a253052f6090d94e0be6caf4e316fa
mvn clean install -DskipTests
mvn verify -Phadoop2 -Dit.test="**/HBaseInputFormatIT.java" -DfailIfNoTests=false -rf :titan-hadoop-2
The error is resolved in the second commit in this PR. git cherry-pick 30c59eaaee5929c46f02353aef12554ea952a9dd
mvn clean install -DskipTests
mvn verify -Phadoop2 -Dit.test="**/HBaseInputFormatIT.java" -DfailIfNoTests=false -rf :titan-hadoop-2
|
Reproduce and resolve issue #1268.