mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-25 20:55:59 +10:00
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-commons/trunk@787 84d0f5b1-2673-498c-a247-62c4ff18d310
16 lines
494 B
Java
16 lines
494 B
Java
package com.profiler.common.hbase;
|
|
|
|
import org.apache.hadoop.hbase.util.Bytes;
|
|
|
|
public class HBaseTables {
|
|
|
|
public static final String TRACE_INDEX = "TraceIndex";
|
|
public static final byte[] TRACE_INDEX_CF_TRACE = Bytes.toBytes("Trace");
|
|
public static final byte[] TRACE_INDEX_CN_ID = Bytes.toBytes("ID");
|
|
|
|
public static final String TRACES = "Traces";
|
|
public static final byte[] TRACES_CF_SPAN = Bytes.toBytes("Span");
|
|
|
|
public static final String SERVERS = "Servers";
|
|
}
|