Package | Description |
---|---|
oracle.pg.hbase |
This package contains the logic specific to the property graph support on Apache HBase.
|
oracle.pg.hbase.index.lucene |
This package contains the logic specific to the text indexing and text search using Apache Lucene for property graph support on Apache HBase.
|
oracle.pg.hbase.index.solr |
This package contains the logic specific to the text indexing and text search using SolrCloud for property graph support on Apache HBase.
|
Modifier and Type | Method and Description |
---|---|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, int initialNumRegions)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, int initialNumRegions, int splitsPerRegion)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, int initialNumRegions, int splitsPerRegion, int blockCacheSize)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, String compress, org.apache.hadoop.hbase.io.encoding.DataBlockEncoding dbe, int splitsPerRegion, int blockCacheSize, int initialVertexNumRegions, int initialEdgeNumRegions)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, String compress, int initialNumRegions)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, String compress, int initialNumRegions, int splitsPerRegion)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, String compress, int initialNumRegions, int splitsPerRegion, int blockCacheSize)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, String compress, int splitsPerRegion, int blockCacheSize, int initialVertexNumRegions, int initialEdgeNumRegions)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.pgx.config.PgHbaseGraphConfig config)
Returns an instance of OraclePropertyGraph using a PGX PgHbaseGraphConfig object.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.pgx.config.PgHbaseGraphConfig config, long maxRowSize)
Returns an instance of OraclePropertyGraph using a PGX PgHbaseGraphConfig object.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstanceWithSplits(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.client.HConnection hconn, String szGraphName, int splitsPerRegion)
Returns an instance of OraclePropertyGraph using the Apache HBase connection and graph name provided and the specified number of splits per region.
|
OraclePropertyGraph |
OracleCommonIteratorImpl.getPropertyGraph()
Get the associated property graph
|
OraclePropertyGraph |
OracleElement.getPropertyGraph()
Gets the property graph instance associated to this vertex
|
Modifier and Type | Method and Description |
---|---|
static void |
OraclePropertyGraphUtils.exportEdgeFlatFile(OraclePropertyGraph pg, OutputStream osEdge, int dop, boolean append, boolean closeStream)
This function exports the edges of a given property graph into OPE flat file
|
static void |
OraclePropertyGraphUtils.exportFlatFiles(OraclePropertyGraph pg, OutputStream osVertex, OutputStream osEdge, boolean append, int dop)
This function exports a given property graph into two flat files: one for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtils.exportFlatFiles(OraclePropertyGraph pg, OutputStream osVertex, OutputStream osEdge, int dop, boolean append, boolean closeStreams)
This function exports a given property graph into two flat files: one for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtils.exportFlatFiles(OraclePropertyGraph pg, String vertexFileName, String edgeFileName, boolean append)
This function exports a given property graph into two flat files: one for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtils.exportFlatFiles(OraclePropertyGraph pg, String vertexFileName, String edgeFileName, int dop, boolean append)
This function exports a given property graph into two flat files: one for vertices and the other for edges.
|
static void |
OraclePropertyGraphUtils.exportVertexFlatFile(OraclePropertyGraph pg, OutputStream osVertex, int dop, boolean append, boolean closeStream)
This function exports the vertices of a given property graph into OPV flat file
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, Long eid)
Returns an instance of OracleEdge
|
static OracleVertex |
OracleVertex.getInstance(OraclePropertyGraph opg, Long vid)
Returns an instance of OracleVertex from the underlying graph
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, Long eid, boolean bCreateIfAbsentFromCache)
Returns an instance of OracleEdge.
|
static OracleVertex |
OracleVertex.getInstance(OraclePropertyGraph opg, Long vid, boolean bCreateIfAbsentFromCache)
Returns an instance of OracleVertex.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, Long eid, boolean bCreateIfAbsentFromCache, boolean bSkipStoreToCache)
Returns an instance of OracleEdge.
|
static OracleVertex |
OracleVertex.getInstance(OraclePropertyGraph opg, Long vid, boolean bCreateIfAbsentFromCache, boolean bSkipStoreToCache)
Returns an instance of OracleVertex.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, Long eid, String label)
Returns an instance of OracleEdge
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, Long eid, String label, boolean bCreateIfAbsentFromCache)
Returns an instance of OracleEdge.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, Long eid, String label, boolean bCreateIfAbsentFromCache, boolean bSkipStoreToCache)
Returns an instance of OracleEdge.
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, OracleVertexBase outVertex, OracleVertexBase inVertex, Long eid, boolean bCreateIfAbsentFromCache, boolean bSkipStoreToCache)
Returns an instance of OracleEdge
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, OracleVertexBase outVertex, OracleVertexBase inVertex, String edgeLabel, Long eid)
Returns an instance of OracleEdge
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, OracleVertexBase outVertex, OracleVertexBase inVertex, String edgeLabel, Long eid, boolean bCreateIfAbsentFromCache)
Returns an instance of OracleEdge
|
static OracleEdge |
OracleEdge.getInstance(OraclePropertyGraph opg, OracleVertexBase outVertex, OracleVertexBase inVertex, String edgeLabel, Long eid, boolean bCreateIfAbsentFromCache, boolean bSkipStoreToCache)
Returns an instance of OracleEdge
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, int iDop)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, int iDop, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, int iDop, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, int iDop, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, int iDop, int iPartitions, int iOffset, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, int iPartitions, int iOffset, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, int iDop)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, int iDop, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, int iDop, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, int iDop, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, int iDop, int iPartitions, int iOffset, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, int iPartitions, int iOffset, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, int iDop)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, int iDop, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, int iDop, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, int iDop, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, int iDop, int iPartitions, int iOffset, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, int iPartitions, int iOffset, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, int iDop)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, int iDop, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, int iDop, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, int iDop, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, int iDop, int iPartitions, int iOffset, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, int iDop, int iPartitions, int iOffset, DataLoaderListener dll, boolean skipGhostVertices)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
void |
OracleElement.setPropertyGraph(OraclePropertyGraph opg)
Sets the property graph instance associated to this element
|
Constructor and Description |
---|
GraphLoader(OraclePropertyGraph[] opgs, InputStream[] isa, boolean bVertex, OracleDataLoaderConfig config) |
HBaseIndexManager(OraclePropertyGraph opg)
Creates a new HBaseIndexManager object, handling all Lucene indexes of the specified property graph.
|
Constructor and Description |
---|
HBaseLuceneEdgeAutoIndex(String indexName, OraclePropertyGraph oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
HBaseLuceneVertexAutoIndex(String indexName, OraclePropertyGraph oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
Constructor and Description |
---|
HBaseSolrEdgeAutoIndex(String indexName, OraclePropertyGraph oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
HBaseSolrVertexAutoIndex(String indexName, OraclePropertyGraph oraclePropertyGraph, com.tinkerpop.blueprints.Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
Copyright © 2017 Oracle and/or its affiliates. All Rights Reserved.