You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by Yannis Pavlidis <yp...@oneriot.com> on 2009/10/15 00:32:29 UTC

ROOT table does not get re-assigned

Hi all,

We are in the process of evaluating hadoop/hbase (using hadoop-0.20.1 and hbase-0.20.0) for some of our needs and I wanted to ask a question related with behavior I am seeing during our evaluation.

I have a small cluster setup containing for your simplicity: server1, server2, server3. Currently server1 runs the namenode for hadoop and server1, server2 and server3 run the datanodes. 

In addition, server1 is the master and server1, server2 and server3 run regionservers.

During my testing I see in the master logs that ROOT table has been assigned to server2 and META table has been assigned to server3 (I also have hbase managing zookeeper)

I run some of my tests and everything is working correctly (I am able to put/get/delete in tables).

Then I kill (simply kill <pid>) the regionserver on server1 (which holds neither ROOT or META regions) and everything is working properly (run the same suite).

Then I kill (simply kill <pid>) the regionserver that has ROOT assigned to it and it appears that the master never re-assigns the ROOT to another regionserver (there is still one running which also has the META region).

I can see the clients attempting to connect to server2 which is the regionserver that had the ROOT region (which is not running any more) and also I can see from web ui when I run the zkdump that the Region server holding ROOT: is still server2. 

This seems to be very easily reproducible by following the above steps (I have seen it getting reproduced with different server assignments of the META and ROOT tables).

I also tried using hbase-0.20-1 but I still seem to be getting the same results.

Any help would be highly appreciated.   

Thanks in advance,

Yannis Pavlidis.

Re: ROOT table does not get re-assigned

Posted by stack <st...@duboce.net>.
On Wed, Oct 14, 2009 at 4:58 PM, Ryan Rawson <ry...@gmail.com> wrote:

