-
-
Notifications
You must be signed in to change notification settings - Fork 4
feat(regionserver): add graceful shutdown configuration #570
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
Conversation
Extract region configuration into it's own structure. Refactor the lib and controller modules to work with the new structure in a slightly generic way.
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.
Partial review
docs/modules/hbase/pages/usage-guide/operations/graceful-shutdown.adoc
Outdated
Show resolved
Hide resolved
…own.adoc Co-authored-by: Nick <[email protected]>
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
Updated and it now requires stackabletech/docker-images#974 |
Co-authored-by: Siegfried Weber <[email protected]>
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
Thanks! |
hbaseOpts: | ||
nullable: true | ||
type: string |
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.
I think this should not be added again (applies to all roles).
#620 removed it, can you please remove it again?
|
||
/// JVM arguments that specifically for the role (server), so will *not* be used e.g. by CLI tools | ||
fn construct_role_specific_jvm_args( | ||
/// Arguments that go into `HBASE_OPTS`, so *not* the heap settings (which go into `HBASE_HEAPSIZE`). |
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.
Actually they are role specific, so they do not go into HBASE_OPTS.
Instead they go into HBASE_MASTER_OPTS
and others
Maybe something like
/// JVM arguments that are specifically for the role (server), so will *not* be used e.g. by CLI tools.
/// Heap settings are excluded, as they go into `HBASE_HEAPSIZE`.
Description
part of: #508
requires: stackabletech/docker-images#898
Implementation for "approach B" in https://github.com/stackabletech/decisions/issues/30
Definition of Done Checklist