File tree Expand file tree Collapse file tree 3 files changed +2
-10
lines changed
deploy/helm/hbase-operator/crds
operator-binary/src/config Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -688,9 +688,6 @@ spec:
688
688
description : Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details.
689
689
nullable : true
690
690
type : string
691
- hbaseOpts :
692
- nullable : true
693
- type : string
694
691
hbaseRootdir :
695
692
nullable : true
696
693
type : string
@@ -969,9 +966,6 @@ spec:
969
966
description : Time period Pods have to gracefully shut down, e.g. `30m`, `1h` or `2d`. Consult the operator documentation for details.
970
967
nullable : true
971
968
type : string
972
- hbaseOpts :
973
- nullable : true
974
- type : string
975
969
hbaseRootdir :
976
970
nullable : true
977
971
type : string
Original file line number Diff line number Diff line change @@ -424,7 +424,6 @@ impl AnyConfigFragment {
424
424
HbaseRole :: RegionServer => {
425
425
AnyConfigFragment :: RegionServer ( RegionServerConfigFragment {
426
426
hbase_rootdir : None ,
427
- hbase_opts : None ,
428
427
resources : default_resources ( role) ,
429
428
logging : product_logging:: spec:: default_logging ( ) ,
430
429
affinity : get_affinity ( cluster_name, role, hdfs_discovery_cm_name) ,
@@ -666,8 +665,6 @@ impl Atomic for RegionMoverExtraCliOpts {}
666
665
pub struct RegionServerConfig {
667
666
#[ serde( default , skip_serializing_if = "Option::is_none" ) ]
668
667
pub hbase_rootdir : Option < String > ,
669
- #[ serde( default , skip_serializing_if = "Option::is_none" ) ]
670
- pub hbase_opts : Option < String > ,
671
668
#[ fragment_attrs( serde( default ) ) ]
672
669
pub resources : Resources < HbaseStorageConfig , NoRuntimeLimits > ,
673
670
#[ fragment_attrs( serde( default ) ) ]
Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ pub fn construct_global_jvm_args(kerberos_enabled: bool) -> String {
46
46
jvm_args. join ( " " )
47
47
}
48
48
49
- /// Arguments that go into `HBASE_OPTS`, so *not* the heap settings (which go into `HBASE_HEAPSIZE`).
49
+ /// JVM arguments that are specifically for the role (server), so will *not* be used e.g. by CLI tools.
50
+ /// Heap settings are excluded, as they go into `HBASE_HEAPSIZE`.
50
51
pub fn construct_role_specific_non_heap_jvm_args (
51
52
hbase : & HbaseCluster ,
52
53
hbase_role : & HbaseRole ,
You can’t perform that action at this time.
0 commit comments