From 10aba8f306579b8eecc6e8c23367bc6e1fd9abae Mon Sep 17 00:00:00 2001 From: eclark Date: Tue, 17 Sep 2013 21:31:00 +0000 Subject: [PATCH] HBASE-9419 Add more informative client column to Integration Test Linked List git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1524231 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/hadoop/hbase/test/IntegrationTestBigLinkedList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbase-it/src/test/java/org/apache/hadoop/hbase/test/IntegrationTestBigLinkedList.java b/hbase-it/src/test/java/org/apache/hadoop/hbase/test/IntegrationTestBigLinkedList.java index 930371e64f1..19ccaf590f3 100644 --- a/hbase-it/src/test/java/org/apache/hadoop/hbase/test/IntegrationTestBigLinkedList.java +++ b/hbase-it/src/test/java/org/apache/hadoop/hbase/test/IntegrationTestBigLinkedList.java @@ -334,7 +334,7 @@ public class IntegrationTestBigLinkedList extends IntegrationTestBase { @Override protected void setup(Context context) throws IOException, InterruptedException { - id = Bytes.toBytes(UUID.randomUUID().toString()); + id = Bytes.toBytes("Job: "+context.getJobID() + " Task: " + context.getTaskAttemptID()); Configuration conf = context.getConfiguration(); table = new HTable(conf, getTableName(conf)); table.setAutoFlush(false, true);