[jira] [Updated] (HBASE-23055) Alter hbase:meta

2020-01-14 Thread Michael Stack (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Stack updated HBASE-23055:
--
Release Note: 
Adds being able to edit hbase:meta table schema. For example,

hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds

You can even add columnfamilies. Howevert, you cannot delete any of the core 
hbase:meta column families such as 'info' and 'table'.

  was:
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Queries of hbase:meta table state go via a new addition to the HBase Registry. 
Default implementation is for hbase:meta table to be ENABLED. Adds an 
implementation to ZKAsyncRegistry that queries zk mirrored table state (See 
MirroringTableStateManager). If Master crashes while hbase:meta is disabled, on 
new Master, hbase:meta will be enabled again.

Known issues are: is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done); when hbase:meta is offline, 
other requests to meta will fail(no duh!). This feature will add some load to 
the zk ensemble as it now fields requests for hbase:meta table state (mitigated 
some by a cache of table state added to Connection).


> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>  Components: meta
>Reporter: Michael Stack
>Assignee: Michael Stack
>Priority: Major
> Fix For: 3.0.0, 2.3.0
>
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (HBASE-23055) Alter hbase:meta

2020-01-11 Thread Duo Zhang (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Duo Zhang updated HBASE-23055:
--
Component/s: meta

> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>  Components: meta
>Reporter: Michael Stack
>Assignee: Michael Stack
>Priority: Major
> Fix For: 3.0.0, 2.3.0
>
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (HBASE-23055) Alter hbase:meta

2020-01-07 Thread Michael Stack (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Stack updated HBASE-23055:
--
Release Note: 
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Queries of hbase:meta table state go via a new addition to the HBase Registry. 
Default implementation is for hbase:meta table to be ENABLED. Adds an 
implementation to ZKAsyncRegistry that queries zk mirrored table state (See 
MirroringTableStateManager). If Master crashes while hbase:meta is disabled, on 
new Master, hbase:meta will be enabled again.

Known issues are: is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done); when hbase:meta is offline, 
other requests to meta will fail(no duh!). This feature will add some load to 
the zk ensemble as it now fields requests for hbase:meta table state (mitigated 
some by a cache of table state added to Connection).

  was:
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Queries of hbase:meta table state go via a new addition to the HBase Registry. 
Default implementation is for hbase:meta table to be ENABLED. Adds an 
implementation to ZKAsyncRegistry that queries zk mirrored table state (See 
MirroringTableStateManager).

Known issue is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done). When hbase:meta is offline, 
other requests to meta will fail. If Master crashes while hbase:meta is 
disabled, on new Master, hbase:meta will be enabled again.


> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>Reporter: Michael Stack
>Assignee: Michael Stack
>Priority: Major
> Fix For: 3.0.0, 2.3.0
>
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (HBASE-23055) Alter hbase:meta

2020-01-06 Thread Michael Stack (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Stack updated HBASE-23055:
--
Release Note: 
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Queries of hbase:meta table state go via a new addition to the HBase Registry. 
Default implementation is for hbase:meta table to be ENABLED. Adds an 
implementation to ZKAsyncRegistry that queries zk mirrored table state (See 
MirroringTableStateManager).

Known issue is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done). When hbase:meta is offline, 
other requests to meta will fail. If Master crashes while hbase:meta is 
disabled, on new Master, hbase:meta will be enabled again.

  was:
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Known issue is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done). When hbase:meta is offline, 
other requests to meta will fail. If Master crashes while hbase:meta is 
disabled, on new Master, hbase:meta will be enabled again.

Also has queries of table state go via the Master now since it knows status for 
user-space and system-space tables. Previous it would ask the RS carrying 
hbase:meta directly; i.e. client presumed implementation.


> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>Reporter: Michael Stack
>Assignee: Michael Stack
>Priority: Major
> Fix For: 3.0.0, 2.3.0
>
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (HBASE-23055) Alter hbase:meta

2020-01-06 Thread Michael Stack (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Stack updated HBASE-23055:
--
Fix Version/s: 2.3.0

> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>Reporter: Michael Stack
>Assignee: Michael Stack
>Priority: Major
> Fix For: 3.0.0, 2.3.0
>
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (HBASE-23055) Alter hbase:meta

2019-10-01 Thread Michael Stack (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Stack updated HBASE-23055:
--
Fix Version/s: (was: 2.3.0)

> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>Reporter: Michael Stack
>Assignee: Michael Stack
>Priority: Major
> Fix For: 3.0.0
>
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (HBASE-23055) Alter hbase:meta

2019-09-27 Thread Michael Stack (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Stack updated HBASE-23055:
--
Release Note: 
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Known issue is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done). When hbase:meta is offline, 
other requests to meta will fail. If Master crashes while hbase:meta is 
disabled, on new Master, hbase:meta will be enabled again.

Also has queries of table state go via the Master now since it knows status for 
user-space and system-space tables. Previous it would ask the RS carrying 
hbase:meta directly; i.e. client presumed implementation.

  was:
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Known issue is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done). When hbase:meta is offline, 
other requests to meta will fail. If Master crashes while hbase:meta is 
disabled, on new Master, hbase:meta will be enabled again.


> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>Reporter: Michael Stack
>Assignee: Michael Stack
>Priority: Major
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (HBASE-23055) Alter hbase:meta

2019-09-23 Thread stack (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-23055:
--
Release Note: 
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Known issue is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done). When hbase:meta is offline, 
other requests to meta will fail. If Master crashes while hbase:meta is 
disabled, on new Master, hbase:meta will be enabled again.

  was:
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Known issue is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done). When hbase:meta is offline, 
other requests to meta will fail. If Master crashes while hbase:meta is 
disabled, on new 


> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>Reporter: stack
>Priority: Major
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (HBASE-23055) Alter hbase:meta

2019-09-23 Thread stack (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-23055?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-23055:
--
Release Note: 
Adds being able to edit hbase:meta table schema. For example,

hbase(main):005:0> disable 'hbase:meta'
Took 0.7362 seconds
hbase(main):006:0> alter 'hbase:meta', {NAME => 'info', DATA_BLOCK_ENCODING => 
'ROW_INDEX_V1'}
Updating all regions with the new schema...
All regions updated.
Done.
Took 1.2138 seconds
hbase(main):007:0> enable 'hbase:meta'
Took 0.7370 seconds

Known issue is if you try to describe tables while hbase:meta is offline, 
you'll get scanner timeout as we read all table descriptors even if we only 
want one (TODO: refactor how descriptor is done). When hbase:meta is offline, 
other requests to meta will fail. If Master crashes while hbase:meta is 
disabled, on new 

> Alter hbase:meta
> 
>
> Key: HBASE-23055
> URL: https://issues.apache.org/jira/browse/HBASE-23055
> Project: HBase
>  Issue Type: Task
>Reporter: stack
>Priority: Major
>
> hbase:meta is currently hardcoded. Its schema cannot be change.
> This issue is about allowing edits to hbase:meta schema. It will allow our 
> being able to set encodings such as the block-with-indexes which will help 
> quell CPU usage on host carrying hbase:meta. A dynamic hbase:meta is first 
> step on road to being able to split meta.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)