102
102
import static org .apache .atlas .repository .graphdb .janus .AtlasElasticsearchDatabase .getClient ;
103
103
import static org .apache .atlas .repository .graphdb .janus .AtlasElasticsearchDatabase .getLowLevelClient ;
104
104
import static org .apache .atlas .repository .graphdb .janus .AtlasElasticsearchDatabase .getProductClusterClient ;
105
- import static org .apache .atlas .repository .graphdb .janus .AtlasElasticsearchDatabase .getSDKClusterClient ;
105
+ import static org .apache .atlas .repository .graphdb .janus .AtlasElasticsearchDatabase .getNonProductSearchClusterClient ;
106
106
import static org .apache .atlas .repository .graphdb .janus .AtlasJanusGraphDatabase .getGraphInstance ;
107
107
import static org .apache .atlas .type .Constants .STATE_PROPERTY_KEY ;
108
108
@@ -122,8 +122,8 @@ public class AtlasJanusGraph implements AtlasGraph<AtlasJanusVertex, AtlasJanusE
122
122
private final RestHighLevelClient elasticsearchClient ;
123
123
private final RestClient restClient ;
124
124
125
- private final RestClient esProductClusterClient ;
126
- private final RestClient esSDKClusterClient ;
125
+ private final RestClient esProductClusterClient ;
126
+ private final RestClient esNonProductClusterClient ;
127
127
128
128
private final ThreadLocal <GremlinGroovyScriptEngine > scriptEngine = ThreadLocal .withInitial (() -> {
129
129
DefaultImportCustomizer .Builder builder = DefaultImportCustomizer .build ()
@@ -134,10 +134,10 @@ public class AtlasJanusGraph implements AtlasGraph<AtlasJanusVertex, AtlasJanusE
134
134
});
135
135
136
136
public AtlasJanusGraph () {
137
- this (getGraphInstance (), getClient (), getLowLevelClient (), getProductClusterClient (), getSDKClusterClient ());
137
+ this (getGraphInstance (), getClient (), getLowLevelClient (), getProductClusterClient (), getNonProductSearchClusterClient ());
138
138
}
139
139
140
- public AtlasJanusGraph (JanusGraph graphInstance , RestHighLevelClient elasticsearchClient , RestClient restClient ,RestClient esProductClusterClient , RestClient esSDKClusterClient ) {
140
+ public AtlasJanusGraph (JanusGraph graphInstance , RestHighLevelClient elasticsearchClient , RestClient restClient ,RestClient esProductClusterClient , RestClient esNonProductClusterClient ) {
141
141
//determine multi-properties once at startup
142
142
JanusGraphManagement mgmt = null ;
143
143
@@ -161,7 +161,7 @@ public AtlasJanusGraph(JanusGraph graphInstance, RestHighLevelClient elasticsear
161
161
this .restClient = restClient ;
162
162
this .elasticsearchClient = elasticsearchClient ;
163
163
this .esProductClusterClient = esProductClusterClient ;
164
- this .esSDKClusterClient = esSDKClusterClient ;
164
+ this .esNonProductClusterClient = esNonProductClusterClient ;
165
165
}
166
166
167
167
@ Override
@@ -333,7 +333,7 @@ public AtlasIndexQuery<AtlasJanusVertex, AtlasJanusEdge> elasticsearchQuery(Stri
333
333
LOG .error ("restClient is not initiated, failed to run query on ES" );
334
334
throw new AtlasBaseException (INDEX_SEARCH_FAILED , "restClient is not initiated" );
335
335
}
336
- return new AtlasElasticsearchQuery (this , restClient , INDEX_PREFIX + indexName , searchParams , esProductClusterClient , esSDKClusterClient );
336
+ return new AtlasElasticsearchQuery (this , restClient , INDEX_PREFIX + indexName , searchParams , esProductClusterClient , esNonProductClusterClient );
337
337
}
338
338
339
339
@ Override
@@ -389,7 +389,7 @@ public AtlasIndexQuery elasticsearchQuery(String indexName) throws AtlasBaseExce
389
389
LOG .error ("restClient is not initiated, failed to run query on ES" );
390
390
throw new AtlasBaseException (INDEX_SEARCH_FAILED , "restClient is not initiated" );
391
391
}
392
- return new AtlasElasticsearchQuery (this , indexName , restClient , esProductClusterClient , esSDKClusterClient );
392
+ return new AtlasElasticsearchQuery (this , indexName , restClient , esProductClusterClient , esNonProductClusterClient );
393
393
}
394
394
395
395
@ Override
0 commit comments