> Hey,
>
> Next time, you can use a service like pastebin.com or anything else like
> that.
>
> Yes, that would help and can you enable DEBUG?  (See
http://wiki.apache.org/hadoop/Hbase/FAQ#A5 for how).
Thanks for reporting this issue,
St.Ack

Re: ROOT table does not get re-assigned

Posted by Jonathan Gray <jl...@streamy.com>.
Yannis,

Excellent debug work!  Thanks.

I just filed HBASE-1908 and will do some testing on this issue today.

https://issues.apache.org/jira/browse/HBASE-1908

JG

Yannis Pavlidis wrote:
> Hey Ryan,
> 
> I performed additional testing with some alternate configurations and the problem arises (ONLY) when there is only one regionserver left which has the META table already assigned to it. 
> 
> In this case the ROOT table does not get assigned to the last regionserver (which holds the META table).
> 
> Interestingly enough though when there is only one regionserver left that has the ROOT table already assign to it then it can also have the META table re-assigned to it (if again is the only server - i.e. in this scenario you can have one regionserver holding both the META and ROOT tables).
> 
> Unless I am missing something I cannot find any reason why we cannot assign the ROOT table to the regionserver that manages the META table if it is the only one remaining (again it is an extreme case I agree that this can happen).
> 
> I applied and tested a fix (at the hbase-0.20.0 codebase) in the RegionManager::regionsAwaitingAssignment where I add the root table in the regionstoAssign set if the it is the metaServer and also the only server.
> 
> Here is the diff:
> 
> diff RegionManager.java.FIXES RegionManager.java
> 414c414
> <       if ((!isMetaServer) || (isMetaServer && isSingleServer)) {
> ---
>>       if (!isMetaServer) {
> 
> Let me know what you guys think.
> 
> Thanks,
> 
> Yannis.
> 
> -----Original Message-----
> From: Ryan Rawson [mailto:ryanobjc@gmail.com]
> Sent: Wed 10/14/2009 5:58 PM
> To: hbase-user@hadoop.apache.org
> Subject: Re: ROOT table does not get re-assigned
>  
> Hey,
> 
> Next time, you can use a service like pastebin.com or anything else like that.
> 
> So the log looks ok until the end. At that point, the master is
> relying on a regionserver heartbeat back to the master so that the
> master has a chance to direct the regionserver. But looks like the 3rd
> and last regionserver doesnt check in?
> 
> You say this is highly reproducible?  Are you able to run your test on
> more machines? A 3 node cluster is a little light, i wouldnt consider
> running HBase and HDFS on < 10 nodes for production.  It could be an
> artifact of having only 3 nodes too...
> 
> -ryan
> 

Re: ROOT table does not get re-assigned

Posted by Ryan Rawson <ry...@gmail.com>.
ah yes, there is some logic that prevents meta/root from being on the
same RS, which is desirable in a larger configuration.

On Thu, Oct 15, 2009 at 11:16 AM, Yannis Pavlidis <yp...@oneriot.com> wrote:
> Hey Ryan,
>
> I performed additional testing with some alternate configurations and the problem arises (ONLY) when there is only one regionserver left which has the META table already assigned to it.
>
> In this case the ROOT table does not get assigned to the last regionserver (which holds the META table).
>
> Interestingly enough though when there is only one regionserver left that has the ROOT table already assign to it then it can also have the META table re-assigned to it (if again is the only server - i.e. in this scenario you can have one regionserver holding both the META and ROOT tables).
>
> Unless I am missing something I cannot find any reason why we cannot assign the ROOT table to the regionserver that manages the META table if it is the only one remaining (again it is an extreme case I agree that this can happen).
>
> I applied and tested a fix (at the hbase-0.20.0 codebase) in the RegionManager::regionsAwaitingAssignment where I add the root table in the regionstoAssign set if the it is the metaServer and also the only server.
>
> Here is the diff:
>
> diff RegionManager.java.FIXES RegionManager.java
> 414c414
> <       if ((!isMetaServer) || (isMetaServer && isSingleServer)) {
> ---
>>       if (!isMetaServer) {
>
> Let me know what you guys think.
>
> Thanks,
>
> Yannis.
>
> -----Original Message-----
> From: Ryan Rawson [mailto:ryanobjc@gmail.com]
> Sent: Wed 10/14/2009 5:58 PM
> To: hbase-user@hadoop.apache.org
> Subject: Re: ROOT table does not get re-assigned
>
> Hey,
>
> Next time, you can use a service like pastebin.com or anything else like that.
>
> So the log looks ok until the end. At that point, the master is
> relying on a regionserver heartbeat back to the master so that the
> master has a chance to direct the regionserver. But looks like the 3rd
> and last regionserver doesnt check in?
>
> You say this is highly reproducible?  Are you able to run your test on
> more machines? A 3 node cluster is a little light, i wouldnt consider
> running HBase and HDFS on < 10 nodes for production.  It could be an
> artifact of having only 3 nodes too...
>
> -ryan
>
>

RE: ROOT table does not get re-assigned

Posted by Yannis Pavlidis <yp...@oneriot.com>.
Hey Ryan,

I performed additional testing with some alternate configurations and the problem arises (ONLY) when there is only one regionserver left which has the META table already assigned to it. 

In this case the ROOT table does not get assigned to the last regionserver (which holds the META table).

Interestingly enough though when there is only one regionserver left that has the ROOT table already assign to it then it can also have the META table re-assigned to it (if again is the only server - i.e. in this scenario you can have one regionserver holding both the META and ROOT tables).

Unless I am missing something I cannot find any reason why we cannot assign the ROOT table to the regionserver that manages the META table if it is the only one remaining (again it is an extreme case I agree that this can happen).

I applied and tested a fix (at the hbase-0.20.0 codebase) in the RegionManager::regionsAwaitingAssignment where I add the root table in the regionstoAssign set if the it is the metaServer and also the only server.

Here is the diff:

diff RegionManager.java.FIXES RegionManager.java
414c414
<       if ((!isMetaServer) || (isMetaServer && isSingleServer)) {
---
>       if (!isMetaServer) {

Let me know what you guys think.

Thanks,

Yannis.

-----Original Message-----
From: Ryan Rawson [mailto:ryanobjc@gmail.com]
Sent: Wed 10/14/2009 5:58 PM
To: hbase-user@hadoop.apache.org
Subject: Re: ROOT table does not get re-assigned
 
Hey,

Next time, you can use a service like pastebin.com or anything else like that.

So the log looks ok until the end. At that point, the master is
relying on a regionserver heartbeat back to the master so that the
master has a chance to direct the regionserver. But looks like the 3rd
and last regionserver doesnt check in?

You say this is highly reproducible?  Are you able to run your test on
more machines? A 3 node cluster is a little light, i wouldnt consider
running HBase and HDFS on < 10 nodes for production.  It could be an
artifact of having only 3 nodes too...

-ryan


Re: ROOT table does not get re-assigned

Posted by Ryan Rawson <ry...@gmail.com>.
Hey,

Next time, you can use a service like pastebin.com or anything else like that.

So the log looks ok until the end. At that point, the master is
relying on a regionserver heartbeat back to the master so that the
master has a chance to direct the regionserver. But looks like the 3rd
and last regionserver doesnt check in?

You say this is highly reproducible?  Are you able to run your test on
more machines? A 3 node cluster is a little light, i wouldnt consider
running HBase and HDFS on < 10 nodes for production.  It could be an
artifact of having only 3 nodes too...

-ryan

RE: ROOT table does not get re-assigned

Posted by Yannis Pavlidis <yp...@oneriot.com>.
[The attachment did not go through - Apologies for the long email]

Hi Ryan,

Thanks for the quick response. Here are master logs you have requested. For your convenience:

10.129.1.182 (cache02) has the ROOT assigned to it
10.129.1.181 (cache01) has the META assigned to it
10.129.1.186 (search01) is simply a region server.

First I kill search01 and then I kill cache02 (ROOT).

=========

2009-10-14 22:43:44,485 INFO org.apache.hadoop.hbase.master.RegionManager: -ROOT- region unset (but not set to be reassigned)
2009-10-14 22:43:44,487 INFO org.apache.hadoop.hbase.master.RegionManager: ROOT inserted into regionsInTransition
2009-10-14 22:43:45,007 INFO org.apache.zookeeper.ClientCnxn: Attempting connection to server cache02.dev02.oneriot.com/10.129.1.182:2181
2009-10-14 22:43:45,008 INFO org.apache.zookeeper.ClientCnxn: Priming connection to java.nio.channels.SocketChannel[connected local=/10.129.1.181:51721 remote=cache02.dev02.oneriot.com/10.129.1.182:2181]
2009-10-14 22:43:45,008 INFO org.apache.zookeeper.ClientCnxn: Server connection successful
2009-10-14 22:43:45,162 INFO org.apache.hadoop.hbase.master.HMaster: HMaster initialized on 10.129.1.181:59998
2009-10-14 22:43:45,176 INFO org.apache.hadoop.hbase.master.HMaster: Found log folder : cache01.dev02.oneriot.com,60020,1255390684310
2009-10-14 22:43:45,176 INFO org.apache.hadoop.hbase.master.HMaster: Log folder doesn't belong to a known region server, splitting
2009-10-14 22:43:45,189 INFO org.apache.hadoop.metrics.jvm.JvmMetrics: Initializing JVM Metrics with processName=Master, sessionId=HMaster
2009-10-14 22:43:45,189 INFO org.apache.hadoop.hbase.master.metrics.MasterMetrics: Initialized
2009-10-14 22:43:45,457 INFO org.apache.hadoop.http.HttpServer: Jetty bound to port 60010
2009-10-14 22:43:46,206 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server Responder: starting
2009-10-14 22:43:46,207 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server listener on 59998: starting
2009-10-14 22:43:46,207 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 0 on 59998: starting
2009-10-14 22:43:46,208 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 1 on 59998: starting
2009-10-14 22:43:46,209 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 2 on 59998: starting
2009-10-14 22:43:46,210 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 3 on 59998: starting
2009-10-14 22:43:46,210 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 5 on 59998: starting
2009-10-14 22:43:46,211 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 6 on 59998: starting
2009-10-14 22:43:46,211 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 7 on 59998: starting
2009-10-14 22:43:46,211 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 4 on 59998: starting
2009-10-14 22:43:46,212 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 8 on 59998: starting
2009-10-14 22:43:46,212 INFO org.apache.hadoop.ipc.HBaseServer: IPC Server handler 9 on 59998: starting
2009-10-14 22:43:46,290 INFO org.apache.hadoop.hbase.master.ServerManager: Received start message from: 10.129.1.186,60020,1255560229054
2009-10-14 22:43:46,291 INFO org.apache.hadoop.hbase.master.ServerManager: Received start message from: 10.129.1.182,60020,1255560229056
2009-10-14 22:43:46,297 INFO org.apache.hadoop.hbase.master.ServerManager: Received start message from: cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:43:47,423 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region -ROOT-,,0 to 10.129.1.182,60020,1255560229056
2009-10-14 22:43:50,436 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: -ROOT-,,0 from 10.129.1.182,60020,1255560229056; 1 of 1
2009-10-14 22:43:50,445 INFO org.apache.hadoop.hbase.master.RegionManager: exiting safe mode
2009-10-14 22:43:50,465 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:43:50,557 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:43:52,417 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region .META.,,1 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:43:55,428 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: .META.,,1 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 1
2009-10-14 22:43:55,431 INFO org.apache.hadoop.hbase.master.RegionServerOperation: .META.,,1 open on 10.129.1.181:60020
2009-10-14 22:43:55,438 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row .META.,,1 in region -ROOT-,,0 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:43:55,452 INFO org.apache.zookeeper.ZooKeeper: Initiating client connection, host=search01.dev02.oneriot.com:2181,cache02.dev02.oneriot.com:2181,cache01.dev02.oneriot.com:2181 sessionTimeout=60000 watcher=org.apache.hadoop.hbase.client.HConnectionManager$ClientZKWatcher@2c22d166
2009-10-14 22:43:55,454 INFO org.apache.zookeeper.ClientCnxn: Attempting connection to server search01.dev02.oneriot.com/10.129.1.186:2181
2009-10-14 22:43:55,454 INFO org.apache.zookeeper.ClientCnxn: Priming connection to java.nio.channels.SocketChannel[connected local=/10.129.1.181:46907 remote=search01.dev02.oneriot.com/10.129.1.186:2181]
2009-10-14 22:43:55,455 INFO org.apache.zookeeper.ClientCnxn: Server connection successful
2009-10-14 22:44:44,479 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 0.6666666666666666
2009-10-14 22:44:45,200 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:44:45,200 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:44:45,227 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:44:45,681 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,,1254897435391 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,682 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:45,768 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:44:45,768 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:44:46,546 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl964707,1254896601863 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,546 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1348606,1254909166144 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,546 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1894942,1254932529841 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,546 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl27473,1254887728392 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,546 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl638139,1254981667132 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,546 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl687884,1254887608757 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,546 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1967438,1254934935785 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,546 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl250937,1254883932873 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,547 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl13896,1254910372862 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:46,547 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1317478,1254907758894 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:47,579 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl854797,1254892917645 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,579 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl520869,1254882346390 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,579 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1371008,1254920133855 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,579 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1736837,1255011707681 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,579 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl730777,1254889232699 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,579 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl142053,1254933331157 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,579 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl17077,1254920653007 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,579 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl84311,1254892527847 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,580 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl797870,1254891071464 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:47,580 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400738629 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:48,725 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 from 10.129.1.186,60020,1255560229054; 1 of 19
2009-10-14 22:44:48,725 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 from 10.129.1.186,60020,1255560229054; 2 of 19
2009-10-14 22:44:48,725 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 from 10.129.1.186,60020,1255560229054; 3 of 19
2009-10-14 22:44:48,725 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 from 10.129.1.186,60020,1255560229054; 4 of 19
2009-10-14 22:44:48,725 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 from 10.129.1.186,60020,1255560229054; 5 of 19
2009-10-14 22:44:48,725 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 from 10.129.1.186,60020,1255560229054; 6 of 19
2009-10-14 22:44:48,725 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,,1254897435391 from 10.129.1.186,60020,1255560229054; 7 of 19
2009-10-14 22:44:48,725 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 from 10.129.1.186,60020,1255560229054; 8 of 19
2009-10-14 22:44:48,726 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 from 10.129.1.186,60020,1255560229054; 9 of 19
2009-10-14 22:44:48,726 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 from 10.129.1.186,60020,1255560229054; 10 of 19
2009-10-14 22:44:48,726 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 from 10.129.1.186,60020,1255560229054; 11 of 19
2009-10-14 22:44:48,726 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 from 10.129.1.186,60020,1255560229054; 12 of 19
2009-10-14 22:44:48,726 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 from 10.129.1.186,60020,1255560229054; 13 of 19
2009-10-14 22:44:48,726 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 open on 10.129.1.186:60020
2009-10-14 22:44:48,727 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 from 10.129.1.186,60020,1255560229054; 14 of 19
2009-10-14 22:44:48,727 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 from 10.129.1.186,60020,1255560229054; 15 of 19
2009-10-14 22:44:48,727 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 from 10.129.1.186,60020,1255560229054; 16 of 19
2009-10-14 22:44:48,727 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,,1254897435391 from 10.129.1.186,60020,1255560229054; 17 of 19
2009-10-14 22:44:48,727 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 from 10.129.1.186,60020,1255560229054; 18 of 19
2009-10-14 22:44:48,727 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 from 10.129.1.186,60020,1255560229054; 19 of 19
2009-10-14 22:44:48,730 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,732 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 open on 10.129.1.186:60020
2009-10-14 22:44:48,734 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,737 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 open on 10.129.1.186:60020
2009-10-14 22:44:48,739 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,741 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 open on 10.129.1.186:60020
2009-10-14 22:44:48,743 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,745 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,,1254897435391 open on 10.129.1.186:60020
2009-10-14 22:44:48,747 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,,1254897435391 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,749 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 open on 10.129.1.186:60020
2009-10-14 22:44:48,751 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,753 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 open on 10.129.1.186:60020
2009-10-14 22:44:48,755 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,758 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 open on 10.129.1.186:60020
2009-10-14 22:44:48,759 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,762 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 open on 10.129.1.186:60020
2009-10-14 22:44:48,765 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:48,767 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 open on 10.129.1.186:60020
2009-10-14 22:44:48,769 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:49,624 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1348606,1254909166144 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 19
2009-10-14 22:44:49,624 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1894942,1254932529841 from cache01.dev02.oneriot.com,60020,1255560226254; 2 of 19
2009-10-14 22:44:49,624 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl27473,1254887728392 from cache01.dev02.oneriot.com,60020,1255560226254; 3 of 19
2009-10-14 22:44:49,624 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl638139,1254981667132 from cache01.dev02.oneriot.com,60020,1255560226254; 4 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl687884,1254887608757 from cache01.dev02.oneriot.com,60020,1255560226254; 5 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1967438,1254934935785 from cache01.dev02.oneriot.com,60020,1255560226254; 6 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl250937,1254883932873 from cache01.dev02.oneriot.com,60020,1255560226254; 7 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl13896,1254910372862 from cache01.dev02.oneriot.com,60020,1255560226254; 8 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1317478,1254907758894 from cache01.dev02.oneriot.com,60020,1255560226254; 9 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl964707,1254896601863 from cache01.dev02.oneriot.com,60020,1255560226254; 10 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1348606,1254909166144 from cache01.dev02.oneriot.com,60020,1255560226254; 11 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1894942,1254932529841 from cache01.dev02.oneriot.com,60020,1255560226254; 12 of 19
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl964707,1254896601863 open on 10.129.1.181:60020
2009-10-14 22:44:49,625 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl27473,1254887728392 from cache01.dev02.oneriot.com,60020,1255560226254; 13 of 19
2009-10-14 22:44:49,626 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl638139,1254981667132 from cache01.dev02.oneriot.com,60020,1255560226254; 14 of 19
2009-10-14 22:44:49,626 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl687884,1254887608757 from cache01.dev02.oneriot.com,60020,1255560226254; 15 of 19
2009-10-14 22:44:49,626 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1967438,1254934935785 from cache01.dev02.oneriot.com,60020,1255560226254; 16 of 19
2009-10-14 22:44:49,626 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl250937,1254883932873 from cache01.dev02.oneriot.com,60020,1255560226254; 17 of 19
2009-10-14 22:44:49,626 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl13896,1254910372862 from cache01.dev02.oneriot.com,60020,1255560226254; 18 of 19
2009-10-14 22:44:49,626 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1317478,1254907758894 from cache01.dev02.oneriot.com,60020,1255560226254; 19 of 19
2009-10-14 22:44:49,628 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl964707,1254896601863 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,630 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1348606,1254909166144 open on 10.129.1.181:60020
2009-10-14 22:44:49,632 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1348606,1254909166144 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,634 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1894942,1254932529841 open on 10.129.1.181:60020
2009-10-14 22:44:49,636 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1894942,1254932529841 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,638 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl13896,1254910372862 open on 10.129.1.181:60020
2009-10-14 22:44:49,640 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl13896,1254910372862 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,643 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl250937,1254883932873 open on 10.129.1.181:60020
2009-10-14 22:44:49,644 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl250937,1254883932873 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,647 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1967438,1254934935785 open on 10.129.1.181:60020
2009-10-14 22:44:49,650 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1967438,1254934935785 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,653 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl687884,1254887608757 open on 10.129.1.181:60020
2009-10-14 22:44:49,655 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl687884,1254887608757 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,658 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl638139,1254981667132 open on 10.129.1.181:60020
2009-10-14 22:44:49,660 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl638139,1254981667132 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,663 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl27473,1254887728392 open on 10.129.1.181:60020
2009-10-14 22:44:49,665 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl27473,1254887728392 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:49,668 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1317478,1254907758894 open on 10.129.1.181:60020
2009-10-14 22:44:49,670 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1317478,1254907758894 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl520869,1254882346390 from 10.129.1.182,60020,1255560229056; 1 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1371008,1254920133855 from 10.129.1.182,60020,1255560229056; 2 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1736837,1255011707681 from 10.129.1.182,60020,1255560229056; 3 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl730777,1254889232699 from 10.129.1.182,60020,1255560229056; 4 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl142053,1254933331157 from 10.129.1.182,60020,1255560229056; 5 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl17077,1254920653007 from 10.129.1.182,60020,1255560229056; 6 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl84311,1254892527847 from 10.129.1.182,60020,1255560229056; 7 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl797870,1254891071464 from 10.129.1.182,60020,1255560229056; 8 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400738629 from 10.129.1.182,60020,1255560229056; 9 of 19
2009-10-14 22:44:50,615 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl854797,1254892917645 from 10.129.1.182,60020,1255560229056; 10 of 19
2009-10-14 22:44:50,616 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl520869,1254882346390 from 10.129.1.182,60020,1255560229056; 11 of 19
2009-10-14 22:44:50,616 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1371008,1254920133855 from 10.129.1.182,60020,1255560229056; 12 of 19
2009-10-14 22:44:50,616 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1736837,1255011707681 from 10.129.1.182,60020,1255560229056; 13 of 19
2009-10-14 22:44:50,616 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl854797,1254892917645 open on 10.129.1.182:60020
2009-10-14 22:44:50,616 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl730777,1254889232699 from 10.129.1.182,60020,1255560229056; 14 of 19
2009-10-14 22:44:50,617 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl142053,1254933331157 from 10.129.1.182,60020,1255560229056; 15 of 19
2009-10-14 22:44:50,617 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl17077,1254920653007 from 10.129.1.182,60020,1255560229056; 16 of 19
2009-10-14 22:44:50,617 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl84311,1254892527847 from 10.129.1.182,60020,1255560229056; 17 of 19
2009-10-14 22:44:50,617 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl797870,1254891071464 from 10.129.1.182,60020,1255560229056; 18 of 19
2009-10-14 22:44:50,617 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400738629 from 10.129.1.182,60020,1255560229056; 19 of 19
2009-10-14 22:44:50,619 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl854797,1254892917645 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,621 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl520869,1254882346390 open on 10.129.1.182:60020
2009-10-14 22:44:50,622 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl520869,1254882346390 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,624 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1371008,1254920133855 open on 10.129.1.182:60020
2009-10-14 22:44:50,625 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1371008,1254920133855 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,627 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl730777,1254889232699 open on 10.129.1.182:60020
2009-10-14 22:44:50,628 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl730777,1254889232699 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,630 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1736837,1255011707681 open on 10.129.1.182:60020
2009-10-14 22:44:50,631 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1736837,1255011707681 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,633 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl17077,1254920653007 open on 10.129.1.182:60020
2009-10-14 22:44:50,634 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl17077,1254920653007 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,635 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl142053,1254933331157 open on 10.129.1.182:60020
2009-10-14 22:44:50,637 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl142053,1254933331157 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,638 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400738629 open on 10.129.1.182:60020
2009-10-14 22:44:50,640 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400738629 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,641 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl84311,1254892527847 open on 10.129.1.182:60020
2009-10-14 22:44:50,643 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl84311,1254892527847 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:50,644 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl797870,1254891071464 open on 10.129.1.182:60020
2009-10-14 22:44:50,646 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl797870,1254891071464 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:51,743 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,743 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,744 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region contentTestTable,,1255370547991 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,744 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,744 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,744 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,744 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,744 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,744 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:51,744 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:52,640 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl396958,1254878042164 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,640 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl498527,1254881508282 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,640 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl331743,1254875993279 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,640 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl283705,1254887728392 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,641 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1146393,1254916289963 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,641 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl117652,1254902923414 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,641 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl140968,1255001628398 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,641 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl144501,1254912292805 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,641 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1428186,1254933331157 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:52,641 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1602594,1254917487719 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:53,631 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl147907,1254913246510 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl18461,1254925245439 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1103537,1254900708165 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl242086,1254883932873 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1687473,1254919919514 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl874238,1254981757068 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400749105 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl77132,1254890263756 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl107989,1254899927806 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:53,632 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1221401,1254904551550 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 from 10.129.1.186,60020,1255560229054; 1 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: contentTestTable,,1255370547991 from 10.129.1.186,60020,1255560229054; 2 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 from 10.129.1.186,60020,1255560229054; 3 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 from 10.129.1.186,60020,1255560229054; 4 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 from 10.129.1.186,60020,1255560229054; 5 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 from 10.129.1.186,60020,1255560229054; 6 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 from 10.129.1.186,60020,1255560229054; 7 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 from 10.129.1.186,60020,1255560229054; 8 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 from 10.129.1.186,60020,1255560229054; 9 of 19
2009-10-14 22:44:54,771 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 from 10.129.1.186,60020,1255560229054; 10 of 19
2009-10-14 22:44:54,772 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 from 10.129.1.186,60020,1255560229054; 11 of 19
2009-10-14 22:44:54,772 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: contentTestTable,,1255370547991 from 10.129.1.186,60020,1255560229054; 12 of 19
2009-10-14 22:44:54,772 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 open on 10.129.1.186:60020
2009-10-14 22:44:54,772 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 from 10.129.1.186,60020,1255560229054; 13 of 19
2009-10-14 22:44:54,772 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 from 10.129.1.186,60020,1255560229054; 14 of 19
2009-10-14 22:44:54,772 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 from 10.129.1.186,60020,1255560229054; 15 of 19
2009-10-14 22:44:54,773 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 from 10.129.1.186,60020,1255560229054; 16 of 19
2009-10-14 22:44:54,773 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 from 10.129.1.186,60020,1255560229054; 17 of 19
2009-10-14 22:44:54,773 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 from 10.129.1.186,60020,1255560229054; 18 of 19
2009-10-14 22:44:54,773 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 from 10.129.1.186,60020,1255560229054; 19 of 19
2009-10-14 22:44:54,775 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,777 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 open on 10.129.1.186:60020
2009-10-14 22:44:54,778 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,780 INFO org.apache.hadoop.hbase.master.RegionServerOperation: contentTestTable,,1255370547991 open on 10.129.1.186:60020
2009-10-14 22:44:54,781 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row contentTestTable,,1255370547991 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,783 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 open on 10.129.1.186:60020
2009-10-14 22:44:54,784 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,786 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 open on 10.129.1.186:60020
2009-10-14 22:44:54,788 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,789 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 open on 10.129.1.186:60020
2009-10-14 22:44:54,791 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,793 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 open on 10.129.1.186:60020
2009-10-14 22:44:54,794 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,796 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 open on 10.129.1.186:60020
2009-10-14 22:44:54,797 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,799 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 open on 10.129.1.186:60020
2009-10-14 22:44:54,800 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:54,802 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 open on 10.129.1.186:60020
2009-10-14 22:44:54,803 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:44:55,711 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl396958,1254878042164 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 20
2009-10-14 22:44:55,711 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl498527,1254881508282 from cache01.dev02.oneriot.com,60020,1255560226254; 2 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl331743,1254875993279 from cache01.dev02.oneriot.com,60020,1255560226254; 3 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl283705,1254887728392 from cache01.dev02.oneriot.com,60020,1255560226254; 4 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1146393,1254916289963 from cache01.dev02.oneriot.com,60020,1255560226254; 5 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl117652,1254902923414 from cache01.dev02.oneriot.com,60020,1255560226254; 6 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl140968,1255001628398 from cache01.dev02.oneriot.com,60020,1255560226254; 7 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl144501,1254912292805 from cache01.dev02.oneriot.com,60020,1255560226254; 8 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1428186,1254933331157 from cache01.dev02.oneriot.com,60020,1255560226254; 9 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1602594,1254917487719 from cache01.dev02.oneriot.com,60020,1255560226254; 10 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl396958,1254878042164 from cache01.dev02.oneriot.com,60020,1255560226254; 11 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl498527,1254881508282 from cache01.dev02.oneriot.com,60020,1255560226254; 12 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl331743,1254875993279 from cache01.dev02.oneriot.com,60020,1255560226254; 13 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl283705,1254887728392 from cache01.dev02.oneriot.com,60020,1255560226254; 14 of 20
2009-10-14 22:44:55,712 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl396958,1254878042164 open on 10.129.1.181:60020
2009-10-14 22:44:55,713 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1146393,1254916289963 from cache01.dev02.oneriot.com,60020,1255560226254; 15 of 20
2009-10-14 22:44:55,713 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl117652,1254902923414 from cache01.dev02.oneriot.com,60020,1255560226254; 16 of 20
2009-10-14 22:44:55,713 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl140968,1255001628398 from cache01.dev02.oneriot.com,60020,1255560226254; 17 of 20
2009-10-14 22:44:55,713 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl144501,1254912292805 from cache01.dev02.oneriot.com,60020,1255560226254; 18 of 20
2009-10-14 22:44:55,713 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1428186,1254933331157 from cache01.dev02.oneriot.com,60020,1255560226254; 19 of 20
2009-10-14 22:44:55,714 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1602594,1254917487719 from cache01.dev02.oneriot.com,60020,1255560226254; 20 of 20
2009-10-14 22:44:55,715 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl396958,1254878042164 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,717 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl498527,1254881508282 open on 10.129.1.181:60020
2009-10-14 22:44:55,719 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl498527,1254881508282 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,720 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl331743,1254875993279 open on 10.129.1.181:60020
2009-10-14 22:44:55,722 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl331743,1254875993279 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,723 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1146393,1254916289963 open on 10.129.1.181:60020
2009-10-14 22:44:55,725 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1146393,1254916289963 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,726 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl144501,1254912292805 open on 10.129.1.181:60020
2009-10-14 22:44:55,728 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl144501,1254912292805 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,729 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl140968,1255001628398 open on 10.129.1.181:60020
2009-10-14 22:44:55,731 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl140968,1255001628398 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,732 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl117652,1254902923414 open on 10.129.1.181:60020
2009-10-14 22:44:55,734 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl117652,1254902923414 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,736 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl283705,1254887728392 open on 10.129.1.181:60020
2009-10-14 22:44:55,738 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl283705,1254887728392 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,740 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1602594,1254917487719 open on 10.129.1.181:60020
2009-10-14 22:44:55,742 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1602594,1254917487719 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:55,744 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1428186,1254933331157 open on 10.129.1.181:60020
2009-10-14 22:44:55,746 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1428186,1254933331157 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl18461,1254925245439 from 10.129.1.182,60020,1255560229056; 1 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1103537,1254900708165 from 10.129.1.182,60020,1255560229056; 2 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl242086,1254883932873 from 10.129.1.182,60020,1255560229056; 3 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1687473,1254919919514 from 10.129.1.182,60020,1255560229056; 4 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl874238,1254981757068 from 10.129.1.182,60020,1255560229056; 5 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400749105 from 10.129.1.182,60020,1255560229056; 6 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl77132,1254890263756 from 10.129.1.182,60020,1255560229056; 7 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl107989,1254899927806 from 10.129.1.182,60020,1255560229056; 8 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1221401,1254904551550 from 10.129.1.182,60020,1255560229056; 9 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl147907,1254913246510 from 10.129.1.182,60020,1255560229056; 10 of 19
2009-10-14 22:44:56,671 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl18461,1254925245439 from 10.129.1.182,60020,1255560229056; 11 of 19
2009-10-14 22:44:56,672 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1103537,1254900708165 from 10.129.1.182,60020,1255560229056; 12 of 19
2009-10-14 22:44:56,672 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl147907,1254913246510 open on 10.129.1.182:60020
2009-10-14 22:44:56,672 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl242086,1254883932873 from 10.129.1.182,60020,1255560229056; 13 of 19
2009-10-14 22:44:56,672 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1687473,1254919919514 from 10.129.1.182,60020,1255560229056; 14 of 19
2009-10-14 22:44:56,672 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl874238,1254981757068 from 10.129.1.182,60020,1255560229056; 15 of 19
2009-10-14 22:44:56,672 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400749105 from 10.129.1.182,60020,1255560229056; 16 of 19
2009-10-14 22:44:56,673 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl77132,1254890263756 from 10.129.1.182,60020,1255560229056; 17 of 19
2009-10-14 22:44:56,673 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl107989,1254899927806 from 10.129.1.182,60020,1255560229056; 18 of 19
2009-10-14 22:44:56,673 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1221401,1254904551550 from 10.129.1.182,60020,1255560229056; 19 of 19
2009-10-14 22:44:56,674 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl147907,1254913246510 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,676 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl18461,1254925245439 open on 10.129.1.182:60020
2009-10-14 22:44:56,678 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl18461,1254925245439 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,679 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1103537,1254900708165 open on 10.129.1.182:60020
2009-10-14 22:44:56,681 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1103537,1254900708165 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,682 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1687473,1254919919514 open on 10.129.1.182:60020
2009-10-14 22:44:56,684 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1687473,1254919919514 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,685 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl874238,1254981757068 open on 10.129.1.182:60020
2009-10-14 22:44:56,687 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl874238,1254981757068 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,689 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl242086,1254883932873 open on 10.129.1.182:60020
2009-10-14 22:44:56,690 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl242086,1254883932873 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,692 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl107989,1254899927806 open on 10.129.1.182:60020
2009-10-14 22:44:56,693 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl107989,1254899927806 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,695 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1221401,1254904551550 open on 10.129.1.182:60020
2009-10-14 22:44:56,696 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1221401,1254904551550 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,697 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400749105 open on 10.129.1.182:60020
2009-10-14 22:44:56,699 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400749105 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:56,700 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl77132,1254890263756 open on 10.129.1.182:60020
2009-10-14 22:44:56,702 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl77132,1254890263756 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:57,788 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 to 10.129.1.186,60020,1255560229054
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl167822,1254919919514 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl188568,1254932114755 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1786232,1254923322454 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl55986,1254883354410 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1042082,1254899007428 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl342580,1254876386283 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl20426,1254885012717 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1716317,1254921046297 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl975852,1254991656263 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:58,729 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl509600,1254881939968 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:44:59,688 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1750558,1255011707681 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,688 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1243468,1254905391142 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,688 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1991043,1255021552829 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,688 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl816145,1254905582622 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,689 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1020015,1254898215881 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,689 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl179683,1255011823394 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,689 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl532025,1254971758657 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,689 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl61607,1254885410698 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,689 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl886046,1254981757068 to 10.129.1.182,60020,1255560229056
2009-10-14 22:44:59,689 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl182771,1254924443911 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 from 10.129.1.186,60020,1255560229054; 1 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 from 10.129.1.186,60020,1255560229054; 2 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 from 10.129.1.186,60020,1255560229054; 3 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 from 10.129.1.186,60020,1255560229054; 4 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 from 10.129.1.186,60020,1255560229054; 5 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 from 10.129.1.186,60020,1255560229054; 6 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 from 10.129.1.186,60020,1255560229054; 7 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 from 10.129.1.186,60020,1255560229054; 8 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 from 10.129.1.186,60020,1255560229054; 9 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 from 10.129.1.186,60020,1255560229054; 10 of 19
2009-10-14 22:45:00,817 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 from 10.129.1.186,60020,1255560229054; 11 of 19
2009-10-14 22:45:00,818 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 open on 10.129.1.186:60020
2009-10-14 22:45:00,818 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 from 10.129.1.186,60020,1255560229054; 12 of 19
2009-10-14 22:45:00,818 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 from 10.129.1.186,60020,1255560229054; 13 of 19
2009-10-14 22:45:00,818 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 from 10.129.1.186,60020,1255560229054; 14 of 19
2009-10-14 22:45:00,818 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 from 10.129.1.186,60020,1255560229054; 15 of 19
2009-10-14 22:45:00,819 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 from 10.129.1.186,60020,1255560229054; 16 of 19
2009-10-14 22:45:00,819 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 from 10.129.1.186,60020,1255560229054; 17 of 19
2009-10-14 22:45:00,819 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 from 10.129.1.186,60020,1255560229054; 18 of 19
2009-10-14 22:45:00,819 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 from 10.129.1.186,60020,1255560229054; 19 of 19
2009-10-14 22:45:00,820 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,822 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 open on 10.129.1.186:60020
2009-10-14 22:45:00,824 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,826 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 open on 10.129.1.186:60020
2009-10-14 22:45:00,827 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,829 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 open on 10.129.1.186:60020
2009-10-14 22:45:00,831 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,833 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 open on 10.129.1.186:60020
2009-10-14 22:45:00,834 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,836 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 open on 10.129.1.186:60020
2009-10-14 22:45:00,838 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,839 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 open on 10.129.1.186:60020
2009-10-14 22:45:00,841 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,843 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 open on 10.129.1.186:60020
2009-10-14 22:45:00,844 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,846 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 open on 10.129.1.186:60020
2009-10-14 22:45:00,847 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:00,849 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 open on 10.129.1.186:60020
2009-10-14 22:45:00,851 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl188568,1254932114755 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 19
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1786232,1254923322454 from cache01.dev02.oneriot.com,60020,1255560226254; 2 of 19
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl55986,1254883354410 from cache01.dev02.oneriot.com,60020,1255560226254; 3 of 19
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1042082,1254899007428 from cache01.dev02.oneriot.com,60020,1255560226254; 4 of 19
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl342580,1254876386283 from cache01.dev02.oneriot.com,60020,1255560226254; 5 of 19
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl20426,1254885012717 from cache01.dev02.oneriot.com,60020,1255560226254; 6 of 19
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1716317,1254921046297 from cache01.dev02.oneriot.com,60020,1255560226254; 7 of 19
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl975852,1254991656263 from cache01.dev02.oneriot.com,60020,1255560226254; 8 of 19
2009-10-14 22:45:01,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl509600,1254881939968 from cache01.dev02.oneriot.com,60020,1255560226254; 9 of 19
2009-10-14 22:45:01,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl167822,1254919919514 from cache01.dev02.oneriot.com,60020,1255560226254; 10 of 19
2009-10-14 22:45:01,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl188568,1254932114755 from cache01.dev02.oneriot.com,60020,1255560226254; 11 of 19
2009-10-14 22:45:01,800 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl167822,1254919919514 open on 10.129.1.181:60020
2009-10-14 22:45:01,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1786232,1254923322454 from cache01.dev02.oneriot.com,60020,1255560226254; 12 of 19
2009-10-14 22:45:01,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl55986,1254883354410 from cache01.dev02.oneriot.com,60020,1255560226254; 13 of 19
2009-10-14 22:45:01,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1042082,1254899007428 from cache01.dev02.oneriot.com,60020,1255560226254; 14 of 19
2009-10-14 22:45:01,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl342580,1254876386283 from cache01.dev02.oneriot.com,60020,1255560226254; 15 of 19
2009-10-14 22:45:01,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl20426,1254885012717 from cache01.dev02.oneriot.com,60020,1255560226254; 16 of 19
2009-10-14 22:45:01,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1716317,1254921046297 from cache01.dev02.oneriot.com,60020,1255560226254; 17 of 19
2009-10-14 22:45:01,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl975852,1254991656263 from cache01.dev02.oneriot.com,60020,1255560226254; 18 of 19
2009-10-14 22:45:01,802 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl509600,1254881939968 from cache01.dev02.oneriot.com,60020,1255560226254; 19 of 19
2009-10-14 22:45:01,803 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl167822,1254919919514 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,805 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl188568,1254932114755 open on 10.129.1.181:60020
2009-10-14 22:45:01,806 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl188568,1254932114755 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,808 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1786232,1254923322454 open on 10.129.1.181:60020
2009-10-14 22:45:01,810 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1786232,1254923322454 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,811 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl55986,1254883354410 open on 10.129.1.181:60020
2009-10-14 22:45:01,813 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl55986,1254883354410 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,815 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1716317,1254921046297 open on 10.129.1.181:60020
2009-10-14 22:45:01,817 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1716317,1254921046297 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,819 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1042082,1254899007428 open on 10.129.1.181:60020
2009-10-14 22:45:01,820 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1042082,1254899007428 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,822 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl342580,1254876386283 open on 10.129.1.181:60020
2009-10-14 22:45:01,823 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl342580,1254876386283 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,825 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl20426,1254885012717 open on 10.129.1.181:60020
2009-10-14 22:45:01,827 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl20426,1254885012717 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,828 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl509600,1254881939968 open on 10.129.1.181:60020
2009-10-14 22:45:01,830 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl509600,1254881939968 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:01,832 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl975852,1254991656263 open on 10.129.1.181:60020
2009-10-14 22:45:01,833 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl975852,1254991656263 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:02,716 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1243468,1254905391142 from 10.129.1.182,60020,1255560229056; 1 of 19
2009-10-14 22:45:02,716 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1991043,1255021552829 from 10.129.1.182,60020,1255560229056; 2 of 19
2009-10-14 22:45:02,716 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl816145,1254905582622 from 10.129.1.182,60020,1255560229056; 3 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1020015,1254898215881 from 10.129.1.182,60020,1255560229056; 4 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl179683,1255011823394 from 10.129.1.182,60020,1255560229056; 5 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl532025,1254971758657 from 10.129.1.182,60020,1255560229056; 6 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl61607,1254885410698 from 10.129.1.182,60020,1255560229056; 7 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl886046,1254981757068 from 10.129.1.182,60020,1255560229056; 8 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl182771,1254924443911 from 10.129.1.182,60020,1255560229056; 9 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1750558,1255011707681 from 10.129.1.182,60020,1255560229056; 10 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1243468,1254905391142 from 10.129.1.182,60020,1255560229056; 11 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1991043,1255021552829 from 10.129.1.182,60020,1255560229056; 12 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl816145,1254905582622 from 10.129.1.182,60020,1255560229056; 13 of 19
2009-10-14 22:45:02,717 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1750558,1255011707681 open on 10.129.1.182:60020
2009-10-14 22:45:02,718 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1020015,1254898215881 from 10.129.1.182,60020,1255560229056; 14 of 19
2009-10-14 22:45:02,718 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl179683,1255011823394 from 10.129.1.182,60020,1255560229056; 15 of 19
2009-10-14 22:45:02,718 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl532025,1254971758657 from 10.129.1.182,60020,1255560229056; 16 of 19
2009-10-14 22:45:02,718 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl61607,1254885410698 from 10.129.1.182,60020,1255560229056; 17 of 19
2009-10-14 22:45:02,718 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl886046,1254981757068 from 10.129.1.182,60020,1255560229056; 18 of 19
2009-10-14 22:45:02,719 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl182771,1254924443911 from 10.129.1.182,60020,1255560229056; 19 of 19
2009-10-14 22:45:02,720 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1750558,1255011707681 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,722 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1243468,1254905391142 open on 10.129.1.182:60020
2009-10-14 22:45:02,724 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1243468,1254905391142 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,726 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1991043,1255021552829 open on 10.129.1.182:60020
2009-10-14 22:45:02,727 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1991043,1255021552829 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,730 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1020015,1254898215881 open on 10.129.1.182:60020
2009-10-14 22:45:02,732 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1020015,1254898215881 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,735 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl61607,1254885410698 open on 10.129.1.182:60020
2009-10-14 22:45:02,738 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl61607,1254885410698 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,740 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl532025,1254971758657 open on 10.129.1.182:60020
2009-10-14 22:45:02,741 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl532025,1254971758657 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,744 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl179683,1255011823394 open on 10.129.1.182:60020
2009-10-14 22:45:02,746 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl179683,1255011823394 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,749 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl886046,1254981757068 open on 10.129.1.182:60020
2009-10-14 22:45:02,757 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl886046,1254981757068 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,760 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl816145,1254905582622 open on 10.129.1.182:60020
2009-10-14 22:45:02,761 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl816145,1254905582622 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:02,764 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl182771,1254924443911 open on 10.129.1.182:60020
2009-10-14 22:45:02,767 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl182771,1254924443911 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:03,835 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:03,836 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:04,824 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1836220,1254924845160 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,824 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl46605,1254880258322 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,824 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl785683,1254890664528 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,825 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl100955,1254897822716 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,825 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl152666,1255111576063 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,825 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1091472,1254900319312 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,825 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl440274,1254971538997 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,825 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl741884,1254902689078 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,825 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl418117,1254878887477 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:04,825 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1776285,1254922929381 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:05,735 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl650739,1254981667132 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,735 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl159218,1254917054830 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,735 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl545937,1254971758657 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,735 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1810556,1255011823394 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,735 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl697939,1254888026405 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,736 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl153772,1254915295863 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,736 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl908476,1254894616642 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,736 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl719533,1254888829710 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,736 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl38735,1254877634909 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:05,736 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl163512,1254918372908 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 from 10.129.1.186,60020,1255560229054; 1 of 19
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 from 10.129.1.186,60020,1255560229054; 2 of 19
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 from 10.129.1.186,60020,1255560229054; 3 of 19
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 from 10.129.1.186,60020,1255560229054; 4 of 19
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 from 10.129.1.186,60020,1255560229054; 5 of 19
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 from 10.129.1.186,60020,1255560229054; 6 of 19
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 from 10.129.1.186,60020,1255560229054; 7 of 19
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 from 10.129.1.186,60020,1255560229054; 8 of 19
2009-10-14 22:45:06,876 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 from 10.129.1.186,60020,1255560229054; 9 of 19
2009-10-14 22:45:06,877 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 from 10.129.1.186,60020,1255560229054; 10 of 19
2009-10-14 22:45:06,877 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 from 10.129.1.186,60020,1255560229054; 11 of 19
2009-10-14 22:45:06,877 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 open on 10.129.1.186:60020
2009-10-14 22:45:06,877 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 from 10.129.1.186,60020,1255560229054; 12 of 19
2009-10-14 22:45:06,877 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 from 10.129.1.186,60020,1255560229054; 13 of 19
2009-10-14 22:45:06,877 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 from 10.129.1.186,60020,1255560229054; 14 of 19
2009-10-14 22:45:06,878 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 from 10.129.1.186,60020,1255560229054; 15 of 19
2009-10-14 22:45:06,878 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 from 10.129.1.186,60020,1255560229054; 16 of 19
2009-10-14 22:45:06,878 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 from 10.129.1.186,60020,1255560229054; 17 of 19
2009-10-14 22:45:06,878 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 from 10.129.1.186,60020,1255560229054; 18 of 19
2009-10-14 22:45:06,878 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 from 10.129.1.186,60020,1255560229054; 19 of 19
2009-10-14 22:45:06,879 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,881 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 open on 10.129.1.186:60020
2009-10-14 22:45:06,883 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,884 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 open on 10.129.1.186:60020
2009-10-14 22:45:06,885 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,887 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 open on 10.129.1.186:60020
2009-10-14 22:45:06,888 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,891 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 open on 10.129.1.186:60020
2009-10-14 22:45:06,893 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,895 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 open on 10.129.1.186:60020
2009-10-14 22:45:06,897 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,900 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 open on 10.129.1.186:60020
2009-10-14 22:45:06,901 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,903 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 open on 10.129.1.186:60020
2009-10-14 22:45:06,905 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,906 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 open on 10.129.1.186:60020
2009-10-14 22:45:06,908 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:06,910 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 open on 10.129.1.186:60020
2009-10-14 22:45:06,911 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl46605,1254880258322 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl785683,1254890664528 from cache01.dev02.oneriot.com,60020,1255560226254; 2 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl100955,1254897822716 from cache01.dev02.oneriot.com,60020,1255560226254; 3 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl152666,1255111576063 from cache01.dev02.oneriot.com,60020,1255560226254; 4 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1091472,1254900319312 from cache01.dev02.oneriot.com,60020,1255560226254; 5 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl440274,1254971538997 from cache01.dev02.oneriot.com,60020,1255560226254; 6 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl741884,1254902689078 from cache01.dev02.oneriot.com,60020,1255560226254; 7 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl418117,1254878887477 from cache01.dev02.oneriot.com,60020,1255560226254; 8 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1776285,1254922929381 from cache01.dev02.oneriot.com,60020,1255560226254; 9 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1836220,1254924845160 from cache01.dev02.oneriot.com,60020,1255560226254; 10 of 19
2009-10-14 22:45:07,894 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl46605,1254880258322 from cache01.dev02.oneriot.com,60020,1255560226254; 11 of 19
2009-10-14 22:45:07,895 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl785683,1254890664528 from cache01.dev02.oneriot.com,60020,1255560226254; 12 of 19
2009-10-14 22:45:07,895 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1836220,1254924845160 open on 10.129.1.181:60020
2009-10-14 22:45:07,895 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl100955,1254897822716 from cache01.dev02.oneriot.com,60020,1255560226254; 13 of 19
2009-10-14 22:45:07,895 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl152666,1255111576063 from cache01.dev02.oneriot.com,60020,1255560226254; 14 of 19
2009-10-14 22:45:07,895 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1091472,1254900319312 from cache01.dev02.oneriot.com,60020,1255560226254; 15 of 19
2009-10-14 22:45:07,895 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl440274,1254971538997 from cache01.dev02.oneriot.com,60020,1255560226254; 16 of 19
2009-10-14 22:45:07,896 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl741884,1254902689078 from cache01.dev02.oneriot.com,60020,1255560226254; 17 of 19
2009-10-14 22:45:07,896 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl418117,1254878887477 from cache01.dev02.oneriot.com,60020,1255560226254; 18 of 19
2009-10-14 22:45:07,896 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1776285,1254922929381 from cache01.dev02.oneriot.com,60020,1255560226254; 19 of 19
2009-10-14 22:45:07,897 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1836220,1254924845160 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,899 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl46605,1254880258322 open on 10.129.1.181:60020
2009-10-14 22:45:07,901 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl46605,1254880258322 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,903 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl785683,1254890664528 open on 10.129.1.181:60020
2009-10-14 22:45:07,904 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl785683,1254890664528 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,906 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl152666,1255111576063 open on 10.129.1.181:60020
2009-10-14 22:45:07,907 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl152666,1255111576063 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,910 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1091472,1254900319312 open on 10.129.1.181:60020
2009-10-14 22:45:07,911 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1091472,1254900319312 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,913 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl100955,1254897822716 open on 10.129.1.181:60020
2009-10-14 22:45:07,914 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl100955,1254897822716 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,916 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl418117,1254878887477 open on 10.129.1.181:60020
2009-10-14 22:45:07,917 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl418117,1254878887477 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,919 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1776285,1254922929381 open on 10.129.1.181:60020
2009-10-14 22:45:07,921 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1776285,1254922929381 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,922 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl440274,1254971538997 open on 10.129.1.181:60020
2009-10-14 22:45:07,925 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl440274,1254971538997 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:07,927 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl741884,1254902689078 open on 10.129.1.181:60020
2009-10-14 22:45:07,929 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl741884,1254902689078 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl159218,1254917054830 from 10.129.1.182,60020,1255560229056; 1 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl545937,1254971758657 from 10.129.1.182,60020,1255560229056; 2 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1810556,1255011823394 from 10.129.1.182,60020,1255560229056; 3 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl697939,1254888026405 from 10.129.1.182,60020,1255560229056; 4 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl153772,1254915295863 from 10.129.1.182,60020,1255560229056; 5 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl908476,1254894616642 from 10.129.1.182,60020,1255560229056; 6 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl719533,1254888829710 from 10.129.1.182,60020,1255560229056; 7 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl38735,1254877634909 from 10.129.1.182,60020,1255560229056; 8 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl163512,1254918372908 from 10.129.1.182,60020,1255560229056; 9 of 19
2009-10-14 22:45:08,765 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl650739,1254981667132 from 10.129.1.182,60020,1255560229056; 10 of 19
2009-10-14 22:45:08,766 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl159218,1254917054830 from 10.129.1.182,60020,1255560229056; 11 of 19
2009-10-14 22:45:08,766 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl545937,1254971758657 from 10.129.1.182,60020,1255560229056; 12 of 19
2009-10-14 22:45:08,766 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl650739,1254981667132 open on 10.129.1.182:60020
2009-10-14 22:45:08,766 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1810556,1255011823394 from 10.129.1.182,60020,1255560229056; 13 of 19
2009-10-14 22:45:08,766 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl697939,1254888026405 from 10.129.1.182,60020,1255560229056; 14 of 19
2009-10-14 22:45:08,766 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl153772,1254915295863 from 10.129.1.182,60020,1255560229056; 15 of 19
2009-10-14 22:45:08,766 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl908476,1254894616642 from 10.129.1.182,60020,1255560229056; 16 of 19
2009-10-14 22:45:08,767 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl719533,1254888829710 from 10.129.1.182,60020,1255560229056; 17 of 19
2009-10-14 22:45:08,767 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl38735,1254877634909 from 10.129.1.182,60020,1255560229056; 18 of 19
2009-10-14 22:45:08,767 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl163512,1254918372908 from 10.129.1.182,60020,1255560229056; 19 of 19
2009-10-14 22:45:08,768 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl650739,1254981667132 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,770 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl159218,1254917054830 open on 10.129.1.182:60020
2009-10-14 22:45:08,772 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl159218,1254917054830 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,773 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl545937,1254971758657 open on 10.129.1.182:60020
2009-10-14 22:45:08,775 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl545937,1254971758657 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,776 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl697939,1254888026405 open on 10.129.1.182:60020
2009-10-14 22:45:08,778 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl697939,1254888026405 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,779 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl153772,1254915295863 open on 10.129.1.182:60020
2009-10-14 22:45:08,781 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl153772,1254915295863 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,783 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1810556,1255011823394 open on 10.129.1.182:60020
2009-10-14 22:45:08,784 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1810556,1255011823394 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,786 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl38735,1254877634909 open on 10.129.1.182:60020
2009-10-14 22:45:08,787 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl38735,1254877634909 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,789 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl163512,1254918372908 open on 10.129.1.182:60020
2009-10-14 22:45:08,790 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl163512,1254918372908 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,791 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl908476,1254894616642 open on 10.129.1.182:60020
2009-10-14 22:45:08,793 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl908476,1254894616642 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:08,794 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl719533,1254888829710 open on 10.129.1.182:60020
2009-10-14 22:45:08,796 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl719533,1254888829710 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:09,895 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 from 10.129.1.186,60020,1255560229054; 1 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 from 10.129.1.186,60020,1255560229054; 2 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 from 10.129.1.186,60020,1255560229054; 3 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 from 10.129.1.186,60020,1255560229054; 4 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 from 10.129.1.186,60020,1255560229054; 5 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 from 10.129.1.186,60020,1255560229054; 6 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 from 10.129.1.186,60020,1255560229054; 7 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 from 10.129.1.186,60020,1255560229054; 8 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 from 10.129.1.186,60020,1255560229054; 9 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 from 10.129.1.186,60020,1255560229054; 10 of 19
2009-10-14 22:45:12,924 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 from 10.129.1.186,60020,1255560229054; 11 of 19
2009-10-14 22:45:12,925 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 from 10.129.1.186,60020,1255560229054; 12 of 19
2009-10-14 22:45:12,925 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 open on 10.129.1.186:60020
2009-10-14 22:45:12,925 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 from 10.129.1.186,60020,1255560229054; 13 of 19
2009-10-14 22:45:12,925 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 from 10.129.1.186,60020,1255560229054; 14 of 19
2009-10-14 22:45:12,925 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 from 10.129.1.186,60020,1255560229054; 15 of 19
2009-10-14 22:45:12,925 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 from 10.129.1.186,60020,1255560229054; 16 of 19
2009-10-14 22:45:12,926 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 from 10.129.1.186,60020,1255560229054; 17 of 19
2009-10-14 22:45:12,926 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 from 10.129.1.186,60020,1255560229054; 18 of 19
2009-10-14 22:45:12,926 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 from 10.129.1.186,60020,1255560229054; 19 of 19
2009-10-14 22:45:12,928 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,930 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 open on 10.129.1.186:60020
2009-10-14 22:45:12,931 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,932 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 open on 10.129.1.186:60020
2009-10-14 22:45:12,934 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,935 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 open on 10.129.1.186:60020
2009-10-14 22:45:12,937 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,939 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 open on 10.129.1.186:60020
2009-10-14 22:45:12,940 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,941 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 open on 10.129.1.186:60020
2009-10-14 22:45:12,943 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,944 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 open on 10.129.1.186:60020
2009-10-14 22:45:12,946 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,948 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 open on 10.129.1.186:60020
2009-10-14 22:45:12,950 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,952 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 open on 10.129.1.186:60020
2009-10-14 22:45:12,953 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:12,956 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 open on 10.129.1.186:60020
2009-10-14 22:45:12,957 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:13,928 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1398620,1255001628398 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl29948,1254874762140 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl191490,1255021584264 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl21367,1254885012717 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1124651,1254901489756 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl708584,1254888432113 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl605561,1254885006600 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1568648,1255011630303 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1515601,1255111576063 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:13,929 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl353605,1254876889515 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 22:45:14,800 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl194369,1254934085977 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,800 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl595792,1254884602992 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,800 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl931411,1254895437246 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,801 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1453561,1254912292805 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,801 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1928527,1255021584264 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,801 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl126785,1255001741751 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,801 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl167003,1254919456164 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,801 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl103119,1254898609631 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,801 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl453158,1254971538997 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:14,801 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl57246,1254883758267 to 10.129.1.182,60020,1255560229056
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl29948,1254874762140 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl191490,1255021584264 from cache01.dev02.oneriot.com,60020,1255560226254; 2 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl21367,1254885012717 from cache01.dev02.oneriot.com,60020,1255560226254; 3 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1124651,1254901489756 from cache01.dev02.oneriot.com,60020,1255560226254; 4 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl708584,1254888432113 from cache01.dev02.oneriot.com,60020,1255560226254; 5 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl605561,1254885006600 from cache01.dev02.oneriot.com,60020,1255560226254; 6 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1568648,1255011630303 from cache01.dev02.oneriot.com,60020,1255560226254; 7 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1515601,1255111576063 from cache01.dev02.oneriot.com,60020,1255560226254; 8 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl353605,1254876889515 from cache01.dev02.oneriot.com,60020,1255560226254; 9 of 19
2009-10-14 22:45:16,999 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1398620,1255001628398 from cache01.dev02.oneriot.com,60020,1255560226254; 10 of 19
2009-10-14 22:45:17,000 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl29948,1254874762140 from cache01.dev02.oneriot.com,60020,1255560226254; 11 of 19
2009-10-14 22:45:17,000 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl191490,1255021584264 from cache01.dev02.oneriot.com,60020,1255560226254; 12 of 19
2009-10-14 22:45:17,000 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl21367,1254885012717 from cache01.dev02.oneriot.com,60020,1255560226254; 13 of 19
2009-10-14 22:45:17,000 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1398620,1255001628398 open on 10.129.1.181:60020
2009-10-14 22:45:17,000 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1124651,1254901489756 from cache01.dev02.oneriot.com,60020,1255560226254; 14 of 19
2009-10-14 22:45:17,000 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl708584,1254888432113 from cache01.dev02.oneriot.com,60020,1255560226254; 15 of 19
2009-10-14 22:45:17,001 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl605561,1254885006600 from cache01.dev02.oneriot.com,60020,1255560226254; 16 of 19
2009-10-14 22:45:17,001 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1568648,1255011630303 from cache01.dev02.oneriot.com,60020,1255560226254; 17 of 19
2009-10-14 22:45:17,001 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1515601,1255111576063 from cache01.dev02.oneriot.com,60020,1255560226254; 18 of 19
2009-10-14 22:45:17,001 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl353605,1254876889515 from cache01.dev02.oneriot.com,60020,1255560226254; 19 of 19
2009-10-14 22:45:17,003 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1398620,1255001628398 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,004 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl29948,1254874762140 open on 10.129.1.181:60020
2009-10-14 22:45:17,006 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl29948,1254874762140 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,008 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl191490,1255021584264 open on 10.129.1.181:60020
2009-10-14 22:45:17,009 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl191490,1255021584264 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,011 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1124651,1254901489756 open on 10.129.1.181:60020
2009-10-14 22:45:17,013 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1124651,1254901489756 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,015 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl21367,1254885012717 open on 10.129.1.181:60020
2009-10-14 22:45:17,018 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl21367,1254885012717 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,020 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl605561,1254885006600 open on 10.129.1.181:60020
2009-10-14 22:45:17,022 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl605561,1254885006600 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,023 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl708584,1254888432113 open on 10.129.1.181:60020
2009-10-14 22:45:17,025 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl708584,1254888432113 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,026 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl353605,1254876889515 open on 10.129.1.181:60020
2009-10-14 22:45:17,028 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl353605,1254876889515 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,030 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1568648,1255011630303 open on 10.129.1.181:60020
2009-10-14 22:45:17,032 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1568648,1255011630303 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,035 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1515601,1255111576063 open on 10.129.1.181:60020
2009-10-14 22:45:17,037 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1515601,1255111576063 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 22:45:17,831 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl595792,1254884602992 from 10.129.1.182,60020,1255560229056; 1 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl931411,1254895437246 from 10.129.1.182,60020,1255560229056; 2 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1453561,1254912292805 from 10.129.1.182,60020,1255560229056; 3 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1928527,1255021584264 from 10.129.1.182,60020,1255560229056; 4 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl126785,1255001741751 from 10.129.1.182,60020,1255560229056; 5 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl167003,1254919456164 from 10.129.1.182,60020,1255560229056; 6 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl103119,1254898609631 from 10.129.1.182,60020,1255560229056; 7 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl453158,1254971538997 from 10.129.1.182,60020,1255560229056; 8 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl57246,1254883758267 from 10.129.1.182,60020,1255560229056; 9 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl194369,1254934085977 from 10.129.1.182,60020,1255560229056; 10 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl595792,1254884602992 from 10.129.1.182,60020,1255560229056; 11 of 19
2009-10-14 22:45:17,832 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl931411,1254895437246 from 10.129.1.182,60020,1255560229056; 12 of 19
2009-10-14 22:45:17,833 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl194369,1254934085977 open on 10.129.1.182:60020
2009-10-14 22:45:17,833 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1453561,1254912292805 from 10.129.1.182,60020,1255560229056; 13 of 19
2009-10-14 22:45:17,833 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1928527,1255021584264 from 10.129.1.182,60020,1255560229056; 14 of 19
2009-10-14 22:45:17,833 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl126785,1255001741751 from 10.129.1.182,60020,1255560229056; 15 of 19
2009-10-14 22:45:17,833 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl167003,1254919456164 from 10.129.1.182,60020,1255560229056; 16 of 19
2009-10-14 22:45:17,833 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl103119,1254898609631 from 10.129.1.182,60020,1255560229056; 17 of 19
2009-10-14 22:45:17,834 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl453158,1254971538997 from 10.129.1.182,60020,1255560229056; 18 of 19
2009-10-14 22:45:17,834 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl57246,1254883758267 from 10.129.1.182,60020,1255560229056; 19 of 19
2009-10-14 22:45:17,835 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl194369,1254934085977 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,837 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl595792,1254884602992 open on 10.129.1.182:60020
2009-10-14 22:45:17,838 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl595792,1254884602992 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,840 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl931411,1254895437246 open on 10.129.1.182:60020
2009-10-14 22:45:17,841 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl931411,1254895437246 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,843 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1928527,1255021584264 open on 10.129.1.182:60020
2009-10-14 22:45:17,844 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1928527,1255021584264 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,846 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl126785,1255001741751 open on 10.129.1.182:60020
2009-10-14 22:45:17,848 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl126785,1255001741751 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,849 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl167003,1254919456164 open on 10.129.1.182:60020
2009-10-14 22:45:17,851 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl167003,1254919456164 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,852 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1453561,1254912292805 open on 10.129.1.182:60020
2009-10-14 22:45:17,854 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1453561,1254912292805 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,855 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl57246,1254883758267 open on 10.129.1.182:60020
2009-10-14 22:45:17,856 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl57246,1254883758267 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,858 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl453158,1254971538997 open on 10.129.1.182:60020
2009-10-14 22:45:17,860 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl453158,1254971538997 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:17,861 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl103119,1254898609631 open on 10.129.1.182:60020
2009-10-14 22:45:17,862 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl103119,1254898609631 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 22:45:18,961 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:18,961 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:18,961 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:18,962 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:18,962 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:18,962 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:18,962 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 to 10.129.1.186,60020,1255560229054
2009-10-14 22:45:21,988 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 from 10.129.1.186,60020,1255560229054; 1 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 from 10.129.1.186,60020,1255560229054; 2 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 from 10.129.1.186,60020,1255560229054; 3 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 from 10.129.1.186,60020,1255560229054; 4 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 from 10.129.1.186,60020,1255560229054; 5 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 from 10.129.1.186,60020,1255560229054; 6 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 from 10.129.1.186,60020,1255560229054; 7 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 from 10.129.1.186,60020,1255560229054; 8 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 open on 10.129.1.186:60020
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 from 10.129.1.186,60020,1255560229054; 9 of 13
2009-10-14 22:45:21,989 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 from 10.129.1.186,60020,1255560229054; 10 of 13
2009-10-14 22:45:21,990 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 from 10.129.1.186,60020,1255560229054; 11 of 13
2009-10-14 22:45:21,990 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 from 10.129.1.186,60020,1255560229054; 12 of 13
2009-10-14 22:45:21,990 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 from 10.129.1.186,60020,1255560229054; 13 of 13
2009-10-14 22:45:21,992 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:21,994 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 open on 10.129.1.186:60020
2009-10-14 22:45:21,995 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:21,998 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 open on 10.129.1.186:60020
2009-10-14 22:45:22,000 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:22,002 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 open on 10.129.1.186:60020
2009-10-14 22:45:22,003 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:22,005 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 open on 10.129.1.186:60020
2009-10-14 22:45:22,007 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:22,008 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 open on 10.129.1.186:60020
2009-10-14 22:45:22,010 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:22,012 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 open on 10.129.1.186:60020
2009-10-14 22:45:22,014 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 in region .META.,,1 with startcode=1255560229054, server=10.129.1.186:60020
2009-10-14 22:45:44,488 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:45:45,210 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:45:45,210 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:45:45,223 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:45:45,542 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:45:45,542 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:46:44,498 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:46:45,221 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:46:45,221 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:46:45,232 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:46:45,517 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:46:45,517 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:47:44,509 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:47:45,232 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:47:45,232 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:47:45,241 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:47:45,502 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:47:45,503 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:48:44,521 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:48:45,243 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:48:45,244 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:48:45,254 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:48:45,496 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:48:45,496 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:49:44,533 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:49:45,254 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:49:45,255 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:49:45,266 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:49:45,498 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:49:45,498 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:50:44,543 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:50:45,266 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:50:45,266 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:50:45,279 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:50:45,515 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:50:45,515 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:51:44,554 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:51:45,277 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:51:45,277 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:51:45,287 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:51:45,486 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:51:45,486 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:52:44,565 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:52:45,288 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:52:45,289 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:52:45,298 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:52:45,495 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:52:45,496 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:53:44,576 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:53:45,299 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:53:45,300 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:53:45,309 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:53:45,510 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:53:45,510 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:54:44,585 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:54:45,309 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:54:45,310 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:54:45,318 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:54:45,521 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:54:45,521 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:55:44,595 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:55:45,320 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:55:45,321 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:55:45,329 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:55:45,534 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:55:45,534 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:56:44,606 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:56:45,330 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:56:45,333 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:56:45,340 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:56:45,546 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:56:45,546 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:57:44,618 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:57:45,341 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:57:45,345 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:57:45,350 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:57:45,560 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:57:45,560 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:58:44,627 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:58:45,352 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:58:45,354 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:58:45,363 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:58:45,563 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:58:45,563 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 22:59:44,637 INFO org.apache.hadoop.hbase.master.ServerManager: 3 region servers, 0 dead, average load 53.0
2009-10-14 22:59:45,363 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 22:59:45,365 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 22:59:45,374 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 22:59:45,586 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 22:59:45,586 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:00:41,655 INFO org.apache.hadoop.hbase.master.ServerManager: Removing server's info 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,655 INFO org.apache.hadoop.hbase.master.ServerManager: Region server 10.129.1.186,60020,1255560229054: MSG_REPORT_EXITING
2009-10-14 23:00:41,655 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,655 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: contentTestTable,,1255370547991 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,655 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,655 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,655 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,655 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,,1254897435391 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,656 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,657 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,658 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:41,659 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 from 10.129.1.186,60020,1255560229054
2009-10-14 23:00:42,140 DEBUG org.apache.hadoop.hbase.master.RegionManager: Assigning for address: 10.129.1.181:60020, startcode: 1255560226254, load: (requests=0, regions=51, usedHeap=37, maxHeap=987): total nregions to assign=57, nregions to reach balance=0, isMetaAssign=false
2009-10-14 23:00:42,140 DEBUG org.apache.hadoop.hbase.master.RegionManager: Doing for address: 10.129.1.181:60020, startcode: 1255560226254, load: (requests=0, regions=51, usedHeap=37, maxHeap=987) nregions: 1 and nRegionsToAssign: 57
2009-10-14 23:00:42,140 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,,1254897435391 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,141 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,144 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,146 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,147 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,149 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,151 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,153 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,155 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,157 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:42,158 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:43,109 DEBUG org.apache.hadoop.hbase.master.RegionManager: Assigning for address: 10.129.1.182:60020, startcode: 1255560229056, load: (requests=0, regions=51, usedHeap=34, maxHeap=987): total nregions to assign=47, nregions to reach balance=0, isMetaAssign=false
2009-10-14 23:00:43,109 DEBUG org.apache.hadoop.hbase.master.RegionManager: Doing for address: 10.129.1.182:60020, startcode: 1255560229056, load: (requests=0, regions=51, usedHeap=34, maxHeap=987) nregions: 1 and nRegionsToAssign: 47
2009-10-14 23:00:43,109 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,109 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,109 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,110 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,110 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,110 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,110 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,110 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,110 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,110 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,110 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,112 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,113 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,114 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,115 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,116 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,118 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,119 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,120 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:43,121 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:44,648 INFO org.apache.hadoop.hbase.master.ServerManager: 2 region servers, 0 dead, average load 51.0
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 from cache01.dev02.oneriot.com,60020,1255560226254; 2 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 from cache01.dev02.oneriot.com,60020,1255560226254; 3 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 from cache01.dev02.oneriot.com,60020,1255560226254; 4 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 from cache01.dev02.oneriot.com,60020,1255560226254; 5 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 from cache01.dev02.oneriot.com,60020,1255560226254; 6 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,,1254897435391 from cache01.dev02.oneriot.com,60020,1255560226254; 7 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 from cache01.dev02.oneriot.com,60020,1255560226254; 8 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 from cache01.dev02.oneriot.com,60020,1255560226254; 9 of 19
2009-10-14 23:00:45,207 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 from cache01.dev02.oneriot.com,60020,1255560226254; 10 of 19
2009-10-14 23:00:45,208 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 from cache01.dev02.oneriot.com,60020,1255560226254; 11 of 19
2009-10-14 23:00:45,208 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 from cache01.dev02.oneriot.com,60020,1255560226254; 12 of 19
2009-10-14 23:00:45,208 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 from cache01.dev02.oneriot.com,60020,1255560226254; 13 of 19
2009-10-14 23:00:45,208 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,208 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 from cache01.dev02.oneriot.com,60020,1255560226254; 14 of 19
2009-10-14 23:00:45,208 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 from cache01.dev02.oneriot.com,60020,1255560226254; 15 of 19
2009-10-14 23:00:45,208 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 open on 10.129.1.181:60020
2009-10-14 23:00:45,208 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 from cache01.dev02.oneriot.com,60020,1255560226254; 16 of 19
2009-10-14 23:00:45,209 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,,1254897435391 from cache01.dev02.oneriot.com,60020,1255560226254; 17 of 19
2009-10-14 23:00:45,209 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 from cache01.dev02.oneriot.com,60020,1255560226254; 18 of 19
2009-10-14 23:00:45,209 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 from cache01.dev02.oneriot.com,60020,1255560226254; 19 of 19
2009-10-14 23:00:45,211 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1622024,1255400749105 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,213 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,213 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 open on 10.129.1.181:60020
2009-10-14 23:00:45,214 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1157645,1254916289963 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,216 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,216 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 open on 10.129.1.181:60020
2009-10-14 23:00:45,217 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1856835,1255021602576 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,218 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,219 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 open on 10.129.1.181:60020
2009-10-14 23:00:45,220 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1726246,1254921438172 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,221 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,221 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 open on 10.129.1.181:60020
2009-10-14 23:00:45,222 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1904499,1254932958693 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,225 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,225 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 open on 10.129.1.181:60020
2009-10-14 23:00:45,226 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl407312,1254878474016 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,227 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,228 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 open on 10.129.1.181:60020
2009-10-14 23:00:45,229 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1977556,1255021552829 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,230 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,230 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 open on 10.129.1.181:60020
2009-10-14 23:00:45,231 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1187994,1254903329134 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,232 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,233 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 open on 10.129.1.181:60020
2009-10-14 23:00:45,234 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1135355,1254901888475 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,235 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:45,235 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,,1254897435391 open on 10.129.1.181:60020
2009-10-14 23:00:45,236 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,,1254897435391 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:45,374 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 23:00:45,377 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:00:45,384 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 23:00:45,578 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:00:45,578 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 from 10.129.1.182,60020,1255560229056; 1 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 from 10.129.1.182,60020,1255560229056; 2 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 from 10.129.1.182,60020,1255560229056; 3 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 from 10.129.1.182,60020,1255560229056; 4 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 from 10.129.1.182,60020,1255560229056; 5 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 from 10.129.1.182,60020,1255560229056; 6 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 from 10.129.1.182,60020,1255560229056; 7 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 from 10.129.1.182,60020,1255560229056; 8 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 from 10.129.1.182,60020,1255560229056; 9 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 from 10.129.1.182,60020,1255560229056; 10 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 from 10.129.1.182,60020,1255560229056; 11 of 19
2009-10-14 23:00:46,133 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 from 10.129.1.182,60020,1255560229056; 12 of 19
2009-10-14 23:00:46,134 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 from 10.129.1.182,60020,1255560229056; 13 of 19
2009-10-14 23:00:46,134 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,134 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 from 10.129.1.182,60020,1255560229056; 14 of 19
2009-10-14 23:00:46,134 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 open on 10.129.1.182:60020
2009-10-14 23:00:46,134 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 from 10.129.1.182,60020,1255560229056; 15 of 19
2009-10-14 23:00:46,134 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 from 10.129.1.182,60020,1255560229056; 16 of 19
2009-10-14 23:00:46,134 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 from 10.129.1.182,60020,1255560229056; 17 of 19
2009-10-14 23:00:46,134 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 from 10.129.1.182,60020,1255560229056; 18 of 19
2009-10-14 23:00:46,134 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 from 10.129.1.182,60020,1255560229056; 19 of 19
2009-10-14 23:00:46,136 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,139 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,139 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 open on 10.129.1.182:60020
2009-10-14 23:00:46,141 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,143 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,143 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 open on 10.129.1.182:60020
2009-10-14 23:00:46,145 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,146 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,146 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 open on 10.129.1.182:60020
2009-10-14 23:00:46,148 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,149 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,149 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 open on 10.129.1.182:60020
2009-10-14 23:00:46,151 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,153 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,154 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 open on 10.129.1.182:60020
2009-10-14 23:00:46,155 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,157 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,157 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 open on 10.129.1.182:60020
2009-10-14 23:00:46,158 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,160 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,160 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 open on 10.129.1.182:60020
2009-10-14 23:00:46,162 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,164 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,164 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 open on 10.129.1.182:60020
2009-10-14 23:00:46,165 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:46,167 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:46,167 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 open on 10.129.1.182:60020
2009-10-14 23:00:46,169 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:48,224 DEBUG org.apache.hadoop.hbase.master.RegionManager: Assigning for address: 10.129.1.181:60020, startcode: 1255560226254, load: (requests=201, regions=61, usedHeap=45, maxHeap=987): total nregions to assign=37, nregions to reach balance=0, isMetaAssign=false
2009-10-14 23:00:48,224 DEBUG org.apache.hadoop.hbase.master.RegionManager: Doing for address: 10.129.1.181:60020, startcode: 1255560226254, load: (requests=201, regions=61, usedHeap=45, maxHeap=987) nregions: 1 and nRegionsToAssign: 37
2009-10-14 23:00:48,224 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,224 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,225 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,227 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,228 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,230 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,231 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,232 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,234 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,235 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,237 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:48,239 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:49,150 DEBUG org.apache.hadoop.hbase.master.RegionManager: Assigning for address: 10.129.1.182:60020, startcode: 1255560229056, load: (requests=0, regions=61, usedHeap=39, maxHeap=987): total nregions to assign=27, nregions to reach balance=0, isMetaAssign=false
2009-10-14 23:00:49,150 DEBUG org.apache.hadoop.hbase.master.RegionManager: Doing for address: 10.129.1.182:60020, startcode: 1255560229056, load: (requests=0, regions=61, usedHeap=39, maxHeap=987) nregions: 1 and nRegionsToAssign: 27
2009-10-14 23:00:49,150 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,150 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,150 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,150 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,150 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,151 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,151 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,151 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,151 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,151 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,151 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,153 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,155 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,156 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,157 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,158 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,159 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,161 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,162 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,163 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:49,486 INFO org.apache.hadoop.hbase.master.ServerManager: 10.129.1.186,60020,1255560229054 znode expired
2009-10-14 23:00:51,288 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 from cache01.dev02.oneriot.com,60020,1255560226254; 2 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 from cache01.dev02.oneriot.com,60020,1255560226254; 3 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 from cache01.dev02.oneriot.com,60020,1255560226254; 4 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 from cache01.dev02.oneriot.com,60020,1255560226254; 5 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 from cache01.dev02.oneriot.com,60020,1255560226254; 6 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 from cache01.dev02.oneriot.com,60020,1255560226254; 7 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 from cache01.dev02.oneriot.com,60020,1255560226254; 8 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 from cache01.dev02.oneriot.com,60020,1255560226254; 9 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 from cache01.dev02.oneriot.com,60020,1255560226254; 10 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 from cache01.dev02.oneriot.com,60020,1255560226254; 11 of 19
2009-10-14 23:00:51,289 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 from cache01.dev02.oneriot.com,60020,1255560226254; 12 of 19
2009-10-14 23:00:51,289 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,290 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 from cache01.dev02.oneriot.com,60020,1255560226254; 13 of 19
2009-10-14 23:00:51,290 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 open on 10.129.1.181:60020
2009-10-14 23:00:51,290 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 from cache01.dev02.oneriot.com,60020,1255560226254; 14 of 19
2009-10-14 23:00:51,290 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 from cache01.dev02.oneriot.com,60020,1255560226254; 15 of 19
2009-10-14 23:00:51,290 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 from cache01.dev02.oneriot.com,60020,1255560226254; 16 of 19
2009-10-14 23:00:51,290 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 from cache01.dev02.oneriot.com,60020,1255560226254; 17 of 19
2009-10-14 23:00:51,290 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 from cache01.dev02.oneriot.com,60020,1255560226254; 18 of 19
2009-10-14 23:00:51,290 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 from cache01.dev02.oneriot.com,60020,1255560226254; 19 of 19
2009-10-14 23:00:51,292 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl12811,1254906417048 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,294 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,294 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 open on 10.129.1.181:60020
2009-10-14 23:00:51,295 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl987923,1254991656263 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,296 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,296 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 open on 10.129.1.181:60020
2009-10-14 23:00:51,298 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl309460,1254875157403 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,299 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,299 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 open on 10.129.1.181:60020
2009-10-14 23:00:51,301 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl149751,1254914027012 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,302 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,302 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 open on 10.129.1.181:60020
2009-10-14 23:00:51,303 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl23317,1254872101115 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,305 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,305 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 open on 10.129.1.181:60020
2009-10-14 23:00:51,306 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1546638,1254915687329 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,307 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,307 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 open on 10.129.1.181:60020
2009-10-14 23:00:51,308 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl66335,1254886725506 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,310 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,310 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 open on 10.129.1.181:60020
2009-10-14 23:00:51,312 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1209734,1254904136341 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,313 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,313 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 open on 10.129.1.181:60020
2009-10-14 23:00:51,315 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl806997,1254891460997 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:51,316 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:51,316 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 open on 10.129.1.181:60020
2009-10-14 23:00:51,318 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl2663,1254873324374 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 from 10.129.1.182,60020,1255560229056; 1 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 from 10.129.1.182,60020,1255560229056; 2 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 from 10.129.1.182,60020,1255560229056; 3 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 from 10.129.1.182,60020,1255560229056; 4 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 from 10.129.1.182,60020,1255560229056; 5 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 from 10.129.1.182,60020,1255560229056; 6 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 from 10.129.1.182,60020,1255560229056; 7 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 from 10.129.1.182,60020,1255560229056; 8 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 from 10.129.1.182,60020,1255560229056; 9 of 19
2009-10-14 23:00:52,175 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 from 10.129.1.182,60020,1255560229056; 10 of 19
2009-10-14 23:00:52,176 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 from 10.129.1.182,60020,1255560229056; 11 of 19
2009-10-14 23:00:52,176 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 from 10.129.1.182,60020,1255560229056; 12 of 19
2009-10-14 23:00:52,176 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 from 10.129.1.182,60020,1255560229056; 13 of 19
2009-10-14 23:00:52,176 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,176 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 from 10.129.1.182,60020,1255560229056; 14 of 19
2009-10-14 23:00:52,176 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 open on 10.129.1.182:60020
2009-10-14 23:00:52,176 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 from 10.129.1.182,60020,1255560229056; 15 of 19
2009-10-14 23:00:52,176 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 from 10.129.1.182,60020,1255560229056; 16 of 19
2009-10-14 23:00:52,177 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 from 10.129.1.182,60020,1255560229056; 17 of 19
2009-10-14 23:00:52,177 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 from 10.129.1.182,60020,1255560229056; 18 of 19
2009-10-14 23:00:52,177 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 from 10.129.1.182,60020,1255560229056; 19 of 19
2009-10-14 23:00:52,178 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,180 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,180 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 open on 10.129.1.182:60020
2009-10-14 23:00:52,181 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,182 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,182 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 open on 10.129.1.182:60020
2009-10-14 23:00:52,184 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,185 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,185 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 open on 10.129.1.182:60020
2009-10-14 23:00:52,186 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,187 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,188 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 open on 10.129.1.182:60020
2009-10-14 23:00:52,189 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,190 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,190 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 open on 10.129.1.182:60020
2009-10-14 23:00:52,192 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,193 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,193 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 open on 10.129.1.182:60020
2009-10-14 23:00:52,194 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,195 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,195 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 open on 10.129.1.182:60020
2009-10-14 23:00:52,196 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,198 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,198 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 open on 10.129.1.182:60020
2009-10-14 23:00:52,200 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:52,201 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:52,201 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 open on 10.129.1.182:60020
2009-10-14 23:00:52,203 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:54,347 DEBUG org.apache.hadoop.hbase.master.RegionManager: Assigning for address: 10.129.1.181:60020, startcode: 1255560226254, load: (requests=40, regions=71, usedHeap=38, maxHeap=987): total nregions to assign=17, nregions to reach balance=0, isMetaAssign=false
2009-10-14 23:00:54,348 DEBUG org.apache.hadoop.hbase.master.RegionManager: Doing for address: 10.129.1.181:60020, startcode: 1255560226254, load: (requests=40, regions=71, usedHeap=38, maxHeap=987) nregions: 1 and nRegionsToAssign: 17
2009-10-14 23:00:54,348 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,348 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,348 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,348 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region contentTestTable,,1255370547991 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,348 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,348 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,348 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,348 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,348 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,349 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,349 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 to cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,350 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,351 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,353 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,354 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,355 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,357 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,358 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,359 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:54,361 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:55,194 DEBUG org.apache.hadoop.hbase.master.RegionManager: Assigning for address: 10.129.1.182:60020, startcode: 1255560229056, load: (requests=0, regions=71, usedHeap=43, maxHeap=987): total nregions to assign=7, nregions to reach balance=0, isMetaAssign=false
2009-10-14 23:00:55,195 DEBUG org.apache.hadoop.hbase.master.RegionManager: Doing for address: 10.129.1.182:60020, startcode: 1255560229056, load: (requests=0, regions=71, usedHeap=43, maxHeap=987) nregions: 1 and nRegionsToAssign: 7
2009-10-14 23:00:55,195 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,195 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,195 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,195 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,195 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,195 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,195 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,195 INFO org.apache.hadoop.hbase.master.RegionManager: Assigning region firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 to 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,197 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,199 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,200 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,201 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,202 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:55,204 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: RegionAssignmentHistorian from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 from cache01.dev02.oneriot.com,60020,1255560226254; 1 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: contentTestTable,,1255370547991 from cache01.dev02.oneriot.com,60020,1255560226254; 2 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 from cache01.dev02.oneriot.com,60020,1255560226254; 3 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 from cache01.dev02.oneriot.com,60020,1255560226254; 4 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 from cache01.dev02.oneriot.com,60020,1255560226254; 5 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 from cache01.dev02.oneriot.com,60020,1255560226254; 6 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 from cache01.dev02.oneriot.com,60020,1255560226254; 7 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 from cache01.dev02.oneriot.com,60020,1255560226254; 8 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 from cache01.dev02.oneriot.com,60020,1255560226254; 9 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 from cache01.dev02.oneriot.com,60020,1255560226254; 10 of 19
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 from cache01.dev02.oneriot.com,60020,1255560226254; 11 of 19
2009-10-14 23:00:57,414 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,414 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: contentTestTable,,1255370547991 from cache01.dev02.oneriot.com,60020,1255560226254; 12 of 19
2009-10-14 23:00:57,415 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 open on 10.129.1.181:60020
2009-10-14 23:00:57,415 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 from cache01.dev02.oneriot.com,60020,1255560226254; 13 of 19
2009-10-14 23:00:57,415 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 from cache01.dev02.oneriot.com,60020,1255560226254; 14 of 19
2009-10-14 23:00:57,415 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 from cache01.dev02.oneriot.com,60020,1255560226254; 15 of 19
2009-10-14 23:00:57,415 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 from cache01.dev02.oneriot.com,60020,1255560226254; 16 of 19
2009-10-14 23:00:57,415 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 from cache01.dev02.oneriot.com,60020,1255560226254; 17 of 19
2009-10-14 23:00:57,415 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 from cache01.dev02.oneriot.com,60020,1255560226254; 18 of 19
2009-10-14 23:00:57,415 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 from cache01.dev02.oneriot.com,60020,1255560226254; 19 of 19
2009-10-14 23:00:57,417 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl676958,1254887120995 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,418 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,418 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 open on 10.129.1.181:60020
2009-10-14 23:00:57,420 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl487621,1254881054543 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,421 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,421 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 open on 10.129.1.181:60020
2009-10-14 23:00:57,422 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl125460,1255001741751 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,423 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,424 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 open on 10.129.1.181:60020
2009-10-14 23:00:57,425 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1232455,1254904968711 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,427 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,427 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 open on 10.129.1.181:60020
2009-10-14 23:00:57,428 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1506065,1254914470245 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,430 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,430 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 open on 10.129.1.181:60020
2009-10-14 23:00:57,431 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1337732,1254908686711 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,433 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,433 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 open on 10.129.1.181:60020
2009-10-14 23:00:57,434 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1307461,1254907305125 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,435 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,435 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 open on 10.129.1.181:60020
2009-10-14 23:00:57,437 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl627031,1254885811429 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,438 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,438 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 open on 10.129.1.181:60020
2009-10-14 23:00:57,439 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1644088,1254932545311 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:57,441 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from cache01.dev02.oneriot.com,60020,1255560226254
2009-10-14 23:00:57,441 INFO org.apache.hadoop.hbase.master.RegionServerOperation: contentTestTable,,1255370547991 open on 10.129.1.181:60020
2009-10-14 23:00:57,442 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row contentTestTable,,1255370547991 in region .META.,,1 with startcode=1255560226254, server=10.129.1.181:60020
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 from 10.129.1.182,60020,1255560229056; 1 of 13
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 from 10.129.1.182,60020,1255560229056; 2 of 13
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 from 10.129.1.182,60020,1255560229056; 3 of 13
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 from 10.129.1.182,60020,1255560229056; 4 of 13
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 from 10.129.1.182,60020,1255560229056; 5 of 13
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_PROCESS_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 from 10.129.1.182,60020,1255560229056; 6 of 13
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 from 10.129.1.182,60020,1255560229056; 7 of 13
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 from 10.129.1.182,60020,1255560229056; 8 of 13
2009-10-14 23:00:58,218 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:58,218 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 from 10.129.1.182,60020,1255560229056; 9 of 13
2009-10-14 23:00:58,219 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 open on 10.129.1.182:60020
2009-10-14 23:00:58,219 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 from 10.129.1.182,60020,1255560229056; 10 of 13
2009-10-14 23:00:58,219 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 from 10.129.1.182,60020,1255560229056; 11 of 13
2009-10-14 23:00:58,219 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 from 10.129.1.182,60020,1255560229056; 12 of 13
2009-10-14 23:00:58,219 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_OPEN: firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 from 10.129.1.182,60020,1255560229056; 13 of 13
2009-10-14 23:00:58,221 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:58,222 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:58,222 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 open on 10.129.1.182:60020
2009-10-14 23:00:58,224 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:58,225 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:58,225 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 open on 10.129.1.182:60020
2009-10-14 23:00:58,226 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:58,227 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:58,228 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 open on 10.129.1.182:60020
2009-10-14 23:00:58,229 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:58,230 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:58,230 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 open on 10.129.1.182:60020
2009-10-14 23:00:58,231 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:58,232 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:58,233 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 open on 10.129.1.182:60020
2009-10-14 23:00:58,234 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:00:58,235 DEBUG org.apache.hadoop.hbase.master.HMaster: Processing todo: PendingOpenOperation from 10.129.1.182,60020,1255560229056
2009-10-14 23:00:58,235 INFO org.apache.hadoop.hbase.master.RegionServerOperation: firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 open on 10.129.1.182:60020
2009-10-14 23:00:58,236 INFO org.apache.hadoop.hbase.master.RegionServerOperation: Updated row firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 in region .META.,,1 with startcode=1255560229056, server=10.129.1.182:60020
2009-10-14 23:01:44,659 INFO org.apache.hadoop.hbase.master.ServerManager: 2 region servers, 0 dead, average load 79.5
2009-10-14 23:01:45,385 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 23:01:45,387 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:01:45,397 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 23:01:45,633 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:01:45,634 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:02:44,669 INFO org.apache.hadoop.hbase.master.ServerManager: 2 region servers, 0 dead, average load 79.5
2009-10-14 23:02:45,396 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 23:02:45,397 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:02:45,406 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 23:02:45,581 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:02:45,581 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:03:44,680 INFO org.apache.hadoop.hbase.master.ServerManager: 2 region servers, 0 dead, average load 79.5
2009-10-14 23:03:45,407 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 23:03:45,408 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:03:45,421 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 23:03:45,594 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:03:45,594 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:04:44,691 INFO org.apache.hadoop.hbase.master.ServerManager: 2 region servers, 0 dead, average load 79.5
2009-10-14 23:04:45,417 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:04:45,418 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scanning meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>}
2009-10-14 23:04:45,434 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.rootScanner scan of 1 row(s) of meta region {server: 10.129.1.182:60020, regionname: -ROOT-,,0, startKey: <>} complete
2009-10-14 23:04:45,603 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:04:45,603 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:04:53,796 INFO org.apache.hadoop.hbase.master.ServerManager: Removing server's info 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,796 INFO org.apache.hadoop.hbase.master.RegionManager: Offlined ROOT server: 10.129.1.182:60020
2009-10-14 23:04:53,796 INFO org.apache.hadoop.hbase.master.RegionManager: -ROOT- region unset (but not set to be reassigned)
2009-10-14 23:04:53,796 INFO org.apache.hadoop.hbase.master.RegionManager: ROOT inserted into regionsInTransition
2009-10-14 23:04:53,796 INFO org.apache.hadoop.hbase.master.ServerManager: Region server 10.129.1.182,60020,1255560229056: MSG_REPORT_EXITING
2009-10-14 23:04:53,796 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl84311,1254892527847 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,796 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl82588,1254905582622 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,796 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1928527,1255021584264 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl545937,1254971758657 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl132723,1254908207937 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl854797,1254892917645 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl520869,1254882346390 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl886046,1254981757068 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl57246,1254883758267 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1221401,1254904551550 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl532025,1254971758657 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1810556,1255011823394 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1371008,1254920133855 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl453158,1254971538997 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1736837,1255011707681 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl697939,1254888026405 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,797 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl107989,1254899927806 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl730777,1254889232699 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl61607,1254885410698 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1556260,1255011630303 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl142053,1254933331157 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl147907,1254913246510 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl595792,1254884602992 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl874238,1254981757068 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl919532,1254895040107 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1359751,1254920133855 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl103119,1254898609631 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl126785,1255001741751 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl182771,1254924443911 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400749105 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,798 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1020015,1254898215881 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1870713,1255021602576 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl38735,1254877634909 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1612250,1255400738629 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1295221,1254906856720 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl942814,1254895828649 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl147120,1254913246510 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl477232,1254880659226 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1750558,1255011707681 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1198741,1254903732939 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl194369,1254934085977 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1687473,1254919919514 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl429142,1254879331006 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1991043,1255021552829 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl75311,1254902689078 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,799 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl364738,1254876889515 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl159218,1254917054830 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1623684,1255400738629 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl953663,1254896216820 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl719533,1254888829710 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl320295,1254875593453 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl908476,1254894616642 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl816145,1254905582622 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1066514,1254991569280 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl89786,1254894213945 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl163512,1254918372908 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1652995,1254932545311 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1103537,1254900708165 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1243468,1254905391142 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,800 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl176768,1254922535183 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl77132,1254890263756 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1453561,1254912292805 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl797870,1254891071464 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl864736,1254893334312 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl167003,1254919456164 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl158104,1254916661389 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1956775,1254934491952 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl931411,1254895437246 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl584906,1254884205370 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl17077,1254920653007 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl18461,1254925245439 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: -ROOT-,,0 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1053151,1254991569280 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,801 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl650739,1254981667132 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,802 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl153772,1254915295863 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,802 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl179683,1255011823394 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,802 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl242086,1254883932873 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:53,802 INFO org.apache.hadoop.hbase.master.ServerManager: Processing MSG_REPORT_CLOSE: firstTable,http:\x2F\x2Fdomain.com\x2Furl1114483,1254901096043 from 10.129.1.182,60020,1255560229056
2009-10-14 23:04:55,447 INFO org.apache.hadoop.hbase.master.ServerManager: 10.129.1.182,60020,1255560229056 znode expired
2009-10-14 23:05:44,702 INFO org.apache.hadoop.hbase.master.ServerManager: 1 region servers, 0 dead, average load 81.0
2009-10-14 23:05:45,429 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:05:45,605 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:05:45,606 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:06:44,713 INFO org.apache.hadoop.hbase.master.ServerManager: 1 region servers, 0 dead, average load 81.0
2009-10-14 23:06:45,438 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:06:45,600 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:06:45,600 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:07:44,724 INFO org.apache.hadoop.hbase.master.ServerManager: 1 region servers, 0 dead, average load 81.0
2009-10-14 23:07:45,448 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:07:45,619 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:07:45,619 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:08:44,736 INFO org.apache.hadoop.hbase.master.ServerManager: 1 region servers, 0 dead, average load 81.0
2009-10-14 23:08:45,458 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:08:45,633 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:08:45,633 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned
2009-10-14 23:09:44,746 INFO org.apache.hadoop.hbase.master.ServerManager: 1 region servers, 0 dead, average load 81.0
2009-10-14 23:09:45,469 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scanning meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>}
2009-10-14 23:09:45,637 INFO org.apache.hadoop.hbase.master.BaseScanner: RegionManager.metaScanner scan of 158 row(s) of meta region {server: 10.129.1.181:60020, regionname: .META.,,1, startKey: <>} complete
2009-10-14 23:09:45,637 INFO org.apache.hadoop.hbase.master.BaseScanner: All 1 .META. region(s) scanned

=======

Yannis.

--
Search for the Pulse

Yannis Pavlidis | OneRiot
Softwarist
talk: 720.771.7025
write: ypavlidis@oneriot.com
web: www.oneriot.com




-----Original Message-----
From: Yannis Pavlidis [mailto:ypavlidis@oneriot.com]
Sent: Wed 10/14/2009 5:12 PM
To: hbase-user@hadoop.apache.org
Subject: RE: ROOT table does not get re-assigned
 
Hi Ryan,

Thanks for the quick response. Here are master logs you have requested. For your convenience:

10.129.1.182 (cache02) has the ROOT assigned to it
10.129.1.181 (cache01) has the META assigned to it
10.129.1.186 (search01) is simply a region server.

First I kill search01 and then I kill cache02 (ROOT).

Thanks,

Yannis.

--
Search for the Pulse

Yannis Pavlidis | OneRiot
Softwarist
talk: 720.771.7025
write: ypavlidis@oneriot.com
web: www.oneriot.com




-----Original Message-----
From: Ryan Rawson [mailto:ryanobjc@gmail.com]
Sent: Wed 10/14/2009 4:37 PM
To: hbase-user@hadoop.apache.org
Subject: Re: ROOT table does not get re-assigned
 
Can you run this with DEBUG logs and paste in the master logs?
Without a detailed description of what the master is doing, hard to
diagnose.

Thanks!
-ryan

On Wed, Oct 14, 2009 at 3:32 PM, Yannis Pavlidis <yp...@oneriot.com> wrote:
> Hi all,
>
> We are in the process of evaluating hadoop/hbase (using hadoop-0.20.1 and hbase-0.20.0) for some of our needs and I wanted to ask a question related with behavior I am seeing during our evaluation.
>
> I have a small cluster setup containing for your simplicity: server1, server2, server3. Currently server1 runs the namenode for hadoop and server1, server2 and server3 run the datanodes.
>
> In addition, server1 is the master and server1, server2 and server3 run regionservers.
>
> During my testing I see in the master logs that ROOT table has been assigned to server2 and META table has been assigned to server3 (I also have hbase managing zookeeper)
>
> I run some of my tests and everything is working correctly (I am able to put/get/delete in tables).
>
> Then I kill (simply kill <pid>) the regionserver on server1 (which holds neither ROOT or META regions) and everything is working properly (run the same suite).
>
> Then I kill (simply kill <pid>) the regionserver that has ROOT assigned to it and it appears that the master never re-assigns the ROOT to another regionserver (there is still one running which also has the META region).
>
> I can see the clients attempting to connect to server2 which is the regionserver that had the ROOT region (which is not running any more) and also I can see from web ui when I run the zkdump that the Region server holding ROOT: is still server2.
>
> This seems to be very easily reproducible by following the above steps (I have seen it getting reproduced with different server assignments of the META and ROOT tables).
>
> I also tried using hbase-0.20-1 but I still seem to be getting the same results.
>
> Any help would be highly appreciated.
>
> Thanks in advance,
>
> Yannis Pavlidis.
>




RE: ROOT table does not get re-assigned

Posted by Yannis Pavlidis <yp...@oneriot.com>.
Hi Ryan,

Thanks for the quick response. Here are master logs you have requested. For your convenience:

10.129.1.182 (cache02) has the ROOT assigned to it
10.129.1.181 (cache01) has the META assigned to it
10.129.1.186 (search01) is simply a region server.

First I kill search01 and then I kill cache02 (ROOT).

Thanks,

Yannis.

--
Search for the Pulse

Yannis Pavlidis | OneRiot
Softwarist
talk: 720.771.7025
write: ypavlidis@oneriot.com
web: www.oneriot.com




-----Original Message-----
From: Ryan Rawson [mailto:ryanobjc@gmail.com]
Sent: Wed 10/14/2009 4:37 PM
To: hbase-user@hadoop.apache.org
Subject: Re: ROOT table does not get re-assigned
 
Can you run this with DEBUG logs and paste in the master logs?
Without a detailed description of what the master is doing, hard to
diagnose.

Thanks!
-ryan

On Wed, Oct 14, 2009 at 3:32 PM, Yannis Pavlidis <yp...@oneriot.com> wrote:
> Hi all,
>
> We are in the process of evaluating hadoop/hbase (using hadoop-0.20.1 and hbase-0.20.0) for some of our needs and I wanted to ask a question related with behavior I am seeing during our evaluation.
>
> I have a small cluster setup containing for your simplicity: server1, server2, server3. Currently server1 runs the namenode for hadoop and server1, server2 and server3 run the datanodes.
>
> In addition, server1 is the master and server1, server2 and server3 run regionservers.
>
> During my testing I see in the master logs that ROOT table has been assigned to server2 and META table has been assigned to server3 (I also have hbase managing zookeeper)
>
> I run some of my tests and everything is working correctly (I am able to put/get/delete in tables).
>
> Then I kill (simply kill <pid>) the regionserver on server1 (which holds neither ROOT or META regions) and everything is working properly (run the same suite).
>
> Then I kill (simply kill <pid>) the regionserver that has ROOT assigned to it and it appears that the master never re-assigns the ROOT to another regionserver (there is still one running which also has the META region).
>
> I can see the clients attempting to connect to server2 which is the regionserver that had the ROOT region (which is not running any more) and also I can see from web ui when I run the zkdump that the Region server holding ROOT: is still server2.
>
> This seems to be very easily reproducible by following the above steps (I have seen it getting reproduced with different server assignments of the META and ROOT tables).
>
> I also tried using hbase-0.20-1 but I still seem to be getting the same results.
>
> Any help would be highly appreciated.
>
> Thanks in advance,
>
> Yannis Pavlidis.
>



Re: ROOT table does not get re-assigned

Posted by Ryan Rawson <ry...@gmail.com>.
Can you run this with DEBUG logs and paste in the master logs?
Without a detailed description of what the master is doing, hard to
diagnose.

Thanks!
-ryan

On Wed, Oct 14, 2009 at 3:32 PM, Yannis Pavlidis <yp...@oneriot.com> wrote:
> Hi all,
>
> We are in the process of evaluating hadoop/hbase (using hadoop-0.20.1 and hbase-0.20.0) for some of our needs and I wanted to ask a question related with behavior I am seeing during our evaluation.
>
> I have a small cluster setup containing for your simplicity: server1, server2, server3. Currently server1 runs the namenode for hadoop and server1, server2 and server3 run the datanodes.
>
> In addition, server1 is the master and server1, server2 and server3 run regionservers.
>
> During my testing I see in the master logs that ROOT table has been assigned to server2 and META table has been assigned to server3 (I also have hbase managing zookeeper)
>
> I run some of my tests and everything is working correctly (I am able to put/get/delete in tables).
>
> Then I kill (simply kill <pid>) the regionserver on server1 (which holds neither ROOT or META regions) and everything is working properly (run the same suite).
>
> Then I kill (simply kill <pid>) the regionserver that has ROOT assigned to it and it appears that the master never re-assigns the ROOT to another regionserver (there is still one running which also has the META region).
>
> I can see the clients attempting to connect to server2 which is the regionserver that had the ROOT region (which is not running any more) and also I can see from web ui when I run the zkdump that the Region server holding ROOT: is still server2.
>
> This seems to be very easily reproducible by following the above steps (I have seen it getting reproduced with different server assignments of the META and ROOT tables).
>
> I also tried using hbase-0.20-1 but I still seem to be getting the same results.
>
> Any help would be highly appreciated.
>
> Thanks in advance,
>
> Yannis Pavlidis.
>