[jira] [Reopened] (HBASE-12762) Region with no hfiles will have the highest locality cost in LocalityCostFunction

2014-12-30 Thread Andrew Purtell (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-12762?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Purtell reopened HBASE-12762: No fix version for 0.98 was set on this issue but it was committed there. TestShell is

[jira] [Created] (HBASE-12783) Create efficient RegionLocator implementation

2014-12-30 Thread Solomon Duskis (JIRA)
Solomon Duskis created HBASE-12783: -- Summary: Create efficient RegionLocator implementation Key: HBASE-12783 URL: https://issues.apache.org/jira/browse/HBASE-12783 Project: HBase Issue

[jira] [Created] (HBASE-12784) TestFastFailWithoutTestUtil#testPreemptiveFastFailException50Times sometimes hangs

2014-12-30 Thread Ted Yu (JIRA)
Ted Yu created HBASE-12784: -- Summary: TestFastFailWithoutTestUtil#testPreemptiveFastFailException50Times sometimes hangs Key: HBASE-12784 URL: https://issues.apache.org/jira/browse/HBASE-12784 Project:

[jira] [Created] (HBASE-12785) Use FutureTask to timeout the attempt to get the lock for hbck

2014-12-30 Thread Ted Yu (JIRA)
Ted Yu created HBASE-12785: -- Summary: Use FutureTask to timeout the attempt to get the lock for hbck Key: HBASE-12785 URL: https://issues.apache.org/jira/browse/HBASE-12785 Project: HBase Issue

[jira] [Resolved] (HBASE-12762) Region with no hfiles will have the highest locality cost in LocalityCostFunction

2014-12-30 Thread Andrew Purtell (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-12762?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Purtell resolved HBASE-12762. Resolution: Fixed Region with no hfiles will have the highest locality cost in

Re: A face-lift for 1.0

2014-12-30 Thread Dima Spivak
Not sure if this is something to address in this thread or if I should file a separate JIRA, but for some reason, accessing the site over https gets rid of the pretty CSS. Seems to happen in Chrome and Firefox. Anyone have a clue why? -Dima On Wed, Dec 17, 2014 at 10:53 AM, Nick Dimiduk

Re: A face-lift for 1.0

2014-12-30 Thread Enis Söztutar
I had the same problem. We link to CSS which is http instead of forking and serving it in the site (I believe this is the default practice). My chrome extension refuses to connect to http links causing rendering problems. Enis On Tue, Dec 30, 2014 at 11:00 AM, Dima Spivak dspi...@cloudera.com

Re: A face-lift for 1.0

2014-12-30 Thread Dima Spivak
Ooh, good call, guys. Yeah, looks like all we'd need to do is move bootstrap.min.css and bootstrap-responsive.min.css onto our server and link to it relatively instead of with absolute links it has now. Seeing as how both of those CSS files are Apache License, should be easy. -Dima On Tue, Dec

Considering a RpcSchedulerFactory change in 0.98 for HBASE-12028

2014-12-30 Thread Andrew Purtell
Hi Phoenix, Please see https://issues.apache.org/jira/browse/HBASE-12028 The proposed change if committed into 0.98 branch would introduce a new 'create' method into the RpcSchedulerFactory interface that receives an Abortable as an additional parameter. Thus, the factory can pass this on to

Re: Considering a RpcSchedulerFactory change in 0.98 for HBASE-12028

2014-12-30 Thread Enis Söztutar
Thanks Andrew, Once HBASE-12028 is committed it should be easy enough to make the changes in Phoenix to be able to compile with HBase versions pre or post HBASE-12028. But we need a PHOENIX issue for that. We should also make Abortable a LimitedPrivate it seems. Enis On Tue, Dec 30, 2014 at

Re: Considering a RpcSchedulerFactory change in 0.98 for HBASE-12028

2014-12-30 Thread James Taylor
Would our 4.2.2 binaries continue to work with releases of HBase containing this change? On Tue, Dec 30, 2014 at 3:14 PM, Enis Söztutar enis@gmail.com wrote: Thanks Andrew, Once HBASE-12028 is committed it should be easy enough to make the changes in Phoenix to be able to compile with

Re: Considering a RpcSchedulerFactory change in 0.98 for HBASE-12028

2014-12-30 Thread Andrew Purtell
It would be a binary compatibility break unless we detect by reflection that it's an older factory missing the new 'create' method and therefore call the old one. We could add that. How many versions of HBase = 0.98.10 do you think would need to be binary compatible with 4.2.2? On Dec 30,

[jira] [Reopened] (HBASE-12270) A bug in the bucket cache, with cache blocks on write enabled

2014-12-30 Thread Andrew Purtell (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-12270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Purtell reopened HBASE-12270: This broke the 0.98 build [ERROR] COMPILATION ERROR : [INFO]

Re: Considering a RpcSchedulerFactory change in 0.98 for HBASE-12028

2014-12-30 Thread James Taylor
bq. How many versions of HBase = 0.98.10 do you think would need to be binary compatible with 4.2.2? Good question. Do you have an opinion? We have a compatibility check that we do on first connection to a cluster. Perhaps we can add a check of Phoenix server version vs HBase server version to

[jira] [Created] (HBASE-12787) Backport HBASE-12028 (Abort the RegionServer when it's handler threads die) to 0.98

2014-12-30 Thread Andrew Purtell (JIRA)
Andrew Purtell created HBASE-12787: -- Summary: Backport HBASE-12028 (Abort the RegionServer when it's handler threads die) to 0.98 Key: HBASE-12787 URL: https://issues.apache.org/jira/browse/HBASE-12787

Re: Considering a RpcSchedulerFactory change in 0.98 for HBASE-12028

2014-12-30 Thread Andrew Purtell
Thanks for the feedback James. I filed HBASE-12787 in response. On Tue, Dec 30, 2014 at 3:49 PM, James Taylor jamestay...@apache.org wrote: bq. How many versions of HBase = 0.98.10 do you think would need to be binary compatible with 4.2.2? Good question. Do you have an opinion? We have a

Re: Considering a RpcSchedulerFactory change in 0.98 for HBASE-12028

2014-12-30 Thread Alicia Shu
If we would like to port this change to 0.98, another option is not changing RpcSchedulerFactory, but add a SET method for RpcScheduler that set the Abortable afterwards. Thus there will be no backward compatible issue. New code need to know to call the SET method. Old code will have a null

[jira] [Created] (HBASE-12788) Promote Abortable to LimitedPrivate

2014-12-30 Thread Andrew Purtell (JIRA)
Andrew Purtell created HBASE-12788: -- Summary: Promote Abortable to LimitedPrivate Key: HBASE-12788 URL: https://issues.apache.org/jira/browse/HBASE-12788 Project: HBase Issue Type: Sub-task

[jira] [Created] (HBASE-12789) TestCacheOnWrite#testStoreFileCacheOnWrite sometimes fails with HFileBlock cached assertion failure

2014-12-30 Thread Ted Yu (JIRA)
Ted Yu created HBASE-12789: -- Summary: TestCacheOnWrite#testStoreFileCacheOnWrite sometimes fails with HFileBlock cached assertion failure Key: HBASE-12789 URL: https://issues.apache.org/jira/browse/HBASE-12789

[jira] [Resolved] (HBASE-12789) TestCacheOnWrite#testStoreFileCacheOnWrite sometimes fails with HFileBlock cached assertion failure

2014-12-30 Thread stack (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-12789?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack resolved HBASE-12789. --- Resolution: Invalid Copy/paste of our build box output with no input.

Re: A face-lift for 1.0

2014-12-30 Thread Nick Dimiduk
Any chance of fixing this by way of a contribution back to the maven-skin maintainers? We can avoid bringing back the site.vm if we leave this in their hands. On Tue, Dec 30, 2014 at 12:11 PM, Dima Spivak dspi...@cloudera.com wrote: Ooh, good call, guys. Yeah, looks like all we'd need to do is

[jira] [Resolved] (HBASE-12270) A bug in the bucket cache, with cache blocks on write enabled

2014-12-30 Thread Andrew Purtell (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-12270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Purtell resolved HBASE-12270. Resolution: Fixed Something weird happened with TestReplicationEndpoint in the build where

Re: Considering a RpcSchedulerFactory change in 0.98 for HBASE-12028

2014-12-30 Thread James Taylor
Thanks, Andrew. I filed PHOENIX-1569 as well. On Tue, Dec 30, 2014 at 4:34 PM, Andrew Purtell apurt...@apache.org wrote: Thanks for the feedback James. I filed HBASE-12787 in response. On Tue, Dec 30, 2014 at 3:49 PM, James Taylor jamestay...@apache.org wrote: bq. How many versions of HBase

[jira] [Created] (HBASE-12790) Support fairness across parallelized scans

2014-12-30 Thread James Taylor (JIRA)
James Taylor created HBASE-12790: Summary: Support fairness across parallelized scans Key: HBASE-12790 URL: https://issues.apache.org/jira/browse/HBASE-12790 Project: HBase Issue Type: Bug

[jira] [Created] (HBASE-12791) HBase does not attempt to clean up an aborted split when the regionserver shutting down

2014-12-30 Thread Rajeshbabu Chintaguntla (JIRA)
Rajeshbabu Chintaguntla created HBASE-12791: --- Summary: HBase does not attempt to clean up an aborted split when the regionserver shutting down Key: HBASE-12791 URL:

[jira] [Created] (HBASE-12792) [backport] HBASE-5835: Catch and handle NotServingRegionException when close region attempt fails

2014-12-30 Thread Esteban Gutierrez (JIRA)
Esteban Gutierrez created HBASE-12792: - Summary: [backport] HBASE-5835: Catch and handle NotServingRegionException when close region attempt fails Key: HBASE-12792 URL:

[jira] [Created] (HBASE-12793) [hbck] closeRegionSilentlyAndWait() should log cause of IOException and retry until hbase.hbck.close.timeout expires

2014-12-30 Thread Esteban Gutierrez (JIRA)
Esteban Gutierrez created HBASE-12793: - Summary: [hbck] closeRegionSilentlyAndWait() should log cause of IOException and retry until hbase.hbck.close.timeout expires Key: HBASE-12793 URL: