Java API を使用して、ローカル マシンに単一ノードの Titan-HBase を設定しようとしています。次のコードを使用して、HBase バックエンドを使用して Titan で Edge Indices を構築しようとすると、
public static final String ELABEL_RESOURCE_HAS_XDOC = "_EResourceHasXDoc";
public static final String IDX_EDGE_BY_CID_XID = "IdxEdgeByCidXid";
public static final String PROP_COLLECTION_ID = "_PCollectionID";
public static final String PROP_XDOC_ID = "_PXDocID";
m.buildEdgeIndex(m.getEdgeLabel(ELABEL_RESOURCE_HAS_XDOC), IDX_EDGE_BY_CID_XID, Direction.OUT, m.getPropertyKey(PROP_COLLECTION_ID), m.getPropertyKey(PROP_XDOC_ID));
次の例外が発生します。
Exception in thread "main"
java.lang.ExceptionInInitializerError
at test.com.infa.prototype.titan.hbase.LoadIntoHBase.main(LoadIntoHBase.java:24)
Caused by: java.lang.IllegalArgumentException: Key must have an order-preserving data type to be used as sort key: _PCollectionID
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:88)
at com.thinkaurelius.titan.graphdb.types.StandardRelationTypeMaker.checkSortKey(StandardRelationTypeMaker.java:90)
at com.thinkaurelius.titan.graphdb.types.StandardRelationTypeMaker.checkGeneralArguments(StandardRelationTypeMaker.java:80)
at com.thinkaurelius.titan.graphdb.types.StandardRelationTypeMaker.makeDefinition(StandardRelationTypeMaker.java:113)
at com.thinkaurelius.titan.graphdb.types.StandardEdgeLabelMaker.make(StandardEdgeLabelMaker.java:78)
at com.thinkaurelius.titan.graphdb.types.StandardEdgeLabelMaker.make(StandardEdgeLabelMaker.java:19)
at com.thinkaurelius.titan.graphdb.database.management.ManagementSystem.buildRelationTypeIndex(ManagementSystem.java:327)
at com.thinkaurelius.titan.graphdb.database.management.ManagementSystem.buildEdgeIndex(ManagementSystem.java:275)
at com.thinkaurelius.titan.graphdb.database.management.ManagementSystem.buildEdgeIndex(ManagementSystem.java:270)
at com.infa.prototype.titan.utils.TitanConstants.createSchema(TitanConstants.java:87)
at test.com.infa.prototype.titan.hbase.TitanConnection.<init>(TitanConnection.java:38)
at test.com.infa.prototype.titan.hbase.TitanConnection.<clinit>(TitanConnection.java:13)
... 1 more
HBase 0.94.23 で Titan 0.5.0M1 を使用しています。
JPS の結果: 14951 LoadIntoHBase 14674 Elasticsearch 14379 HMaster 17987 Jps
私は HBase を使用した Titan を初めて使用するので、このエラーに関して誰かが私を正しい方向に向けることができれば幸いです。コードを使用して Titan-HBase のセットアップを設定するためのサンプル コードを提供する投稿へのポインタも非常に役立ちます。