You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by lars hofhansl <la...@apache.org> on 2014/03/15 07:44:59 UTC

[VOTE] The 1st hbase 0.94.18 release candidate is available for download

The 1st 0.94.18 RC is available for download at http://people.apache.org/~larsh/hbase-0.94.18-rc0/
Signed with my code signing key: C7CFE328

HBase 0.94.18 is a bug fix release with 26 fixes:
    [HBASE-9708] - Improve Snapshot Name Error Message
    [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
    [HBASE-10514] - Forward port HBASE-10466, possible data loss when failed flushes
    [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang in an infinite loop.
    [HBASE-10575] - ReplicationSource thread can't be terminated if it runs into the loop to contact peer's zk ensemble and fails continuously
    [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on number of rpc calls to the server.
    [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
    [HBASE-10598] - Written data can not be read out because MemStore#timeRangeTracker might be updated concurrently
    [HBASE-10614] - Master could not be stopped
    [HBASE-10622] - Improve log and Exceptions in Export Snapshot
    [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
    [HBASE-10627] - A logic mistake in HRegionServer isHealthy
    [HBASE-10631] - Avoid extra seek on FileLink open
    [HBASE-10642] - Add M/R over snapshots to 0.94
    [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for -sidelineCorruptHfiles option
    [HBASE-10682] - region_mover.rb throws "can't convert nil into String" for regions moved
    [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
    [HBASE-10716] - [Configuration]: hbase.regionserver.region.split.policy should be part of hbase-default.xml
    [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be negative
    [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not account for links and reference files.
    [HBASE-10731] - Fix environment variables typos in scripts
    [HBASE-10738] - AssignmentManager should shut down executors on stop
    [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be synchronized
    [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail since HBASE-10514 went in
    [HBASE-8604] - improve reporting of incorrect peer address in replication
    [HBASE-9914] - Port fix for HBASE-9836 'Intermittent TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking failure' to 0.94

Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots to 0.94.

The list of changes is also available here: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952

Here're the jenkins runs for this RC: https://builds.apache.org/job/HBase-0.94.18/17/ and https://builds.apache.org/job/HBase-0.94.18-security/7/

Please try out the RC, check out the doc, take it for a spin, etc, and vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.

Thanks.

-- Lars

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Jean-Daniel Cryans <jd...@apache.org>.
Downloaded the non-secure tarball, checked the md5, ran some PE load,
looked at the logs, made sure the rows were all there.

+1

J-D


On Fri, Mar 14, 2014 at 11:44 PM, lars hofhansl <la...@apache.org> wrote:

> The 1st 0.94.18 RC is available for download at
> http://people.apache.org/~larsh/hbase-0.94.18-rc0/
> Signed with my code signing key: C7CFE328
>
> HBase 0.94.18 is a bug fix release with 26 fixes:
>     [HBASE-9708] - Improve Snapshot Name Error Message
>     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
> failed flushes
>     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang
> in an infinite loop.
>     [HBASE-10575] - ReplicationSource thread can't be terminated if it
> runs into the loop to contact peer's zk ensemble and fails continuously
>     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
> number of rpc calls to the server.
>     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>     [HBASE-10598] - Written data can not be read out because
> MemStore#timeRangeTracker might be updated concurrently
>     [HBASE-10614] - Master could not be stopped
>     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>     [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
>     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>     [HBASE-10631] - Avoid extra seek on FileLink open
>     [HBASE-10642] - Add M/R over snapshots to 0.94
>     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
> -sidelineCorruptHfiles option
>     [HBASE-10682] - region_mover.rb throws "can't convert nil into String"
> for regions moved
>     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>     [HBASE-10716] - [Configuration]:
> hbase.regionserver.region.split.policy should be part of hbase-default.xml
>     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
> negative
>     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not
> account for links and reference files.
>     [HBASE-10731] - Fix environment variables typos in scripts
>     [HBASE-10738] - AssignmentManager should shut down executors on stop
>     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
> synchronized
>     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
> since HBASE-10514 went in
>     [HBASE-8604] - improve reporting of incorrect peer address in
> replication
>     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
> failure' to 0.94
>
> Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
> to 0.94.
>
> The list of changes is also available here:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>
> Here're the jenkins runs for this RC:
> https://builds.apache.org/job/HBase-0.94.18/17/ and
> https://builds.apache.org/job/HBase-0.94.18-security/7/
>
> Please try out the RC, check out the doc, take it for a spin, etc, and
> vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.
>
> Thanks.
>
> -- Lars
>

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by haosdent <ha...@gmail.com>.
0.94 is more and more powerful now. :-)


On Wed, Mar 19, 2014 at 7:56 PM, Jean-Marc Spaggiari <
jean-marc@spaggiari.org> wrote:

> Forget about it. Seems related to the "noexec" status of the drives where
> hbase sources are on my computer... Changed that and will retest.
>
> JM
>
>
> 2014-03-19 7:51 GMT-04:00 Jean-Marc Spaggiari <je...@spaggiari.org>:
>
> > Getting errors on the testing suite on the last 2 days... anyone else
> > facing that? Or just me?
> >
> > Running org.apache.hadoop.hbase.TestNodeHealthCheckChore
> > Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 251.284
> > sec <<< FAILURE!
> >
> > Results :
> >
> > Failed tests:
> > testHealthChecker(org.apache.hadoop.hbase.TestNodeHealthCheckChore):
> > expected:<SUCCESS> but was:<FAILED_WITH_EXCEPTION
> >
> > Tried to run it alone and failed too. Will continue with the other tests
> > anyway, but just wondering.
> >
> > JM
> >
> >
> > 2014-03-15 2:44 GMT-04:00 lars hofhansl <la...@apache.org>:
> >
> > The 1st 0.94.18 RC is available for download at
> >> http://people.apache.org/~larsh/hbase-0.94.18-rc0/
> >> Signed with my code signing key: C7CFE328
> >>
> >> HBase 0.94.18 is a bug fix release with 26 fixes:
> >>     [HBASE-9708] - Improve Snapshot Name Error Message
> >>     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
> >>     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
> >> failed flushes
> >>     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will
> hang
> >> in an infinite loop.
> >>     [HBASE-10575] - ReplicationSource thread can't be terminated if it
> >> runs into the loop to contact peer's zk ensemble and fails continuously
> >>     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
> >> number of rpc calls to the server.
> >>     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
> >>     [HBASE-10598] - Written data can not be read out because
> >> MemStore#timeRangeTracker might be updated concurrently
> >>     [HBASE-10614] - Master could not be stopped
> >>     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
> >>     [HBASE-10624] - Fix 2 new findbugs warnings introduced by
> HBASE-10598
> >>     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
> >>     [HBASE-10631] - Avoid extra seek on FileLink open
> >>     [HBASE-10642] - Add M/R over snapshots to 0.94
> >>     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
> >> -sidelineCorruptHfiles option
> >>     [HBASE-10682] - region_mover.rb throws "can't convert nil into
> >> String" for regions moved
> >>     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
> >>     [HBASE-10716] - [Configuration]:
> >> hbase.regionserver.region.split.policy should be part of
> hbase-default.xml
> >>     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
> >> negative
> >>     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does
> not
> >> account for links and reference files.
> >>     [HBASE-10731] - Fix environment variables typos in scripts
> >>     [HBASE-10738] - AssignmentManager should shut down executors on stop
> >>     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
> >> synchronized
> >>     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
> >> since HBASE-10514 went in
> >>     [HBASE-8604] - improve reporting of incorrect peer address in
> >> replication
> >>     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
> >>
> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
> >> failure' to 0.94
> >>
> >> Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
> >> to 0.94.
> >>
> >> The list of changes is also available here:
> >>
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
> >>
> >> Here're the jenkins runs for this RC:
> >> https://builds.apache.org/job/HBase-0.94.18/17/ and
> >> https://builds.apache.org/job/HBase-0.94.18-security/7/
> >>
> >> Please try out the RC, check out the doc, take it for a spin, etc, and
> >> vote +1/-1 by EOD March 21th on whether we should release this as
> 0.94.18.
> >>
> >> Thanks.
> >>
> >> -- Lars
> >>
> >
> >
>



-- 
Best Regards,
Haosdent Huang

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Jean-Marc Spaggiari <je...@spaggiari.org>.
Forget about it. Seems related to the "noexec" status of the drives where
hbase sources are on my computer... Changed that and will retest.

JM


2014-03-19 7:51 GMT-04:00 Jean-Marc Spaggiari <je...@spaggiari.org>:

> Getting errors on the testing suite on the last 2 days... anyone else
> facing that? Or just me?
>
> Running org.apache.hadoop.hbase.TestNodeHealthCheckChore
> Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 251.284
> sec <<< FAILURE!
>
> Results :
>
> Failed tests:
> testHealthChecker(org.apache.hadoop.hbase.TestNodeHealthCheckChore):
> expected:<SUCCESS> but was:<FAILED_WITH_EXCEPTION
>
> Tried to run it alone and failed too. Will continue with the other tests
> anyway, but just wondering.
>
> JM
>
>
> 2014-03-15 2:44 GMT-04:00 lars hofhansl <la...@apache.org>:
>
> The 1st 0.94.18 RC is available for download at
>> http://people.apache.org/~larsh/hbase-0.94.18-rc0/
>> Signed with my code signing key: C7CFE328
>>
>> HBase 0.94.18 is a bug fix release with 26 fixes:
>>     [HBASE-9708] - Improve Snapshot Name Error Message
>>     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>>     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
>> failed flushes
>>     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang
>> in an infinite loop.
>>     [HBASE-10575] - ReplicationSource thread can't be terminated if it
>> runs into the loop to contact peer's zk ensemble and fails continuously
>>     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
>> number of rpc calls to the server.
>>     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>>     [HBASE-10598] - Written data can not be read out because
>> MemStore#timeRangeTracker might be updated concurrently
>>     [HBASE-10614] - Master could not be stopped
>>     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>>     [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
>>     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>>     [HBASE-10631] - Avoid extra seek on FileLink open
>>     [HBASE-10642] - Add M/R over snapshots to 0.94
>>     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
>> -sidelineCorruptHfiles option
>>     [HBASE-10682] - region_mover.rb throws "can't convert nil into
>> String" for regions moved
>>     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>>     [HBASE-10716] - [Configuration]:
>> hbase.regionserver.region.split.policy should be part of hbase-default.xml
>>     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
>> negative
>>     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not
>> account for links and reference files.
>>     [HBASE-10731] - Fix environment variables typos in scripts
>>     [HBASE-10738] - AssignmentManager should shut down executors on stop
>>     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
>> synchronized
>>     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
>> since HBASE-10514 went in
>>     [HBASE-8604] - improve reporting of incorrect peer address in
>> replication
>>     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
>> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
>> failure' to 0.94
>>
>> Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
>> to 0.94.
>>
>> The list of changes is also available here:
>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>>
>> Here're the jenkins runs for this RC:
>> https://builds.apache.org/job/HBase-0.94.18/17/ and
>> https://builds.apache.org/job/HBase-0.94.18-security/7/
>>
>> Please try out the RC, check out the doc, take it for a spin, etc, and
>> vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.
>>
>> Thanks.
>>
>> -- Lars
>>
>
>

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Jean-Marc Spaggiari <je...@spaggiari.org>.
Getting errors on the testing suite on the last 2 days... anyone else
facing that? Or just me?

Running org.apache.hadoop.hbase.TestNodeHealthCheckChore
Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 251.284 sec
<<< FAILURE!

Results :

Failed tests:
testHealthChecker(org.apache.hadoop.hbase.TestNodeHealthCheckChore):
expected:<SUCCESS> but was:<FAILED_WITH_EXCEPTION

Tried to run it alone and failed too. Will continue with the other tests
anyway, but just wondering.

JM


2014-03-15 2:44 GMT-04:00 lars hofhansl <la...@apache.org>:

> The 1st 0.94.18 RC is available for download at
> http://people.apache.org/~larsh/hbase-0.94.18-rc0/
> Signed with my code signing key: C7CFE328
>
> HBase 0.94.18 is a bug fix release with 26 fixes:
>     [HBASE-9708] - Improve Snapshot Name Error Message
>     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
> failed flushes
>     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang
> in an infinite loop.
>     [HBASE-10575] - ReplicationSource thread can't be terminated if it
> runs into the loop to contact peer's zk ensemble and fails continuously
>     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
> number of rpc calls to the server.
>     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>     [HBASE-10598] - Written data can not be read out because
> MemStore#timeRangeTracker might be updated concurrently
>     [HBASE-10614] - Master could not be stopped
>     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>     [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
>     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>     [HBASE-10631] - Avoid extra seek on FileLink open
>     [HBASE-10642] - Add M/R over snapshots to 0.94
>     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
> -sidelineCorruptHfiles option
>     [HBASE-10682] - region_mover.rb throws "can't convert nil into String"
> for regions moved
>     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>     [HBASE-10716] - [Configuration]:
> hbase.regionserver.region.split.policy should be part of hbase-default.xml
>     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
> negative
>     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not
> account for links and reference files.
>     [HBASE-10731] - Fix environment variables typos in scripts
>     [HBASE-10738] - AssignmentManager should shut down executors on stop
>     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
> synchronized
>     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
> since HBASE-10514 went in
>     [HBASE-8604] - improve reporting of incorrect peer address in
> replication
>     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
> failure' to 0.94
>
> Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
> to 0.94.
>
> The list of changes is also available here:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>
> Here're the jenkins runs for this RC:
> https://builds.apache.org/job/HBase-0.94.18/17/ and
> https://builds.apache.org/job/HBase-0.94.18-security/7/
>
> Please try out the RC, check out the doc, take it for a spin, etc, and
> vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.
>
> Thanks.
>
> -- Lars
>

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Ted Yu <yu...@gmail.com>.
Can you follow instructions here:
https://hbase.apache.org/book.html#d248e643

Thanks

On Mar 22, 2014, at 12:04 AM, Sai Pavan Gadde <id...@gmail.com> wrote:

> Hi,
> 
> HMaster is not working with hadoop-2.2.0, is it compatable with
> hadoop-2.2.0 ??
> 
> hbase(main):001:0> list
> TABLE
> 
> 
> ERROR: org.apache.hadoop.hbase.MasterNotRunningException: Retried 7 times
> 
> 
> 
> On Sat, Mar 22, 2014 at 12:23 PM, Sai Pavan Gadde <id...@gmail.com>wrote:
> 
>> Hi,
>> 
>> HMaster is not working with hadoop-2.2.0, is it compatable with
>> hadoop-2.2.0 ??
>> 
>> 
>> On Sat, Mar 22, 2014 at 6:18 AM, Jean-Marc Spaggiari <
>> jean-marc@spaggiari.org> wrote:
>> 
>>> Downloaded the jars, checked the signatures, changes.txt, doc, etc. =>
>>> Passed.
>>> Run test suite => All passed
>>> Run performance tests => Consistent with 0.94.17
>>> Run LoadTestTool => Passed
>>> Run IntegrationTestLoadAndVerify =>  Failed, as usual ;)
>>> REFERENCES_CHECKED=9855566
>>> Run HLogPerformanceEvaluation => Consistent with 0.94.17
>>> Run IntegrationTestBigLinkedList => Passed.
>>> Create table, put, flush, major_compact, scan, etc. => Passed.
>>> Deployed on a 8 nodes cluster, rolling restart => Passed.
>>> Merged a 256 regions table into 2 regions, alter filesize, major_compact
>>> to
>>> get it split back to 16 regions=> Passed.
>>> MR job running. So far, so good. But will take the night to complete, and
>>> I
>>> will be gone by that time.
>>> 
>>> So for me, +1.
>>> 
>>> 
>>> 2014-03-19 16:59 GMT-04:00 lars hofhansl <la...@apache.org>:
>>> 
>>>> +1 from (in case that wasn't obvious)
>>>> 
>>>> - Checked the tar balls
>>>> - Spot checked the UI pages
>>>> 
>>>> - Tested with Hadoop 1 and Hadoop 2.
>>>> - Tested M/R over snapshots (Hadoop 1 only)
>>>> - Loaded 100m rows. Scanned, flushed, scanned again, compacted, scanned
>>>> yet again.
>>>> - Disabled/enabled/dropped tables, etc.
>>>> 
>>>> 
>>>> Please remember to have a look. I know a lot of RCs came out at the same
>>>> time; release testing is an important service to the community.
>>>> 
>>>> 
>>>> -- Lars
>>>> 
>>>> 
>>>> 
>>>> ________________________________
>>>> From: lars hofhansl <la...@apache.org>
>>>> To: hbase-dev <de...@hbase.apache.org>
>>>> Sent: Friday, March 14, 2014 11:44 PM
>>>> Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for
>>>> download
>>>> 
>>>> 
>>>> The 1st 0.94.18 RC is available for download at
>>>> http://people.apache.org/~larsh/hbase-0.94.18-rc0/
>>>> Signed with my code signing key: C7CFE328
>>>> 
>>>> HBase 0.94.18 is a bug fix release with 26 fixes:
>>>>    [HBASE-9708] - Improve Snapshot Name Error Message
>>>>    [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>>>>    [HBASE-10514] - Forward port HBASE-10466, possible data loss when
>>>> failed flushes
>>>>    [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will
>>> hang
>>>> in an infinite loop.
>>>>    [HBASE-10575] - ReplicationSource thread can't be terminated if it
>>>> runs into the loop to contact peer's zk ensemble and fails continuously
>>>>    [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
>>>> number of rpc calls to the server.
>>>>    [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>>>>    [HBASE-10598] - Written data can not be read out because
>>>> MemStore#timeRangeTracker might be updated concurrently
>>>>    [HBASE-10614] - Master could not be stopped
>>>>    [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>>>>    [HBASE-10624] - Fix 2 new findbugs warnings introduced by
>>> HBASE-10598
>>>>    [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>>>>    [HBASE-10631] - Avoid extra seek on FileLink open
>>>>    [HBASE-10642] - Add M/R over snapshots to 0.94
>>>>    [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
>>>> -sidelineCorruptHfiles option
>>>>    [HBASE-10682] - region_mover.rb throws "can't convert nil into
>>> String"
>>>> for regions moved
>>>>    [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>>>>    [HBASE-10716] - [Configuration]:
>>>> hbase.regionserver.region.split.policy should be part of
>>> hbase-default.xml
>>>>    [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
>>>> negative
>>>>    [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does
>>> not
>>>> account for links and reference files.
>>>>    [HBASE-10731] - Fix environment variables typos in scripts
>>>>    [HBASE-10738] - AssignmentManager should shut down executors on stop
>>>>    [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
>>>> synchronized
>>>>    [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
>>>> since HBASE-10514 went in
>>>>    [HBASE-8604] - improve reporting of incorrect peer address in
>>>> replication
>>>>    [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
>>> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
>>>> failure' to 0.94
>>>> 
>>>> Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
>>>> to 0.94.
>>>> 
>>>> The list of changes is also available here:
>>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>>>> 
>>>> Here're the jenkins runs for this RC:
>>>> https://builds.apache.org/job/HBase-0.94.18/17/ and
>>>> https://builds.apache.org/job/HBase-0.94.18-security/7/
>>>> 
>>>> Please try out the RC, check out the doc, take it for a spin, etc, and
>>>> vote +1/-1 by EOD March 21th on whether we should release this as
>>> 0.94.18.
>>>> 
>>>> Thanks.
>>>> 
>>>> -- Lars
>> 
>> 
>> 
>> --
>> *THANKS & REGARDS,*
>> G.SAI PAVAN,
>> CCDH4 CERTIFIED,
>> Ph: 8121914494,
>> *www.bigdatatrendz.com <http://www.bigdatatrendz.com>*
>> linkedin profile <http://in.linkedin.com/pub/gadde-sai-pavan/38/44b/453/>
>> HYDERABAD.
> 
> 
> 
> -- 
> *THANKS & REGARDS,*
> G.SAI PAVAN,
> CCDH4 CERTIFIED,
> Ph: 8121914494,
> *www.bigdatatrendz.com <http://www.bigdatatrendz.com>*
> linkedin profile <http://in.linkedin.com/pub/gadde-sai-pavan/38/44b/453/>
> HYDERABAD.

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Sai Pavan Gadde <id...@gmail.com>.
Hi,

HMaster is not working with hadoop-2.2.0, is it compatable with
hadoop-2.2.0 ??

hbase(main):001:0> list
TABLE


ERROR: org.apache.hadoop.hbase.MasterNotRunningException: Retried 7 times



On Sat, Mar 22, 2014 at 12:23 PM, Sai Pavan Gadde <id...@gmail.com>wrote:

> Hi,
>
> HMaster is not working with hadoop-2.2.0, is it compatable with
> hadoop-2.2.0 ??
>
>
> On Sat, Mar 22, 2014 at 6:18 AM, Jean-Marc Spaggiari <
> jean-marc@spaggiari.org> wrote:
>
>> Downloaded the jars, checked the signatures, changes.txt, doc, etc. =>
>> Passed.
>> Run test suite => All passed
>> Run performance tests => Consistent with 0.94.17
>>  Run LoadTestTool => Passed
>> Run IntegrationTestLoadAndVerify =>  Failed, as usual ;)
>> REFERENCES_CHECKED=9855566
>> Run HLogPerformanceEvaluation => Consistent with 0.94.17
>> Run IntegrationTestBigLinkedList => Passed.
>> Create table, put, flush, major_compact, scan, etc. => Passed.
>> Deployed on a 8 nodes cluster, rolling restart => Passed.
>> Merged a 256 regions table into 2 regions, alter filesize, major_compact
>> to
>> get it split back to 16 regions=> Passed.
>> MR job running. So far, so good. But will take the night to complete, and
>> I
>> will be gone by that time.
>>
>> So for me, +1.
>>
>>
>> 2014-03-19 16:59 GMT-04:00 lars hofhansl <la...@apache.org>:
>>
>> > +1 from (in case that wasn't obvious)
>> >
>> > - Checked the tar balls
>> > - Spot checked the UI pages
>> >
>> > - Tested with Hadoop 1 and Hadoop 2.
>> > - Tested M/R over snapshots (Hadoop 1 only)
>> > - Loaded 100m rows. Scanned, flushed, scanned again, compacted, scanned
>> > yet again.
>> > - Disabled/enabled/dropped tables, etc.
>> >
>> >
>> > Please remember to have a look. I know a lot of RCs came out at the same
>> > time; release testing is an important service to the community.
>> >
>> >
>> > -- Lars
>> >
>> >
>> >
>> > ________________________________
>> >  From: lars hofhansl <la...@apache.org>
>> > To: hbase-dev <de...@hbase.apache.org>
>> > Sent: Friday, March 14, 2014 11:44 PM
>> > Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for
>> > download
>> >
>> >
>> > The 1st 0.94.18 RC is available for download at
>> > http://people.apache.org/~larsh/hbase-0.94.18-rc0/
>> > Signed with my code signing key: C7CFE328
>> >
>> > HBase 0.94.18 is a bug fix release with 26 fixes:
>> >     [HBASE-9708] - Improve Snapshot Name Error Message
>> >     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>> >     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
>> > failed flushes
>> >     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will
>> hang
>> > in an infinite loop.
>> >     [HBASE-10575] - ReplicationSource thread can't be terminated if it
>> > runs into the loop to contact peer's zk ensemble and fails continuously
>> >     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
>> > number of rpc calls to the server.
>> >     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>> >     [HBASE-10598] - Written data can not be read out because
>> > MemStore#timeRangeTracker might be updated concurrently
>> >     [HBASE-10614] - Master could not be stopped
>> >     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>> >     [HBASE-10624] - Fix 2 new findbugs warnings introduced by
>> HBASE-10598
>> >     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>> >     [HBASE-10631] - Avoid extra seek on FileLink open
>> >     [HBASE-10642] - Add M/R over snapshots to 0.94
>> >     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
>> > -sidelineCorruptHfiles option
>> >     [HBASE-10682] - region_mover.rb throws "can't convert nil into
>> String"
>> > for regions moved
>> >     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>> >     [HBASE-10716] - [Configuration]:
>> > hbase.regionserver.region.split.policy should be part of
>> hbase-default.xml
>> >     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
>> > negative
>> >     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does
>> not
>> > account for links and reference files.
>> >     [HBASE-10731] - Fix environment variables typos in scripts
>> >     [HBASE-10738] - AssignmentManager should shut down executors on stop
>> >     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
>> > synchronized
>> >     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
>> > since HBASE-10514 went in
>> >     [HBASE-8604] - improve reporting of incorrect peer address in
>> > replication
>> >     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
>> >
>> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
>> > failure' to 0.94
>> >
>> > Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
>> > to 0.94.
>> >
>> > The list of changes is also available here:
>> >
>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>> >
>> > Here're the jenkins runs for this RC:
>> > https://builds.apache.org/job/HBase-0.94.18/17/ and
>> > https://builds.apache.org/job/HBase-0.94.18-security/7/
>> >
>> > Please try out the RC, check out the doc, take it for a spin, etc, and
>> > vote +1/-1 by EOD March 21th on whether we should release this as
>> 0.94.18.
>> >
>> > Thanks.
>> >
>> > -- Lars
>> >
>>
>
>
>
> --
> *THANKS & REGARDS,*
> G.SAI PAVAN,
> CCDH4 CERTIFIED,
> Ph: 8121914494,
> *www.bigdatatrendz.com <http://www.bigdatatrendz.com>*
> linkedin profile <http://in.linkedin.com/pub/gadde-sai-pavan/38/44b/453/>
> HYDERABAD.
>



-- 
*THANKS & REGARDS,*
G.SAI PAVAN,
CCDH4 CERTIFIED,
Ph: 8121914494,
*www.bigdatatrendz.com <http://www.bigdatatrendz.com>*
linkedin profile <http://in.linkedin.com/pub/gadde-sai-pavan/38/44b/453/>
HYDERABAD.

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Sai Pavan Gadde <id...@gmail.com>.
Hi,

HMaster is not working with hadoop-2.2.0, is it compatable with
hadoop-2.2.0 ??


On Sat, Mar 22, 2014 at 6:18 AM, Jean-Marc Spaggiari <
jean-marc@spaggiari.org> wrote:

> Downloaded the jars, checked the signatures, changes.txt, doc, etc. =>
> Passed.
> Run test suite => All passed
> Run performance tests => Consistent with 0.94.17
>  Run LoadTestTool => Passed
> Run IntegrationTestLoadAndVerify =>  Failed, as usual ;)
> REFERENCES_CHECKED=9855566
> Run HLogPerformanceEvaluation => Consistent with 0.94.17
> Run IntegrationTestBigLinkedList => Passed.
> Create table, put, flush, major_compact, scan, etc. => Passed.
> Deployed on a 8 nodes cluster, rolling restart => Passed.
> Merged a 256 regions table into 2 regions, alter filesize, major_compact to
> get it split back to 16 regions=> Passed.
> MR job running. So far, so good. But will take the night to complete, and I
> will be gone by that time.
>
> So for me, +1.
>
>
> 2014-03-19 16:59 GMT-04:00 lars hofhansl <la...@apache.org>:
>
> > +1 from (in case that wasn't obvious)
> >
> > - Checked the tar balls
> > - Spot checked the UI pages
> >
> > - Tested with Hadoop 1 and Hadoop 2.
> > - Tested M/R over snapshots (Hadoop 1 only)
> > - Loaded 100m rows. Scanned, flushed, scanned again, compacted, scanned
> > yet again.
> > - Disabled/enabled/dropped tables, etc.
> >
> >
> > Please remember to have a look. I know a lot of RCs came out at the same
> > time; release testing is an important service to the community.
> >
> >
> > -- Lars
> >
> >
> >
> > ________________________________
> >  From: lars hofhansl <la...@apache.org>
> > To: hbase-dev <de...@hbase.apache.org>
> > Sent: Friday, March 14, 2014 11:44 PM
> > Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for
> > download
> >
> >
> > The 1st 0.94.18 RC is available for download at
> > http://people.apache.org/~larsh/hbase-0.94.18-rc0/
> > Signed with my code signing key: C7CFE328
> >
> > HBase 0.94.18 is a bug fix release with 26 fixes:
> >     [HBASE-9708] - Improve Snapshot Name Error Message
> >     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
> >     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
> > failed flushes
> >     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang
> > in an infinite loop.
> >     [HBASE-10575] - ReplicationSource thread can't be terminated if it
> > runs into the loop to contact peer's zk ensemble and fails continuously
> >     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
> > number of rpc calls to the server.
> >     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
> >     [HBASE-10598] - Written data can not be read out because
> > MemStore#timeRangeTracker might be updated concurrently
> >     [HBASE-10614] - Master could not be stopped
> >     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
> >     [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
> >     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
> >     [HBASE-10631] - Avoid extra seek on FileLink open
> >     [HBASE-10642] - Add M/R over snapshots to 0.94
> >     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
> > -sidelineCorruptHfiles option
> >     [HBASE-10682] - region_mover.rb throws "can't convert nil into
> String"
> > for regions moved
> >     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
> >     [HBASE-10716] - [Configuration]:
> > hbase.regionserver.region.split.policy should be part of
> hbase-default.xml
> >     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
> > negative
> >     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not
> > account for links and reference files.
> >     [HBASE-10731] - Fix environment variables typos in scripts
> >     [HBASE-10738] - AssignmentManager should shut down executors on stop
> >     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
> > synchronized
> >     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
> > since HBASE-10514 went in
> >     [HBASE-8604] - improve reporting of incorrect peer address in
> > replication
> >     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
> >
> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
> > failure' to 0.94
> >
> > Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
> > to 0.94.
> >
> > The list of changes is also available here:
> >
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
> >
> > Here're the jenkins runs for this RC:
> > https://builds.apache.org/job/HBase-0.94.18/17/ and
> > https://builds.apache.org/job/HBase-0.94.18-security/7/
> >
> > Please try out the RC, check out the doc, take it for a spin, etc, and
> > vote +1/-1 by EOD March 21th on whether we should release this as
> 0.94.18.
> >
> > Thanks.
> >
> > -- Lars
> >
>



-- 
*THANKS & REGARDS,*
G.SAI PAVAN,
CCDH4 CERTIFIED,
Ph: 8121914494,
*www.bigdatatrendz.com <http://www.bigdatatrendz.com>*
linkedin profile <http://in.linkedin.com/pub/gadde-sai-pavan/38/44b/453/>
HYDERABAD.

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Jean-Marc Spaggiari <je...@spaggiari.org>.
Downloaded the jars, checked the signatures, changes.txt, doc, etc. =>
Passed.
Run test suite => All passed
Run performance tests => Consistent with 0.94.17
 Run LoadTestTool => Passed
Run IntegrationTestLoadAndVerify =>  Failed, as usual ;)
REFERENCES_CHECKED=9855566
Run HLogPerformanceEvaluation => Consistent with 0.94.17
Run IntegrationTestBigLinkedList => Passed.
Create table, put, flush, major_compact, scan, etc. => Passed.
Deployed on a 8 nodes cluster, rolling restart => Passed.
Merged a 256 regions table into 2 regions, alter filesize, major_compact to
get it split back to 16 regions=> Passed.
MR job running. So far, so good. But will take the night to complete, and I
will be gone by that time.

So for me, +1.


2014-03-19 16:59 GMT-04:00 lars hofhansl <la...@apache.org>:

> +1 from (in case that wasn't obvious)
>
> - Checked the tar balls
> - Spot checked the UI pages
>
> - Tested with Hadoop 1 and Hadoop 2.
> - Tested M/R over snapshots (Hadoop 1 only)
> - Loaded 100m rows. Scanned, flushed, scanned again, compacted, scanned
> yet again.
> - Disabled/enabled/dropped tables, etc.
>
>
> Please remember to have a look. I know a lot of RCs came out at the same
> time; release testing is an important service to the community.
>
>
> -- Lars
>
>
>
> ________________________________
>  From: lars hofhansl <la...@apache.org>
> To: hbase-dev <de...@hbase.apache.org>
> Sent: Friday, March 14, 2014 11:44 PM
> Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for
> download
>
>
> The 1st 0.94.18 RC is available for download at
> http://people.apache.org/~larsh/hbase-0.94.18-rc0/
> Signed with my code signing key: C7CFE328
>
> HBase 0.94.18 is a bug fix release with 26 fixes:
>     [HBASE-9708] - Improve Snapshot Name Error Message
>     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
> failed flushes
>     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang
> in an infinite loop.
>     [HBASE-10575] - ReplicationSource thread can't be terminated if it
> runs into the loop to contact peer's zk ensemble and fails continuously
>     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
> number of rpc calls to the server.
>     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>     [HBASE-10598] - Written data can not be read out because
> MemStore#timeRangeTracker might be updated concurrently
>     [HBASE-10614] - Master could not be stopped
>     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>     [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
>     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>     [HBASE-10631] - Avoid extra seek on FileLink open
>     [HBASE-10642] - Add M/R over snapshots to 0.94
>     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
> -sidelineCorruptHfiles option
>     [HBASE-10682] - region_mover.rb throws "can't convert nil into String"
> for regions moved
>     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>     [HBASE-10716] - [Configuration]:
> hbase.regionserver.region.split.policy should be part of hbase-default.xml
>     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
> negative
>     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not
> account for links and reference files.
>     [HBASE-10731] - Fix environment variables typos in scripts
>     [HBASE-10738] - AssignmentManager should shut down executors on stop
>     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
> synchronized
>     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
> since HBASE-10514 went in
>     [HBASE-8604] - improve reporting of incorrect peer address in
> replication
>     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
> failure' to 0.94
>
> Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
> to 0.94.
>
> The list of changes is also available here:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>
> Here're the jenkins runs for this RC:
> https://builds.apache.org/job/HBase-0.94.18/17/ and
> https://builds.apache.org/job/HBase-0.94.18-security/7/
>
> Please try out the RC, check out the doc, take it for a spin, etc, and
> vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.
>
> Thanks.
>
> -- Lars
>

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by lars hofhansl <la...@apache.org>.
Thanks J-D, JM, and Ted. Release is forthcoming.

On to 0.94.19 :)


-- Lars



________________________________
 From: Ted Yu <yu...@gmail.com>
To: "dev@hbase.apache.org" <de...@hbase.apache.org>; lars hofhansl <la...@apache.org> 
Sent: Saturday, March 22, 2014 7:14 PM
Subject: Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download
 


+1

- checked documentation and tarball

- Ran unit test suite using secure profile which passed

- Ran in local and distributed mode


Cheers



On Wed, Mar 19, 2014 at 1:59 PM, lars hofhansl <la...@apache.org> wrote:

+1 from (in case that wasn't obvious)
>
>- Checked the tar balls
>- Spot checked the UI pages
>
>- Tested with Hadoop 1 and Hadoop 2.
>- Tested M/R over snapshots (Hadoop 1 only)
>- Loaded 100m rows. Scanned, flushed, scanned again, compacted, scanned yet again.
>- Disabled/enabled/dropped tables, etc.
>
>
>Please remember to have a look. I know a lot of RCs came out at the same time; release testing is an important service to the community.
>
>
>-- Lars
>
>
>
>________________________________
> From: lars hofhansl <la...@apache.org>
>To: hbase-dev <de...@hbase.apache.org>
>Sent: Friday, March 14, 2014 11:44 PM
>Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for download
>
>
>
>The 1st 0.94.18 RC is available for download at http://people.apache.org/~larsh/hbase-0.94.18-rc0/
>Signed with my code signing key: C7CFE328
>
>HBase 0.94.18 is a bug fix release with 26 fixes:
>    [HBASE-9708] - Improve Snapshot Name Error Message
>    [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>    [HBASE-10514] - Forward port HBASE-10466, possible data loss when failed flushes
>    [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang in an infinite loop.
>    [HBASE-10575] - ReplicationSource thread can't be terminated if it runs into the loop to contact peer's zk ensemble and fails continuously
>    [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on number of rpc calls to the server.
>    [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>    [HBASE-10598] - Written data can not be read out because MemStore#timeRangeTracker might be updated concurrently
>    [HBASE-10614] - Master could not be stopped
>    [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>    [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
>    [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>    [HBASE-10631] - Avoid extra seek on FileLink open
>    [HBASE-10642] - Add M/R over snapshots to 0.94
>    [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for -sidelineCorruptHfiles option
>    [HBASE-10682] - region_mover.rb throws "can't convert nil into String" for regions moved
>    [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>    [HBASE-10716] - [Configuration]: hbase.regionserver.region.split.policy should be part of hbase-default.xml
>    [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be negative
>    [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not account for links and reference files.
>    [HBASE-10731] - Fix environment variables typos in scripts
>    [HBASE-10738] - AssignmentManager should shut down executors on stop
>    [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be synchronized
>    [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail since HBASE-10514 went in
>    [HBASE-8604] - improve reporting of incorrect peer address in replication
>    [HBASE-9914] - Port fix for HBASE-9836 'Intermittent TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking failure' to 0.94
>
>Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots to 0.94.
>
>The list of changes is also available here: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>
>Here're the jenkins runs for this RC: https://builds.apache.org/job/HBase-0.94.18/17/ and https://builds.apache.org/job/HBase-0.94.18-security/7/
>
>Please try out the RC, check out the doc, take it for a spin, etc, and vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.
>
>Thanks.
>
>-- Lars

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Ted Yu <yu...@gmail.com>.
+1

- checked documentation and tarball

- Ran unit test suite using secure profile which passed

- Ran in local and distributed mode

Cheers


On Wed, Mar 19, 2014 at 1:59 PM, lars hofhansl <la...@apache.org> wrote:

> +1 from (in case that wasn't obvious)
>
> - Checked the tar balls
> - Spot checked the UI pages
>
> - Tested with Hadoop 1 and Hadoop 2.
> - Tested M/R over snapshots (Hadoop 1 only)
> - Loaded 100m rows. Scanned, flushed, scanned again, compacted, scanned
> yet again.
> - Disabled/enabled/dropped tables, etc.
>
>
> Please remember to have a look. I know a lot of RCs came out at the same
> time; release testing is an important service to the community.
>
>
> -- Lars
>
>
>
> ________________________________
>  From: lars hofhansl <la...@apache.org>
> To: hbase-dev <de...@hbase.apache.org>
> Sent: Friday, March 14, 2014 11:44 PM
> Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for
> download
>
>
> The 1st 0.94.18 RC is available for download at
> http://people.apache.org/~larsh/hbase-0.94.18-rc0/
> Signed with my code signing key: C7CFE328
>
> HBase 0.94.18 is a bug fix release with 26 fixes:
>     [HBASE-9708] - Improve Snapshot Name Error Message
>     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
> failed flushes
>     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang
> in an infinite loop.
>     [HBASE-10575] - ReplicationSource thread can't be terminated if it
> runs into the loop to contact peer's zk ensemble and fails continuously
>     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
> number of rpc calls to the server.
>     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>     [HBASE-10598] - Written data can not be read out because
> MemStore#timeRangeTracker might be updated concurrently
>     [HBASE-10614] - Master could not be stopped
>     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>     [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
>     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>     [HBASE-10631] - Avoid extra seek on FileLink open
>     [HBASE-10642] - Add M/R over snapshots to 0.94
>     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
> -sidelineCorruptHfiles option
>     [HBASE-10682] - region_mover.rb throws "can't convert nil into String"
> for regions moved
>     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>     [HBASE-10716] - [Configuration]:
> hbase.regionserver.region.split.policy should be part of hbase-default.xml
>     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
> negative
>     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not
> account for links and reference files.
>     [HBASE-10731] - Fix environment variables typos in scripts
>     [HBASE-10738] - AssignmentManager should shut down executors on stop
>     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
> synchronized
>     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
> since HBASE-10514 went in
>     [HBASE-8604] - improve reporting of incorrect peer address in
> replication
>     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
> failure' to 0.94
>
> Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
> to 0.94.
>
> The list of changes is also available here:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>
> Here're the jenkins runs for this RC:
> https://builds.apache.org/job/HBase-0.94.18/17/ and
> https://builds.apache.org/job/HBase-0.94.18-security/7/
>
> Please try out the RC, check out the doc, take it for a spin, etc, and
> vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.
>
> Thanks.
>
> -- Lars
>

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by lars hofhansl <la...@apache.org>.
+1 from (in case that wasn't obvious)

- Checked the tar balls
- Spot checked the UI pages

- Tested with Hadoop 1 and Hadoop 2.
- Tested M/R over snapshots (Hadoop 1 only)
- Loaded 100m rows. Scanned, flushed, scanned again, compacted, scanned yet again.
- Disabled/enabled/dropped tables, etc.


Please remember to have a look. I know a lot of RCs came out at the same time; release testing is an important service to the community.


-- Lars



________________________________
 From: lars hofhansl <la...@apache.org>
To: hbase-dev <de...@hbase.apache.org> 
Sent: Friday, March 14, 2014 11:44 PM
Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for download
 

The 1st 0.94.18 RC is available for download at http://people.apache.org/~larsh/hbase-0.94.18-rc0/
Signed with my code signing key: C7CFE328

HBase 0.94.18 is a bug fix release with 26 fixes:
    [HBASE-9708] - Improve Snapshot Name Error Message
    [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
    [HBASE-10514] - Forward port HBASE-10466, possible data loss when failed flushes
    [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang in an infinite loop.
    [HBASE-10575] - ReplicationSource thread can't be terminated if it runs into the loop to contact peer's zk ensemble and fails continuously
    [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on number of rpc calls to the server.
    [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
    [HBASE-10598] - Written data can not be read out because MemStore#timeRangeTracker might be updated concurrently
    [HBASE-10614] - Master could not be stopped
    [HBASE-10622] - Improve log and Exceptions in Export Snapshot
    [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
    [HBASE-10627] - A logic mistake in HRegionServer isHealthy
    [HBASE-10631] - Avoid extra seek on FileLink open
    [HBASE-10642] - Add M/R over snapshots to 0.94
    [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for -sidelineCorruptHfiles option
    [HBASE-10682] - region_mover.rb throws "can't convert nil into String" for regions moved
    [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
    [HBASE-10716] - [Configuration]: hbase.regionserver.region.split.policy should be part of hbase-default.xml
    [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be negative
    [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not account for links and reference files.
    [HBASE-10731] - Fix environment variables typos in scripts
    [HBASE-10738] - AssignmentManager should shut down executors on stop
    [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be synchronized
    [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail since HBASE-10514 went in
    [HBASE-8604] - improve reporting of incorrect peer address in replication
    [HBASE-9914] - Port fix for HBASE-9836 'Intermittent TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking failure' to 0.94

Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots to 0.94.

The list of changes is also available here: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952

Here're the jenkins runs for this RC: https://builds.apache.org/job/HBase-0.94.18/17/ and https://builds.apache.org/job/HBase-0.94.18-security/7/

Please try out the RC, check out the doc, take it for a spin, etc, and vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.

Thanks.

-- Lars

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by Jean-Marc Spaggiari <je...@spaggiari.org>.
Testing it. Will provide a feedback before EOD since I'm gone tomorrow. So
far so good...


2014-03-21 17:49 GMT-04:00 lars hofhansl <la...@apache.org>:

> Please have a look folks... :)
>
>
> -- Lars
>
>
>
> ________________________________
>  From: lars hofhansl <la...@apache.org>
> To: hbase-dev <de...@hbase.apache.org>
> Sent: Friday, March 14, 2014 11:44 PM
> Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for
> download
>
>
> The 1st 0.94.18 RC is available for download at
> http://people.apache.org/~larsh/hbase-0.94.18-rc0/
> Signed with my code signing key: C7CFE328
>
> HBase 0.94.18 is a bug fix release with 26 fixes:
>     [HBASE-9708] - Improve Snapshot Name Error Message
>     [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
>     [HBASE-10514] - Forward port HBASE-10466, possible data loss when
> failed flushes
>     [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang
> in an infinite loop.
>     [HBASE-10575] - ReplicationSource thread can't be terminated if it
> runs into the loop to contact peer's zk ensemble and fails continuously
>     [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on
> number of rpc calls to the server.
>     [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
>     [HBASE-10598] - Written data can not be read out because
> MemStore#timeRangeTracker might be updated concurrently
>     [HBASE-10614] - Master could not be stopped
>     [HBASE-10622] - Improve log and Exceptions in Export Snapshot
>     [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
>     [HBASE-10627] - A logic mistake in HRegionServer isHealthy
>     [HBASE-10631] - Avoid extra seek on FileLink open
>     [HBASE-10642] - Add M/R over snapshots to 0.94
>     [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for
> -sidelineCorruptHfiles option
>     [HBASE-10682] - region_mover.rb throws "can't convert nil into String"
> for regions moved
>     [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
>     [HBASE-10716] - [Configuration]:
> hbase.regionserver.region.split.policy should be part of hbase-default.xml
>     [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be
> negative
>     [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not
> account for links and reference files.
>     [HBASE-10731] - Fix environment variables typos in scripts
>     [HBASE-10738] - AssignmentManager should shut down executors on stop
>     [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be
> synchronized
>     [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail
> since HBASE-10514 went in
>     [HBASE-8604] - improve reporting of incorrect peer address in
> replication
>     [HBASE-9914] - Port fix for HBASE-9836 'Intermittent
> TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking
> failure' to 0.94
>
> Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots
> to 0.94.
>
> The list of changes is also available here:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952
>
> Here're the jenkins runs for this RC:
> https://builds.apache.org/job/HBase-0.94.18/17/ and
> https://builds.apache.org/job/HBase-0.94.18-security/7/
>
> Please try out the RC, check out the doc, take it for a spin, etc, and
> vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.
>
> Thanks.
>
> -- Lars
>

Re: [VOTE] The 1st hbase 0.94.18 release candidate is available for download

Posted by lars hofhansl <la...@apache.org>.
Please have a look folks... :)


-- Lars



________________________________
 From: lars hofhansl <la...@apache.org>
To: hbase-dev <de...@hbase.apache.org> 
Sent: Friday, March 14, 2014 11:44 PM
Subject: [VOTE] The 1st hbase 0.94.18 release candidate is available for download
 

The 1st 0.94.18 RC is available for download at http://people.apache.org/~larsh/hbase-0.94.18-rc0/
Signed with my code signing key: C7CFE328

HBase 0.94.18 is a bug fix release with 26 fixes:
    [HBASE-9708] - Improve Snapshot Name Error Message
    [HBASE-9778] - Add hint to ExplicitColumnTracker to avoid seeking
    [HBASE-10514] - Forward port HBASE-10466, possible data loss when failed flushes
    [HBASE-10549] - When there is a hole, LoadIncrementalHFiles will hang in an infinite loop.
    [HBASE-10575] - ReplicationSource thread can't be terminated if it runs into the loop to contact peer's zk ensemble and fails continuously
    [HBASE-10583] - backport HBASE-8402 to 0.94 - ScanMetrics depends on number of rpc calls to the server.
    [HBASE-10594] - Speed up TestRestoreSnapshotFromClient
    [HBASE-10598] - Written data can not be read out because MemStore#timeRangeTracker might be updated concurrently
    [HBASE-10614] - Master could not be stopped
    [HBASE-10622] - Improve log and Exceptions in Export Snapshot
    [HBASE-10624] - Fix 2 new findbugs warnings introduced by HBASE-10598
    [HBASE-10627] - A logic mistake in HRegionServer isHealthy
    [HBASE-10631] - Avoid extra seek on FileLink open
    [HBASE-10642] - Add M/R over snapshots to 0.94
    [HBASE-10669] - [hbck tool] Usage is wrong for hbck tool for -sidelineCorruptHfiles option
    [HBASE-10682] - region_mover.rb throws "can't convert nil into String" for regions moved
    [HBASE-10712] - Backport HBASE-8304 to 0.94 and 0.96
    [HBASE-10716] - [Configuration]: hbase.regionserver.region.split.policy should be part of hbase-default.xml
    [HBASE-10718] - TestHLogSplit fails when it sets a KV size to be negative
    [HBASE-10722] - [0.94] HRegion.computeHDFSBlocksDistribution does not account for links and reference files.
    [HBASE-10731] - Fix environment variables typos in scripts
    [HBASE-10738] - AssignmentManager should shut down executors on stop
    [HBASE-10745] - Access ShutdownHook#fsShutdownHooks should be synchronized
    [HBASE-10751] - TestHRegion testWritesWhileScanning occasional fail since HBASE-10514 went in
    [HBASE-8604] - improve reporting of incorrect peer address in replication
    [HBASE-9914] - Port fix for HBASE-9836 'Intermittent TestRegionObserverScannerOpenHook#testRegionObserverCompactionTimeStacking failure' to 0.94

Notable is HBASE-10642, which ports MapReduce over HBase table-snapshots to 0.94.

The list of changes is also available here: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310753&version=12325952

Here're the jenkins runs for this RC: https://builds.apache.org/job/HBase-0.94.18/17/ and https://builds.apache.org/job/HBase-0.94.18-security/7/

Please try out the RC, check out the doc, take it for a spin, etc, and vote +1/-1 by EOD March 21th on whether we should release this as 0.94.18.

Thanks.

-- Lars