[jira] [Created] (HBASE-17758) [RSGROUP] Add shell command to move servers and tables at the same time

2017-03-07 Thread Guangxu Cheng (JIRA)
Guangxu Cheng created HBASE-17758: - Summary: [RSGROUP] Add shell command to move servers and tables at the same time Key: HBASE-17758 URL: https://issues.apache.org/jira/browse/HBASE-17758 Project: HB

Re: What if I want to write another table in MasterObserver.preModifyColumnFamily ?

2017-03-07 Thread Anoop John
It will be cross server call.. The pre/postModifyColumn is in master side. (MasterObserver) You want to write the info to a table means this will be in some RS. So an RPC request will be needed. But still it is not a case like one RS to another RS cross server call where there is a remote chance

[jira] [Created] (HBASE-17757) Unify blocksize after encoding to decrease memory fragment

2017-03-07 Thread Allan Yang (JIRA)
Allan Yang created HBASE-17757: -- Summary: Unify blocksize after encoding to decrease memory fragment Key: HBASE-17757 URL: https://issues.apache.org/jira/browse/HBASE-17757 Project: HBase Issu

Re: What if I want to write another table in MasterObserver.preModifyColumnFamily ?

2017-03-07 Thread Xi Yang
Got it. I appreciate your help! 2017-03-07 17:05 GMT-08:00 Ted Yu : > It seems the following hook is better for your use case: > > default void postModifyColumn(final > ObserverContext ctx, > TableName tableName, HColumnDescriptor columnFamily) throws > IOException {} > > since there is n

Re: What if I want to write another table in MasterObserver.preModifyColumnFamily ?

2017-03-07 Thread Ted Yu
It seems the following hook is better for your use case: default void postModifyColumn(final ObserverContext ctx, TableName tableName, HColumnDescriptor columnFamily) throws IOException {} since there is no guarantee that column family is modified at time preModifyColumnFamily() is called

Re: What if I want to write another table in MasterObserver.preModifyColumnFamily ?

2017-03-07 Thread Xi Yang
Requirement: I want to record every change of modify columnFamily by using preModifyColumnFamily(). Now I have a table "my_ddl_log" which used to record the change of columnFamily. For example: If jack change the TTL of columnFamily "primary" in table "employee". Then we should add a put to "my_d

[jira] [Created] (HBASE-17756) We should have better introspection of HFiles

2017-03-07 Thread Esteban Gutierrez (JIRA)
Esteban Gutierrez created HBASE-17756: - Summary: We should have better introspection of HFiles Key: HBASE-17756 URL: https://issues.apache.org/jira/browse/HBASE-17756 Project: HBase Issue

[jira] [Created] (HBASE-17755) CellBasedKeyBlockIndexReader#midkey should exhaust search of the target middle key on skewed regions

2017-03-07 Thread Esteban Gutierrez (JIRA)
Esteban Gutierrez created HBASE-17755: - Summary: CellBasedKeyBlockIndexReader#midkey should exhaust search of the target middle key on skewed regions Key: HBASE-17755 URL: https://issues.apache.org/jira/browse

[jira] [Created] (HBASE-17754) [C++] RawAsyncTable

2017-03-07 Thread Enis Soztutar (JIRA)
Enis Soztutar created HBASE-17754: - Summary: [C++] RawAsyncTable Key: HBASE-17754 URL: https://issues.apache.org/jira/browse/HBASE-17754 Project: HBase Issue Type: Sub-task Report

[jira] [Created] (HBASE-17753) Update QuotaObserverChore to include computed snapshot sizes

2017-03-07 Thread Josh Elser (JIRA)
Josh Elser created HBASE-17753: -- Summary: Update QuotaObserverChore to include computed snapshot sizes Key: HBASE-17753 URL: https://issues.apache.org/jira/browse/HBASE-17753 Project: HBase Iss

[jira] [Created] (HBASE-17752) Update reporting RPCs/Shell commands to break out space utilization by snapshot

2017-03-07 Thread Josh Elser (JIRA)
Josh Elser created HBASE-17752: -- Summary: Update reporting RPCs/Shell commands to break out space utilization by snapshot Key: HBASE-17752 URL: https://issues.apache.org/jira/browse/HBASE-17752 Project:

[jira] [Created] (HBASE-17751) Update snapshot manifest to include table it was created from

2017-03-07 Thread Josh Elser (JIRA)
Josh Elser created HBASE-17751: -- Summary: Update snapshot manifest to include table it was created from Key: HBASE-17751 URL: https://issues.apache.org/jira/browse/HBASE-17751 Project: HBase Is

[jira] [Created] (HBASE-17750) Update RS Chore that computes Region sizes to avoid double-counting on rematerialized tables

2017-03-07 Thread Josh Elser (JIRA)
Josh Elser created HBASE-17750: -- Summary: Update RS Chore that computes Region sizes to avoid double-counting on rematerialized tables Key: HBASE-17750 URL: https://issues.apache.org/jira/browse/HBASE-17750

[jira] [Created] (HBASE-17749) Create Master Chore to the size of each Snapshot against a table with a quota

2017-03-07 Thread Josh Elser (JIRA)
Josh Elser created HBASE-17749: -- Summary: Create Master Chore to the size of each Snapshot against a table with a quota Key: HBASE-17749 URL: https://issues.apache.org/jira/browse/HBASE-17749 Project: HB

Re: Moving 2.0 forward

2017-03-07 Thread Josh Elser
Thanks for pulling in the FS Quotas work, Stack. I'm trying to cross the last T's and dot the last I's. The biggest thing I know I need to do still is to write a new chapter to the book. After that, I'd start entertaining larger reviews/discussions to merge the feature into master. Anyone with

[jira] [Created] (HBASE-17748) Include HBase Snapshots in Space Quotas

2017-03-07 Thread Josh Elser (JIRA)
Josh Elser created HBASE-17748: -- Summary: Include HBase Snapshots in Space Quotas Key: HBASE-17748 URL: https://issues.apache.org/jira/browse/HBASE-17748 Project: HBase Issue Type: Umbrella

Re: What if I want to write another table in MasterObserver.preModifyColumnFamily ?

2017-03-07 Thread Ted Yu
Describing your use case would allow people to give better answer. What kind of data do you write to other table in preModifyColumnFamily() ? Cross server call within observer is not good idea. Take a look at ConnectionUtils.createShortCircuitConnection(). Cheers On Tue, Mar 7, 2017 at 11:42 A

What if I want to write another table in MasterObserver.preModifyColumnFamily ?

2017-03-07 Thread Xi Yang
All the articles I've ever seen are talking about add increment or change put/get status or pinrt out logs. what if I want to write some data to another table in Observer? For example, MasterObserver.preModifyColumnFamily()? Seems Observer is runing at server side, so use connection is unnecces

[jira] [Created] (HBASE-17747) Support both weak and soft object pool

2017-03-07 Thread Yu Li (JIRA)
Yu Li created HBASE-17747: - Summary: Support both weak and soft object pool Key: HBASE-17747 URL: https://issues.apache.org/jira/browse/HBASE-17747 Project: HBase Issue Type: Improvement

Successful: HBase Generate Website

2017-03-07 Thread Apache Jenkins Server
Build status: Successful If successful, the website and docs have been generated. To update the live site, follow the instructions below. If failed, skip to the bottom of this email. Use the following commands to download the patch and apply it to a clean branch based on origin/asf-site. If yo

Re: HDFS Balancer

2017-03-07 Thread Ted Yu
bq. how that - apparently wrong - information came about Maybe Sean / Misty can give some context. Cheers On Tue, Mar 7, 2017 at 6:37 AM, Lars George wrote: > Hey Ted, > > Thanks Cpt. Obvious :) > > I know how to use "blame" or git log how to find the JIRA, but what I was > after is how that -

[jira] [Resolved] (HBASE-17635) enable_table_replication script cannot handle replication scope

2017-03-07 Thread Lars George (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-17635?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lars George resolved HBASE-17635. - Resolution: Duplicate Sorry, this was opened just a few weeks earlier in HBASE-17460, closing thi

Re: HDFS Balancer

2017-03-07 Thread Lars George
Hey Ted, Thanks Cpt. Obvious :) I know how to use "blame" or git log how to find the JIRA, but what I was after is how that - apparently wrong - information came about. And if it is wrong, what _is_ the current status of this feature. I do believe this is an important operational piece as it

[jira] [Created] (HBASE-17746) TestSimpleRpcScheduler.testCoDelScheduling:469 None of these calls should have been discarded expected:<0> but was:<15>

2017-03-07 Thread Anup Halarnkar (JIRA)
Anup Halarnkar created HBASE-17746: -- Summary: TestSimpleRpcScheduler.testCoDelScheduling:469 None of these calls should have been discarded expected:<0> but was:<15> Key: HBASE-17746 URL: https://issues.apache.or

[jira] [Created] (HBASE-17745) Support short circuit connection for master services

2017-03-07 Thread Yu Li (JIRA)
Yu Li created HBASE-17745: - Summary: Support short circuit connection for master services Key: HBASE-17745 URL: https://issues.apache.org/jira/browse/HBASE-17745 Project: HBase Issue Type: Sub-task

[jira] [Created] (HBASE-17744) Implement simple embedded mode

2017-03-07 Thread Yu Li (JIRA)
Yu Li created HBASE-17744: - Summary: Implement simple embedded mode Key: HBASE-17744 URL: https://issues.apache.org/jira/browse/HBASE-17744 Project: HBase Issue Type: Sub-task Reporter: Y

[jira] [Reopened] (HBASE-15484) Correct the semantic of batch and partial

2017-03-07 Thread Phil Yang (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-15484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Phil Yang reopened HBASE-15484: --- Find a bug in the pushed patch. If mayHaveMoreCellsInRow is true but it is the last Result of a row, we

[jira] [Created] (HBASE-17743) Support embedded mode in HBase

2017-03-07 Thread Yu Li (JIRA)
Yu Li created HBASE-17743: - Summary: Support embedded mode in HBase Key: HBASE-17743 URL: https://issues.apache.org/jira/browse/HBASE-17743 Project: HBase Issue Type: New Feature Reporter

[jira] [Resolved] (HBASE-17742) Reverse scan with empty start row returns incorrect result

2017-03-07 Thread Yu Li (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-17742?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yu Li resolved HBASE-17742. --- Resolution: Invalid Invalidate this JIRA > Reverse scan with empty start row returns incorrect result >