Package oracle.pgx.config
Interface EsConnectionConfig
-
- All Known Implementing Classes:
AbstractEsEntityProviderConfig
,AbstractPartitionedGraphConfig
,EsEntityProviderConfig
,PartitionedGraphConfig
public interface EsConnectionConfig
common interface for all configurations in loadable entities (graph/table) that include Es connection fields
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getEsIndexName()
Es Index namejava.lang.String
getEsUrl()
Es URL pointing to an Es instancejava.lang.Integer
getMaxBatchSize()
maximun number of docs requested during each es request, this is the Es defaultjava.lang.String
getProxyUrl()
proxy server URL to be used for connection to es_urljava.lang.String
getScrollTime()
Elasticsearch scroll timejava.lang.String
getUsername()
username to use when connecting to an Es instance
-
-
-
Method Detail
-
getEsUrl
java.lang.String getEsUrl()
Es URL pointing to an Es instance- Returns:
- the Es URL
-
getEsIndexName
java.lang.String getEsIndexName()
Es Index name- Returns:
- the Es Index
-
getScrollTime
java.lang.String getScrollTime()
Elasticsearch scroll time- Returns:
- the Elasticsearch scroll time
-
getProxyUrl
java.lang.String getProxyUrl()
proxy server URL to be used for connection to es_url- Returns:
- the proxy URL
-
getUsername
java.lang.String getUsername()
username to use when connecting to an Es instance- Returns:
- the username
-
getMaxBatchSize
java.lang.Integer getMaxBatchSize()
maximun number of docs requested during each es request, this is the Es default- Returns:
- the maximum number of requested docs
-
-