14 lines
357 B
Plaintext
14 lines
357 B
Plaintext
.Perform an atomic alias swap, for a rotating index
|
|
[source,js]
|
|
---------
|
|
client.indices.updateAliases({
|
|
body: {
|
|
actions: [
|
|
{ remove: { index: 'logstash-2014.04', alias: 'logstash-current' } },
|
|
{ add: { index: 'logstash-2014.05', alias: 'logstash-current' } }
|
|
]
|
|
}
|
|
}).then(function (response) {
|
|
// ...
|
|
}, errorHandler);
|
|
--------- |