Package oracle.pgx.config
Interface EsConnectionConfig
-
- All Known Implementing Classes:
AbstractEsEntityProviderConfig,AbstractPartitionedGraphConfig,EsEntityProviderConfig,PartitionedGraphConfig
public interface EsConnectionConfigcommon 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.StringgetEsIndexName()Es Index namejava.lang.StringgetEsUrl()Es URL pointing to an Es instancejava.lang.IntegergetMaxBatchSize()maximun number of docs requested during each es request, this is the Es defaultjava.lang.StringgetProxyUrl()proxy server URL to be used for connection to es_urljava.lang.StringgetScrollTime()Elasticsearch scroll timejava.lang.StringgetUsername()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
-
-