- Java REST Client (deprecated): other versions:
- Overview
- Java Low Level REST Client
- Java High Level REST Client
- Getting started
- Document APIs
- Search APIs
- Miscellaneous APIs
- Indices APIs
- Analyze API
- Create Index API
- Delete Index API
- Indices Exists API
- Open Index API
- Close Index API
- Shrink Index API
- Split Index API
- Refresh API
- Flush API
- Flush Synced API
- Clear Cache API
- Force Merge API
- Rollover Index API
- Put Mapping API
- Get Mappings API
- Get Field Mappings API
- Index Aliases API
- Exists Alias API
- Get Alias API
- Update Indices Settings API
- Get Settings API
- Put Template API
- Validate Query API
- Get Templates API
- Get Index API
- Cluster APIs
- Ingest APIs
- Snapshot APIs
- Tasks APIs
- Script APIs
- Licensing APIs
- Machine Learning APIs
- Put Job API
- Get Job API
- Delete Job API
- Open Job API
- Close Job API
- Update Job API
- Flush Job API
- Put Datafeed API
- Get Datafeed API
- Delete Datafeed API
- Preview Datafeed API
- Start Datafeed API
- Stop Datafeed API
- Get Datafeed Stats API
- Get Job Stats API
- Forecast Job API
- Delete Forecast API
- Get Buckets API
- Get Overall Buckets API
- Get Records API
- Post Data API
- Get Influencers API
- Get Categories API
- Get Calendars API
- Put Calendar API
- Delete Calendar API
- Migration APIs
- Rollup APIs
- Security APIs
- Watcher APIs
- Graph APIs
- Using Java Builders
- Migration Guide
- License
Put Rollup Job API
editPut Rollup Job API
editThe Put Rollup Job API can be used to create a new Rollup job
in the cluster. The API accepts a PutRollupJobRequest
object
as a request and returns a PutRollupJobResponse
.
Put Rollup Job Request
editA PutRollupJobRequest
requires the following argument:
Rollup Job Configuration
editThe RollupJobConfig
object contains all the details about the rollup job
configuration. See Rollup configuration to learn more
about the various configuration settings.
A RollupJobConfig
requires the following arguments:
RollupJobConfig config = new RollupJobConfig(id, indexPattern, rollupIndex, cron, pageSize, groups, metrics, timeout);
The name of the Rollup job |
|
The index (or index pattern) to rollup |
|
The index to store rollup results into |
|
A cron expression which defines when the Rollup job should be executed |
|
The page size to use for the Rollup job |
|
The grouping configuration of the Rollup job as a |
|
The metrics configuration of the Rollup job as a list of |
|
The timeout value to use for the Rollup job as a |
Grouping Configuration
editThe grouping configuration of the Rollup job is defined in the RollupJobConfig
using a GroupConfig
instance. GroupConfig
reflects all the configuration
settings that can be defined using the REST API. See Grouping Config
to learn more about these settings.
Using the REST API, we could define this grouping configuration:
"groups" : { "date_histogram": { "field": "timestamp", "interval": "1h", "delay": "7d", "time_zone": "UTC" }, "terms": { "fields": ["hostname", "datacenter"] }, "histogram": { "fields": ["load", "net_in", "net_out"], "interval": 5 } }
Using the GroupConfig
object and the high level REST client, the same
configuration would be:
DateHistogramGroupConfig dateHistogram = new DateHistogramGroupConfig("timestamp", DateHistogramInterval.HOUR, new DateHistogramInterval("7d"), "UTC"); TermsGroupConfig terms = new TermsGroupConfig("hostname", "datacenter"); HistogramGroupConfig histogram = new HistogramGroupConfig(5L, "load", "net_in", "net_out"); GroupConfig groups = new GroupConfig(dateHistogram, histogram, terms);
Metrics Configuration
editAfter defining which groups should be generated for the data, you next configure
which metrics should be collected. The list of metrics is defined in the RollupJobConfig
using a List<MetricConfig>
instance. MetricConfig
reflects all the configuration
settings that can be defined using the REST API. See Metrics Config
to learn more about these settings.
Using the REST API, we could define this metrics configuration:
"metrics": [ { "field": "temperature", "metrics": ["min", "max", "sum"] }, { "field": "voltage", "metrics": ["avg", "value_count"] } ]
Using the MetricConfig
object and the high level REST client, the same
configuration would be:
Execution
editThe Put Rollup Job API can be executed through a RollupClient
instance. Such instance can be retrieved from a RestHighLevelClient
using the rollup()
method:
PutRollupJobResponse response = client.rollup().putRollupJob(request, RequestOptions.DEFAULT);
Response
editThe returned PutRollupJobResponse
indicates if the new Rollup job
has been successfully created:
Asynchronous Execution
editThis request can be executed asynchronously:
The asynchronous method does not block and returns immediately. Once it is
completed the ActionListener
is called back using the onResponse
method
if the execution successfully completed or using the onFailure
method if
it failed.
A typical listener for PutRollupJobResponse
looks like:
On this page