[
https://issues.apache.org/jira/browse/HBASE-1417?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
stack resolved HBASE-1417.
--------------------------
Resolution: Fixed
I did this:
{code}
Index: src/java/org/apache/hadoop/hbase/ipc/HBaseClient.java
===================================================================
--- src/java/org/apache/hadoop/hbase/ipc/HBaseClient.java (revision
771545)
+++ src/java/org/apache/hadoop/hbase/ipc/HBaseClient.java (working copy)
@@ -202,8 +202,8 @@
this.remoteId = remoteId;
UserGroupInformation ticket = remoteId.getTicket();
this.setName("IPC Client (" + socketFactory.hashCode() +") connection to
" +
- remoteId.getAddress().toString() +
- " from " + ((ticket==null)?"an unknown user":ticket.getUserName()));
+ remoteId.getAddress().toString() +
+ ((ticket==null)?" from an unknown user": (" from " +
ticket.getUserName())));
this.setDaemon(true);
}
{code}
> Cleanup disorientating RPC message
> ----------------------------------
>
> Key: HBASE-1417
> URL: https://issues.apache.org/jira/browse/HBASE-1417
> Project: Hadoop HBase
> Issue Type: Bug
> Reporter: stack
> Fix For: 0.20.0
>
>
> From list:
> {code}
> Hi,
> Was wondering if anyone can shed light on the following debug message I'm
> seeing:
> 2009-05-13 06:35:48,417 DEBUG [Thread-3] (MessageQueue.java:22)
> message.MessageQueue: Queue size = 0
> 2009-05-13 06:35:48,418 DEBUG [Thread-3] (HbaseMessageWriter.java:32)
> hbase.HbaseMessageWriter: HBase writer writing event
> 2009-05-13 06:35:48,419 DEBUG [Thread-3] (HBaseClient.java:466)
> ipc.HBaseClass: IPC Client (47) connection to /127.0.0.1:60020 from an
> unknown user sending #4403
> 2009-05-13 06:35:48,421 DEBUG [IPC Client (47) connection to /
> 127.0.0.1:60020 from an unknown user] (HBaseClient.java:501) ipc.HBaseClass:
> IPC Client (47) connection to /127.0.0.1:60020 from an unknown user got
> value #4403
> 2009-05-13 06:35:48,421 DEBUG [Thread-3] (HBaseRPC.java:325) ipc.HbaseRPC:
> Call: batchUpdates 2
> Can't find much information related to "... from an unknown user" with
> regards to IPC. Events are being written into HBase so it's not a large
> concern for me, just curious really!
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.