Package | Description |
---|---|
oracle.pg.nosql |
This package contains the logic specific to the property graph support on Oracle NoSQL Database.
|
oracle.pg.nosql.index.lucene |
This package contains the logic specific to the text indexing and text search using Apache Lucene for property graph support on Oracle NoSQL Database.
|
oracle.pg.nosql.index.solr |
This package contains the logic specific to the text indexing and text search using SolrCloud for property graph support on Oracle NoSQL Database.
|
Modifier and Type | Method and Description |
---|---|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.kv.KVStoreConfig kvconfig, String szGraphName)
Returns an instance of OraclePropertyGraph using the Oracle NoSQL Database connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.kv.KVStoreConfig kvconfig, String szGraphName, oracle.kv.LoginCredentials lc)
Returns an instance of OraclePropertyGraph using the Oracle NoSQL Database connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.kv.KVStoreConfig kvconfig, String szGraphName, String username, String password)
Returns an instance of OraclePropertyGraph using the Oracle NoSQL Database connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.kv.KVStoreConfig kvconfig, String szGraphName, String username, String password, Properties secProperties)
Returns an instance of OraclePropertyGraph using the Oracle NoSQL Database connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.kv.KVStoreConfig kvconfig, String szGraphName, String username, String password, String trustStoreFile)
Returns an instance of OraclePropertyGraph using the Oracle NoSQL Database connection and graph name provided.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(oracle.pgx.config.PgNosqlGraphConfig config)
Returns an instance of OraclePropertyGraph using a PGX PgNosqlGraphConfig object.
|
static OraclePropertyGraph |
OraclePropertyGraph.getInstance(String storeName, String host, int port, String szGraphName)
Returns an instance of OraclePropertyGraph using the Oracle NoSQL Database connection and graph name provided.
|
OraclePropertyGraph |
OracleElementIteratorImpl.getOPG()
This method returns the OraclePropertyGraph instance associated with the iterator
|
OraclePropertyGraph |
OracleElement.getPropertyGraph()
Gets the property graph instance associated to this element
|
Modifier and Type | Method and Description |
---|---|
static void |
OraclePropertyGraphUtils.dropPropertyGraph(OraclePropertyGraph opg)
Drops the specified property graph (including its associated tables).
|
static void |
OraclePropertyGraphUtils.exportFlatFiles(OraclePropertyGraph pg, OutputStream osVertex, OutputStream osEdge, 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.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 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 edgeLabel, 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 loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream[] iaVertex, InputStream[] iaEdge, int iDop, DataLoaderListener dll)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
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, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, long lVertexIDOffset, long lEdgeIDOffset, 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, long lVertexIDOffset, long lEdgeIDOffset, 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)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, int iDop, DataLoaderListener dll)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, InputStream isVertex, InputStream isEdge, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, long lVertexIDOffset, long lEdgeIDOffset, 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, long lVertexIDOffset, long lEdgeIDOffset, 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)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, int iDop, DataLoaderListener dll)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String[] saVertexFlatFileName, String[] saEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, long lVertexIDOffset, long lEdgeIDOffset, 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, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, long lVertexIDOffset, long lEdgeIDOffset, 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)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, int iDop, DataLoaderListener dll)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method loads given graph data into an OraclePropertyGraph instance in parallel.
|
void |
OraclePropertyGraphDataLoader.loadData(OraclePropertyGraph opg, String szVertexFlatFileName, String szEdgeFlatFileName, long lVertexSrcOffsetlines, long lEdgeSrcOffsetlines, long lVertexSrcMaxlines, long lEdgeSrcMaxlines, long lVertexIDOffset, long lEdgeIDOffset, 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, long lVertexIDOffset, long lEdgeIDOffset, int iDop, int iPartitions, int iOffset, DataLoaderListener dll)
This method parallel loads a property graph into the given OraclePropertyGraph instance.
|
static void |
OraclePropertyGraphUtils.quietlyCloseKVStore(OraclePropertyGraph opg)
Quietly close the
KVStore object handling a connection to an Oracle NoSQL Database associated to the given property graph |
Constructor and Description |
---|
NoSQLLuceneEdgeAutoIndex(String indexName, OraclePropertyGraph oraclePropertyGraph, Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
NoSQLLuceneVertexAutoIndex(String indexName, OraclePropertyGraph oraclePropertyGraph, Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
Constructor and Description |
---|
NoSQLSolrEdgeAutoIndex(String indexName, OraclePropertyGraph oraclePropertyGraph, Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
NoSQLSolrVertexAutoIndex(String indexName, OraclePropertyGraph oraclePropertyGraph, Parameter<String,Object>[] indexParameters, boolean erase)
Deprecated.
|
Copyright © 2016 Oracle and/or its afflilates. All Rights Reserved.