Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
f1bfe564
Commit
f1bfe564
authored
May 27, 2018
by
Madhan Neethiraj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-2723: search performance improvement: create composite index for…
ATLAS-2723: search performance improvement: create composite index for __traitNames with typeName and superTypeNames
parent
bb2e5737
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
107 additions
and
37 deletions
+107
-37
NativeJanusGraphQuery.java
...repository/graphdb/janus/query/NativeJanusGraphQuery.java
+64
-4
ClassificationSearchProcessor.java
...apache/atlas/discovery/ClassificationSearchProcessor.java
+12
-12
EntitySearchProcessor.java
...ava/org/apache/atlas/discovery/EntitySearchProcessor.java
+10
-8
FullTextSearchProcessor.java
...a/org/apache/atlas/discovery/FullTextSearchProcessor.java
+10
-3
GraphBackedSearchIndexer.java
...ache/atlas/repository/graph/GraphBackedSearchIndexer.java
+7
-6
AtlasGraphUtilsV2.java
...he/atlas/repository/store/graph/v2/AtlasGraphUtilsV2.java
+4
-4
No files found.
graphdb/janus/src/main/java/org/apache/atlas/repository/graphdb/janus/query/NativeJanusGraphQuery.java
View file @
f1bfe564
...
@@ -25,6 +25,7 @@ import org.janusgraph.core.JanusGraphQuery;
...
@@ -25,6 +25,7 @@ import org.janusgraph.core.JanusGraphQuery;
import
org.janusgraph.core.JanusGraphVertex
;
import
org.janusgraph.core.JanusGraphVertex
;
import
org.janusgraph.core.attribute.Contain
;
import
org.janusgraph.core.attribute.Contain
;
import
org.janusgraph.core.attribute.Text
;
import
org.janusgraph.core.attribute.Text
;
import
org.janusgraph.graphdb.internal.ElementCategory
;
import
org.janusgraph.graphdb.query.JanusGraphPredicate
;
import
org.janusgraph.graphdb.query.JanusGraphPredicate
;
import
org.apache.atlas.repository.graphdb.AtlasEdge
;
import
org.apache.atlas.repository.graphdb.AtlasEdge
;
import
org.apache.atlas.repository.graphdb.AtlasGraphQuery.ComparisionOperator
;
import
org.apache.atlas.repository.graphdb.AtlasGraphQuery.ComparisionOperator
;
...
@@ -38,6 +39,9 @@ import org.apache.atlas.repository.graphdb.janus.AtlasJanusGraphDatabase;
...
@@ -38,6 +39,9 @@ import org.apache.atlas.repository.graphdb.janus.AtlasJanusGraphDatabase;
import
org.apache.atlas.repository.graphdb.janus.AtlasJanusVertex
;
import
org.apache.atlas.repository.graphdb.janus.AtlasJanusVertex
;
import
org.apache.tinkerpop.gremlin.process.traversal.Compare
;
import
org.apache.tinkerpop.gremlin.process.traversal.Compare
;
import
org.apache.tinkerpop.gremlin.structure.Vertex
;
import
org.apache.tinkerpop.gremlin.structure.Vertex
;
import
org.janusgraph.graphdb.query.graph.GraphCentricQueryBuilder
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
java.util.*
;
import
java.util.*
;
...
@@ -45,6 +49,7 @@ import java.util.*;
...
@@ -45,6 +49,7 @@ import java.util.*;
* Janus implementation of NativeTinkerpopGraphQuery.
* Janus implementation of NativeTinkerpopGraphQuery.
*/
*/
public
class
NativeJanusGraphQuery
implements
NativeTinkerpopGraphQuery
<
AtlasJanusVertex
,
AtlasJanusEdge
>
{
public
class
NativeJanusGraphQuery
implements
NativeTinkerpopGraphQuery
<
AtlasJanusVertex
,
AtlasJanusEdge
>
{
private
static
final
Logger
LOG
=
LoggerFactory
.
getLogger
(
NativeJanusGraphQuery
.
class
);
private
AtlasJanusGraph
graph
;
private
AtlasJanusGraph
graph
;
private
JanusGraphQuery
<?>
query
;
private
JanusGraphQuery
<?>
query
;
...
@@ -69,20 +74,41 @@ public class NativeJanusGraphQuery implements NativeTinkerpopGraphQuery<AtlasJan
...
@@ -69,20 +74,41 @@ public class NativeJanusGraphQuery implements NativeTinkerpopGraphQuery<AtlasJan
@Override
@Override
public
Iterable
<
AtlasEdge
<
AtlasJanusVertex
,
AtlasJanusEdge
>>
edges
(
int
limit
)
{
public
Iterable
<
AtlasEdge
<
AtlasJanusVertex
,
AtlasJanusEdge
>>
edges
(
int
limit
)
{
Iterable
<
JanusGraphEdge
>
it
=
query
.
limit
(
limit
).
edges
();
Iterable
<
JanusGraphEdge
>
it
=
query
.
limit
(
limit
).
edges
();
if
(
LOG
.
isDebugEnabled
())
{
if
(
query
instanceof
GraphCentricQueryBuilder
)
{
LOG
.
debug
(
"NativeJanusGraphQuery.vertices({}): resultSize={}, {}"
,
limit
,
getCountForDebugLog
(
it
),
((
GraphCentricQueryBuilder
)
query
).
constructQuery
(
ElementCategory
.
EDGE
));
}
else
{
LOG
.
debug
(
"NativeJanusGraphQuery.vertices({}): resultSize={}, {}"
,
limit
,
getCountForDebugLog
(
it
),
query
);
}
}
return
graph
.
wrapEdges
(
it
);
return
graph
.
wrapEdges
(
it
);
}
}
@Override
@Override
public
Iterable
<
AtlasEdge
<
AtlasJanusVertex
,
AtlasJanusEdge
>>
edges
(
int
offset
,
int
limit
)
{
public
Iterable
<
AtlasEdge
<
AtlasJanusVertex
,
AtlasJanusEdge
>>
edges
(
int
offset
,
int
limit
)
{
List
<
Edge
>
result
=
new
ArrayList
<>(
limit
);
List
<
Edge
>
result
=
new
ArrayList
<>(
limit
);
Iterator
<?
extends
Edge
>
iter
=
query
.
limit
(
offset
+
limit
).
edges
().
iterator
();
Iterable
<?
extends
Edge
>
it
=
query
.
limit
(
offset
+
limit
).
edges
();
if
(
LOG
.
isDebugEnabled
())
{
if
(
query
instanceof
GraphCentricQueryBuilder
)
{
LOG
.
debug
(
"NativeJanusGraphQuery.vertices({}, {}): resultSize={}, {}"
,
offset
,
limit
,
getCountForDebugLog
(
it
),
((
GraphCentricQueryBuilder
)
query
).
constructQuery
(
ElementCategory
.
EDGE
));
}
else
{
LOG
.
debug
(
"NativeJanusGraphQuery.vertices({}, {}): resultSize={}, {}"
,
offset
,
limit
,
getCountForDebugLog
(
it
),
query
);
}
}
Iterator
<?
extends
Edge
>
iter
=
it
.
iterator
();
for
(
long
resultIdx
=
0
;
iter
.
hasNext
()
&&
result
.
size
()
<
limit
;
resultIdx
++)
{
for
(
long
resultIdx
=
0
;
iter
.
hasNext
()
&&
result
.
size
()
<
limit
;
resultIdx
++)
{
Edge
e
=
iter
.
next
();
if
(
resultIdx
<
offset
)
{
if
(
resultIdx
<
offset
)
{
continue
;
continue
;
}
}
result
.
add
(
iter
.
next
()
);
result
.
add
(
e
);
}
}
return
graph
.
wrapEdges
(
result
);
return
graph
.
wrapEdges
(
result
);
...
@@ -91,20 +117,41 @@ public class NativeJanusGraphQuery implements NativeTinkerpopGraphQuery<AtlasJan
...
@@ -91,20 +117,41 @@ public class NativeJanusGraphQuery implements NativeTinkerpopGraphQuery<AtlasJan
@Override
@Override
public
Iterable
<
AtlasVertex
<
AtlasJanusVertex
,
AtlasJanusEdge
>>
vertices
(
int
limit
)
{
public
Iterable
<
AtlasVertex
<
AtlasJanusVertex
,
AtlasJanusEdge
>>
vertices
(
int
limit
)
{
Iterable
<
JanusGraphVertex
>
it
=
query
.
limit
(
limit
).
vertices
();
Iterable
<
JanusGraphVertex
>
it
=
query
.
limit
(
limit
).
vertices
();
if
(
LOG
.
isDebugEnabled
())
{
if
(
query
instanceof
GraphCentricQueryBuilder
)
{
LOG
.
debug
(
"NativeJanusGraphQuery.vertices({}): resultSize={}, {}"
,
limit
,
getCountForDebugLog
(
it
),
((
GraphCentricQueryBuilder
)
query
).
constructQuery
(
ElementCategory
.
VERTEX
));
}
else
{
LOG
.
debug
(
"NativeJanusGraphQuery.vertices({}): resultSize={}, {}"
,
limit
,
getCountForDebugLog
(
it
),
query
);
}
}
return
graph
.
wrapVertices
(
it
);
return
graph
.
wrapVertices
(
it
);
}
}
@Override
@Override
public
Iterable
<
AtlasVertex
<
AtlasJanusVertex
,
AtlasJanusEdge
>>
vertices
(
int
offset
,
int
limit
)
{
public
Iterable
<
AtlasVertex
<
AtlasJanusVertex
,
AtlasJanusEdge
>>
vertices
(
int
offset
,
int
limit
)
{
List
<
Vertex
>
result
=
new
ArrayList
<>(
limit
);
List
<
Vertex
>
result
=
new
ArrayList
<>(
limit
);
Iterator
<?
extends
Vertex
>
iter
=
query
.
limit
(
offset
+
limit
).
vertices
().
iterator
();
Iterable
<
JanusGraphVertex
>
it
=
query
.
limit
(
offset
+
limit
).
vertices
();
if
(
LOG
.
isDebugEnabled
())
{
if
(
query
instanceof
GraphCentricQueryBuilder
)
{
LOG
.
debug
(
"NativeJanusGraphQuery.vertices({}, {}): resultSize={}, {}"
,
offset
,
limit
,
getCountForDebugLog
(
it
),
((
GraphCentricQueryBuilder
)
query
).
constructQuery
(
ElementCategory
.
VERTEX
));
}
else
{
LOG
.
debug
(
"NativeJanusGraphQuery.vertices({}, {}): resultSize={}, {}"
,
offset
,
limit
,
getCountForDebugLog
(
it
),
query
);
}
}
Iterator
<?
extends
Vertex
>
iter
=
it
.
iterator
();
for
(
long
resultIdx
=
0
;
iter
.
hasNext
()
&&
result
.
size
()
<
limit
;
resultIdx
++)
{
for
(
long
resultIdx
=
0
;
iter
.
hasNext
()
&&
result
.
size
()
<
limit
;
resultIdx
++)
{
Vertex
v
=
iter
.
next
();
if
(
resultIdx
<
offset
)
{
if
(
resultIdx
<
offset
)
{
continue
;
continue
;
}
}
result
.
add
(
iter
.
next
()
);
result
.
add
(
v
);
}
}
return
graph
.
wrapVertices
(
result
);
return
graph
.
wrapVertices
(
result
);
...
@@ -169,4 +216,17 @@ public class NativeJanusGraphQuery implements NativeTinkerpopGraphQuery<AtlasJan
...
@@ -169,4 +216,17 @@ public class NativeJanusGraphQuery implements NativeTinkerpopGraphQuery<AtlasJan
}
}
}
}
private
int
getCountForDebugLog
(
Iterable
it
)
{
int
ret
=
0
;
if
(
LOG
.
isDebugEnabled
())
{
if
(
it
!=
null
)
{
for
(
Iterator
iter
=
it
.
iterator
();
iter
.
hasNext
();
iter
.
next
())
{
ret
++;
}
}
}
return
ret
;
}
}
}
repository/src/main/java/org/apache/atlas/discovery/ClassificationSearchProcessor.java
View file @
f1bfe564
...
@@ -224,15 +224,15 @@ public class ClassificationSearchProcessor extends SearchProcessor {
...
@@ -224,15 +224,15 @@ public class ClassificationSearchProcessor extends SearchProcessor {
break
;
break
;
}
}
final
boolean
isLastResultPage
;
if
(
indexQuery
!=
null
)
{
if
(
indexQuery
!=
null
)
{
Iterator
<
AtlasIndexQuery
.
Result
>
queryResult
=
indexQuery
.
vertices
(
qryOffset
,
limit
);
Iterator
<
AtlasIndexQuery
.
Result
>
queryResult
=
indexQuery
.
vertices
(
qryOffset
,
limit
);
if
(!
queryResult
.
hasNext
())
{
// no more results from index query - end of search
break
;
}
getVerticesFromIndexQueryResult
(
queryResult
,
classificationVertices
);
getVerticesFromIndexQueryResult
(
queryResult
,
classificationVertices
);
isLastResultPage
=
classificationVertices
.
size
()
<
limit
;
// Do in-memory filtering before the graph query
// Do in-memory filtering before the graph query
CollectionUtils
.
filter
(
classificationVertices
,
inMemoryPredicate
);
CollectionUtils
.
filter
(
classificationVertices
,
inMemoryPredicate
);
}
else
{
}
else
{
...
@@ -240,20 +240,16 @@ public class ClassificationSearchProcessor extends SearchProcessor {
...
@@ -240,20 +240,16 @@ public class ClassificationSearchProcessor extends SearchProcessor {
// We can use single graph query to determine in this case
// We can use single graph query to determine in this case
Iterator
<
AtlasVertex
>
queryResult
=
entityGraphQueryTraitNames
.
vertices
(
qryOffset
,
limit
).
iterator
();
Iterator
<
AtlasVertex
>
queryResult
=
entityGraphQueryTraitNames
.
vertices
(
qryOffset
,
limit
).
iterator
();
if
(!
queryResult
.
hasNext
())
{
// no more results - end of search
break
;
}
getVertices
(
queryResult
,
entityVertices
);
getVertices
(
queryResult
,
entityVertices
);
isLastResultPage
=
entityVertices
.
size
()
<
limit
;
}
else
{
}
else
{
Iterator
<
AtlasVertex
>
queryResult
=
tagGraphQueryWithAttributes
.
vertices
(
qryOffset
,
limit
).
iterator
();
Iterator
<
AtlasVertex
>
queryResult
=
tagGraphQueryWithAttributes
.
vertices
(
qryOffset
,
limit
).
iterator
();
if
(!
queryResult
.
hasNext
())
{
// no more results - end of search
break
;
}
getVertices
(
queryResult
,
classificationVertices
);
getVertices
(
queryResult
,
classificationVertices
);
isLastResultPage
=
classificationVertices
.
size
()
<
limit
;
// Do in-memory filtering before the graph query
// Do in-memory filtering before the graph query
CollectionUtils
.
filter
(
classificationVertices
,
inMemoryPredicate
);
CollectionUtils
.
filter
(
classificationVertices
,
inMemoryPredicate
);
}
}
...
@@ -288,6 +284,10 @@ public class ClassificationSearchProcessor extends SearchProcessor {
...
@@ -288,6 +284,10 @@ public class ClassificationSearchProcessor extends SearchProcessor {
super
.
filter
(
entityVertices
);
super
.
filter
(
entityVertices
);
resultIdx
=
collectResultVertices
(
ret
,
startIdx
,
limit
,
resultIdx
,
entityVertices
);
resultIdx
=
collectResultVertices
(
ret
,
startIdx
,
limit
,
resultIdx
,
entityVertices
);
if
(
isLastResultPage
)
{
break
;
}
}
}
}
finally
{
}
finally
{
AtlasPerfTracer
.
log
(
perf
);
AtlasPerfTracer
.
log
(
perf
);
...
...
repository/src/main/java/org/apache/atlas/discovery/EntitySearchProcessor.java
View file @
f1bfe564
...
@@ -254,15 +254,15 @@ public class EntitySearchProcessor extends SearchProcessor {
...
@@ -254,15 +254,15 @@ public class EntitySearchProcessor extends SearchProcessor {
break
;
break
;
}
}
final
boolean
isLastResultPage
;
if
(
indexQuery
!=
null
)
{
if
(
indexQuery
!=
null
)
{
Iterator
<
AtlasIndexQuery
.
Result
>
idxQueryResult
=
indexQuery
.
vertices
(
qryOffset
,
limit
);
Iterator
<
AtlasIndexQuery
.
Result
>
idxQueryResult
=
indexQuery
.
vertices
(
qryOffset
,
limit
);
if
(!
idxQueryResult
.
hasNext
())
{
// no more results from index query - end of search
break
;
}
getVerticesFromIndexQueryResult
(
idxQueryResult
,
entityVertices
);
getVerticesFromIndexQueryResult
(
idxQueryResult
,
entityVertices
);
isLastResultPage
=
entityVertices
.
size
()
<
limit
;
// Do in-memory filtering before the graph query
// Do in-memory filtering before the graph query
CollectionUtils
.
filter
(
entityVertices
,
inMemoryPredicate
);
CollectionUtils
.
filter
(
entityVertices
,
inMemoryPredicate
);
...
@@ -272,16 +272,18 @@ public class EntitySearchProcessor extends SearchProcessor {
...
@@ -272,16 +272,18 @@ public class EntitySearchProcessor extends SearchProcessor {
}
else
{
}
else
{
Iterator
<
AtlasVertex
>
queryResult
=
graphQuery
.
vertices
(
qryOffset
,
limit
).
iterator
();
Iterator
<
AtlasVertex
>
queryResult
=
graphQuery
.
vertices
(
qryOffset
,
limit
).
iterator
();
if
(!
queryResult
.
hasNext
())
{
// no more results from query - end of search
break
;
}
getVertices
(
queryResult
,
entityVertices
);
getVertices
(
queryResult
,
entityVertices
);
isLastResultPage
=
entityVertices
.
size
()
<
limit
;
}
}
super
.
filter
(
entityVertices
);
super
.
filter
(
entityVertices
);
resultIdx
=
collectResultVertices
(
ret
,
startIdx
,
limit
,
resultIdx
,
entityVertices
);
resultIdx
=
collectResultVertices
(
ret
,
startIdx
,
limit
,
resultIdx
,
entityVertices
);
if
(
isLastResultPage
)
{
break
;
}
}
}
}
finally
{
}
finally
{
AtlasPerfTracer
.
log
(
perf
);
AtlasPerfTracer
.
log
(
perf
);
...
...
repository/src/main/java/org/apache/atlas/discovery/FullTextSearchProcessor.java
View file @
f1bfe564
...
@@ -116,13 +116,14 @@ public class FullTextSearchProcessor extends SearchProcessor {
...
@@ -116,13 +116,14 @@ public class FullTextSearchProcessor extends SearchProcessor {
Iterator
<
AtlasIndexQuery
.
Result
>
idxQueryResult
=
indexQuery
.
vertices
(
qryOffset
,
limit
);
Iterator
<
AtlasIndexQuery
.
Result
>
idxQueryResult
=
indexQuery
.
vertices
(
qryOffset
,
limit
);
if
(!
idxQueryResult
.
hasNext
())
{
// no more results from solr - end of search
final
boolean
isLastResultPage
;
break
;
int
resultCount
=
0
;
}
while
(
idxQueryResult
.
hasNext
())
{
while
(
idxQueryResult
.
hasNext
())
{
AtlasVertex
vertex
=
idxQueryResult
.
next
().
getVertex
();
AtlasVertex
vertex
=
idxQueryResult
.
next
().
getVertex
();
resultCount
++;
// skip non-entity vertices
// skip non-entity vertices
if
(!
AtlasGraphUtilsV2
.
isEntityVertex
(
vertex
))
{
if
(!
AtlasGraphUtilsV2
.
isEntityVertex
(
vertex
))
{
if
(
LOG
.
isDebugEnabled
())
{
if
(
LOG
.
isDebugEnabled
())
{
...
@@ -139,9 +140,15 @@ public class FullTextSearchProcessor extends SearchProcessor {
...
@@ -139,9 +140,15 @@ public class FullTextSearchProcessor extends SearchProcessor {
entityVertices
.
add
(
vertex
);
entityVertices
.
add
(
vertex
);
}
}
isLastResultPage
=
resultCount
<
limit
;
super
.
filter
(
entityVertices
);
super
.
filter
(
entityVertices
);
resultIdx
=
collectResultVertices
(
ret
,
startIdx
,
limit
,
resultIdx
,
entityVertices
);
resultIdx
=
collectResultVertices
(
ret
,
startIdx
,
limit
,
resultIdx
,
entityVertices
);
if
(
isLastResultPage
)
{
break
;
}
}
}
}
finally
{
}
finally
{
AtlasPerfTracer
.
log
(
perf
);
AtlasPerfTracer
.
log
(
perf
);
...
...
repository/src/main/java/org/apache/atlas/repository/graph/GraphBackedSearchIndexer.java
View file @
f1bfe564
...
@@ -260,19 +260,19 @@ public class GraphBackedSearchIndexer implements SearchIndexer, ActiveStateChang
...
@@ -260,19 +260,19 @@ public class GraphBackedSearchIndexer implements SearchIndexer, ActiveStateChang
}
}
// create vertex indexes
// create vertex indexes
createVertexIndex
(
management
,
GUID_PROPERTY_KEY
,
String
.
class
,
true
,
SINGLE
,
true
,
true
);
createVertexIndex
(
management
,
GUID_PROPERTY_KEY
,
String
.
class
,
true
,
SINGLE
,
true
,
false
);
createVertexIndex
(
management
,
ENTITY_TYPE_PROPERTY_KEY
,
String
.
class
,
false
,
SINGLE
,
true
,
false
);
createVertexIndex
(
management
,
SUPER_TYPES_PROPERTY_KEY
,
String
.
class
,
false
,
SET
,
true
,
false
);
createVertexIndex
(
management
,
TIMESTAMP_PROPERTY_KEY
,
Long
.
class
,
false
,
SINGLE
,
false
,
false
);
createVertexIndex
(
management
,
TIMESTAMP_PROPERTY_KEY
,
Long
.
class
,
false
,
SINGLE
,
false
,
false
);
createVertexIndex
(
management
,
MODIFICATION_TIMESTAMP_PROPERTY_KEY
,
Long
.
class
,
false
,
SINGLE
,
false
,
false
);
createVertexIndex
(
management
,
MODIFICATION_TIMESTAMP_PROPERTY_KEY
,
Long
.
class
,
false
,
SINGLE
,
false
,
false
);
createVertexIndex
(
management
,
STATE_PROPERTY_KEY
,
String
.
class
,
false
,
SINGLE
,
false
,
false
);
createVertexIndex
(
management
,
STATE_PROPERTY_KEY
,
String
.
class
,
false
,
SINGLE
,
false
,
false
);
createVertexIndex
(
management
,
CREATED_BY_KEY
,
String
.
class
,
false
,
SINGLE
,
true
,
true
);
createVertexIndex
(
management
,
CREATED_BY_KEY
,
String
.
class
,
false
,
SINGLE
,
true
,
true
);
createVertexIndex
(
management
,
MODIFIED_BY_KEY
,
String
.
class
,
false
,
SINGLE
,
true
,
true
);
createVertexIndex
(
management
,
MODIFIED_BY_KEY
,
String
.
class
,
false
,
SINGLE
,
true
,
true
);
createVertexIndex
(
management
,
ENTITY_TYPE_PROPERTY_KEY
,
String
.
class
,
false
,
SINGLE
,
true
,
true
);
createVertexIndex
(
management
,
SUPER_TYPES_PROPERTY_KEY
,
String
.
class
,
false
,
SET
,
true
,
true
);
createVertexIndex
(
management
,
TRAIT_NAMES_PROPERTY_KEY
,
String
.
class
,
false
,
SET
,
true
,
true
);
createVertexIndex
(
management
,
TRAIT_NAMES_PROPERTY_KEY
,
String
.
class
,
false
,
SET
,
true
,
true
);
createVertexIndex
(
management
,
PROPAGATED_TRAIT_NAMES_PROPERTY_KEY
,
String
.
class
,
false
,
LIST
,
true
,
true
);
createVertexIndex
(
management
,
PROPAGATED_TRAIT_NAMES_PROPERTY_KEY
,
String
.
class
,
false
,
LIST
,
true
,
true
);
createVertexIndex
(
management
,
TYPENAME_PROPERTY_KEY
,
String
.
class
,
true
,
SINGLE
,
true
,
tru
e
);
createVertexIndex
(
management
,
TYPENAME_PROPERTY_KEY
,
String
.
class
,
true
,
SINGLE
,
true
,
fals
e
);
createVertexIndex
(
management
,
VERTEX_TYPE_PROPERTY_KEY
,
String
.
class
,
false
,
SINGLE
,
true
,
true
);
createVertexIndex
(
management
,
VERTEX_TYPE_PROPERTY_KEY
,
String
.
class
,
false
,
SINGLE
,
true
,
true
);
createVertexIndex
(
management
,
CLASSIFICATION_ENTITY_GUID
,
String
.
class
,
false
,
SINGLE
,
true
,
tru
e
);
createVertexIndex
(
management
,
CLASSIFICATION_ENTITY_GUID
,
String
.
class
,
false
,
SINGLE
,
true
,
fals
e
);
createVertexIndex
(
management
,
VERTEX_ID_IN_IMPORT_KEY
,
Long
.
class
,
false
,
SINGLE
,
true
,
false
);
createVertexIndex
(
management
,
VERTEX_ID_IN_IMPORT_KEY
,
Long
.
class
,
false
,
SINGLE
,
true
,
false
);
// create vertex-centric index
// create vertex-centric index
...
@@ -499,8 +499,9 @@ public class GraphBackedSearchIndexer implements SearchIndexer, ActiveStateChang
...
@@ -499,8 +499,9 @@ public class GraphBackedSearchIndexer implements SearchIndexer, ActiveStateChang
if
(
propertyKey
!=
null
)
{
if
(
propertyKey
!=
null
)
{
if
(
createCompositeIndex
)
{
if
(
createCompositeIndex
)
{
createVertexCompositeIndex
(
management
,
propertyClass
,
propertyKey
,
isUnique
);
createVertexCompositeIndex
(
management
,
propertyClass
,
propertyKey
,
isUnique
);
}
}
else
if
(
createCompositeIndexWithTypeAndSuperTypes
)
{
if
(
createCompositeIndexWithTypeAndSuperTypes
)
{
createVertexCompositeIndexWithTypeName
(
management
,
propertyClass
,
propertyKey
);
createVertexCompositeIndexWithTypeName
(
management
,
propertyClass
,
propertyKey
);
createVertexCompositeIndexWithSuperTypeName
(
management
,
propertyClass
,
propertyKey
);
createVertexCompositeIndexWithSuperTypeName
(
management
,
propertyClass
,
propertyKey
);
}
}
...
...
repository/src/main/java/org/apache/atlas/repository/store/graph/v2/AtlasGraphUtilsV2.java
View file @
f1bfe564
...
@@ -316,8 +316,8 @@ public class AtlasGraphUtilsV2 {
...
@@ -316,8 +316,8 @@ public class AtlasGraphUtilsV2 {
public
static
AtlasVertex
findByTypeAndPropertyName
(
String
typeName
,
String
propertyName
,
Object
attrVal
)
{
public
static
AtlasVertex
findByTypeAndPropertyName
(
String
typeName
,
String
propertyName
,
Object
attrVal
)
{
AtlasGraphQuery
query
=
AtlasGraphProvider
.
getGraphInstance
().
query
()
AtlasGraphQuery
query
=
AtlasGraphProvider
.
getGraphInstance
().
query
()
.
has
(
Constants
.
ENTITY_TYPE_PROPERTY_KEY
,
typeName
)
.
has
(
Constants
.
ENTITY_TYPE_PROPERTY_KEY
,
typeName
)
.
has
(
Constants
.
STATE_PROPERTY_KEY
,
AtlasEntity
.
Status
.
ACTIVE
.
name
()
)
.
has
(
propertyName
,
attrVal
)
.
has
(
propertyName
,
attrVal
);
.
has
(
Constants
.
STATE_PROPERTY_KEY
,
AtlasEntity
.
Status
.
ACTIVE
.
name
()
);
Iterator
<
AtlasVertex
>
results
=
query
.
vertices
().
iterator
();
Iterator
<
AtlasVertex
>
results
=
query
.
vertices
().
iterator
();
...
@@ -329,8 +329,8 @@ public class AtlasGraphUtilsV2 {
...
@@ -329,8 +329,8 @@ public class AtlasGraphUtilsV2 {
public
static
AtlasVertex
findBySuperTypeAndPropertyName
(
String
typeName
,
String
propertyName
,
Object
attrVal
)
{
public
static
AtlasVertex
findBySuperTypeAndPropertyName
(
String
typeName
,
String
propertyName
,
Object
attrVal
)
{
AtlasGraphQuery
query
=
AtlasGraphProvider
.
getGraphInstance
().
query
()
AtlasGraphQuery
query
=
AtlasGraphProvider
.
getGraphInstance
().
query
()
.
has
(
Constants
.
SUPER_TYPES_PROPERTY_KEY
,
typeName
)
.
has
(
Constants
.
SUPER_TYPES_PROPERTY_KEY
,
typeName
)
.
has
(
Constants
.
STATE_PROPERTY_KEY
,
AtlasEntity
.
Status
.
ACTIVE
.
name
()
)
.
has
(
propertyName
,
attrVal
)
.
has
(
propertyName
,
attrVal
);
.
has
(
Constants
.
STATE_PROPERTY_KEY
,
AtlasEntity
.
Status
.
ACTIVE
.
name
()
);
Iterator
<
AtlasVertex
>
results
=
query
.
vertices
().
iterator
();
Iterator
<
AtlasVertex
>
results
=
query
.
vertices
().
iterator
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment