-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
reindex_actions.ts
241 lines (208 loc) · 7.08 KB
/
reindex_actions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import moment from 'moment';
import {
SavedObjectsFindResponse,
SavedObjectsClientContract,
ElasticsearchClient,
} from 'src/core/server';
import {
REINDEX_OP_TYPE,
ReindexOperation,
ReindexOptions,
ReindexSavedObject,
ReindexStatus,
ReindexStep,
} from '../../../common/types';
import { versionService } from '../version';
import { generateNewIndexName } from './index_settings';
import { FlatSettings, FlatSettingsWithTypeName } from './types';
// TODO: base on elasticsearch.requestTimeout?
export const LOCK_WINDOW = moment.duration(90, 'seconds');
/**
* A collection of utility functions pulled out out of the ReindexService to make testing simpler.
* This is NOT intended to be used by any other code.
*/
export interface ReindexActions {
/**
* Creates a new reindexOp, does not perform any pre-flight checks.
* @param indexName
* @param opts Additional options when creating the reindex operation
*/
createReindexOp(indexName: string, opts?: ReindexOptions): Promise<ReindexSavedObject>;
/**
* Deletes a reindexOp.
* @param reindexOp
*/
deleteReindexOp(reindexOp: ReindexSavedObject): void;
/**
* Updates a ReindexSavedObject.
* @param reindexOp
* @param attrs
*/
updateReindexOp(
reindexOp: ReindexSavedObject,
attrs?: Partial<ReindexOperation>
): Promise<ReindexSavedObject>;
/**
* Runs a callback function while locking the reindex operation. Guaranteed to unlock the reindex operation when complete.
* @param func A function to run with the locked ML lock document. Must return a promise that resolves
* to the updated ReindexSavedObject.
*/
runWhileLocked(
reindexOp: ReindexSavedObject,
func: (reindexOp: ReindexSavedObject) => Promise<ReindexSavedObject>
): Promise<ReindexSavedObject>;
/**
* Finds the reindex operation saved object for the given index.
* @param indexName
*/
findReindexOperations(indexName: string): Promise<SavedObjectsFindResponse<ReindexOperation>>;
/**
* Returns an array of all reindex operations that have a status.
*/
findAllByStatus(status: ReindexStatus): Promise<ReindexSavedObject[]>;
/**
* Retrieve index settings (in flat, dot-notation style) and mappings.
* @param indexName
* @param withTypeName
*/
getFlatSettings(
indexName: string,
withTypeName?: boolean
): Promise<FlatSettings | FlatSettingsWithTypeName | null>;
}
export const reindexActionsFactory = (
client: SavedObjectsClientContract,
esClient: ElasticsearchClient
): ReindexActions => {
// ----- Internal functions
const isLocked = (reindexOp: ReindexSavedObject) => {
if (reindexOp.attributes.locked) {
const now = moment();
const lockedTime = moment(reindexOp.attributes.locked);
// If the object has been locked for more than the LOCK_WINDOW, assume the process that locked it died.
if (now.subtract(LOCK_WINDOW) < lockedTime) {
return true;
}
}
return false;
};
const acquireLock = async (reindexOp: ReindexSavedObject) => {
if (isLocked(reindexOp)) {
throw new Error(`Another Kibana process is currently modifying this reindex operation.`);
}
return client.update<ReindexOperation>(
REINDEX_OP_TYPE,
reindexOp.id,
{ ...reindexOp.attributes, locked: moment().format() },
{ version: reindexOp.version }
) as Promise<ReindexSavedObject>;
};
const releaseLock = (reindexOp: ReindexSavedObject) => {
return client.update<ReindexOperation>(
REINDEX_OP_TYPE,
reindexOp.id,
{ ...reindexOp.attributes, locked: null },
{ version: reindexOp.version }
) as Promise<ReindexSavedObject>;
};
// ----- Public interface
return {
async createReindexOp(indexName: string, opts?: ReindexOptions) {
return client.create<ReindexOperation>(REINDEX_OP_TYPE, {
indexName,
newIndexName: generateNewIndexName(indexName),
status: ReindexStatus.inProgress,
lastCompletedStep: ReindexStep.created,
locked: null,
reindexTaskId: null,
reindexTaskPercComplete: null,
errorMessage: null,
runningReindexCount: null,
reindexOptions: opts,
});
},
deleteReindexOp(reindexOp: ReindexSavedObject) {
return client.delete(REINDEX_OP_TYPE, reindexOp.id);
},
async updateReindexOp(reindexOp: ReindexSavedObject, attrs: Partial<ReindexOperation> = {}) {
if (!isLocked(reindexOp)) {
throw new Error(`ReindexOperation must be locked before updating.`);
}
const newAttrs = { ...reindexOp.attributes, locked: moment().format(), ...attrs };
return client.update<ReindexOperation>(REINDEX_OP_TYPE, reindexOp.id, newAttrs, {
version: reindexOp.version,
}) as Promise<ReindexSavedObject>;
},
async runWhileLocked(reindexOp, func) {
reindexOp = await acquireLock(reindexOp);
try {
reindexOp = await func(reindexOp);
} finally {
reindexOp = await releaseLock(reindexOp);
}
return reindexOp;
},
findReindexOperations(indexName: string) {
return client.find<ReindexOperation>({
type: REINDEX_OP_TYPE,
search: `"${indexName}"`,
searchFields: ['indexName'],
});
},
async findAllByStatus(status: ReindexStatus) {
const firstPage = await client.find<ReindexOperation>({
type: REINDEX_OP_TYPE,
search: status.toString(),
searchFields: ['status'],
});
if (firstPage.total === firstPage.saved_objects.length) {
return firstPage.saved_objects;
}
let allOps = firstPage.saved_objects;
let page = firstPage.page + 1;
while (allOps.length < firstPage.total) {
const nextPage = await client.find<ReindexOperation>({
type: REINDEX_OP_TYPE,
search: status.toString(),
searchFields: ['status'],
page,
});
allOps = [...allOps, ...nextPage.saved_objects];
page++;
}
return allOps;
},
async getFlatSettings(indexName: string, withTypeName?: boolean) {
let flatSettings;
if (versionService.getMajorVersion() === 7 && withTypeName) {
// On 7.x, we need to get index settings with mapping type
flatSettings = await esClient.indices.get<{
[indexName: string]: FlatSettingsWithTypeName;
}>({
index: indexName,
flat_settings: true,
// This @ts-ignore is needed on master since the flag is deprecated on >7.x
// @ts-ignore
include_type_name: true,
});
} else {
flatSettings = await esClient.indices.get<{
[indexName: string]: FlatSettings;
}>({
index: indexName,
flat_settings: true,
});
}
if (!flatSettings.body[indexName]) {
return null;
}
return flatSettings.body[indexName];
},
};
};