-
Notifications
You must be signed in to change notification settings - Fork 130
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 Hbase Support #211
Add Hbase Support #211
Conversation
@rmfitzpatrick This is ready for a review whenever you get a second. |
# HBASE_ROOT_LOGGER=INFO,DRFA | ||
# The reason for changing default to RFA is to avoid the boundary case of filling out disk space as | ||
# DRFA doesn't put any cap on the log size. Please refer to HBase-5655 for more context. | ||
export HBASE_JMX_BASE="-Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false" |
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.
Ah didn't realize the Dockerfile was only for setting environment variables - does it work to use .withEnv
in the testcontainers command instead of having a separate file? That'll keep things simple. If it's not possible though then this is fine too
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.
This overwrites an environment file that is already there so we can't just set the environment variables.
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.
thanks!
Description:
Add Support for Hbase.
Testing:
Add Integration test for hbase
Documentation:
Updated list of supported Tech.
Add hbase doc.