-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathviews.ts
751 lines (707 loc) · 18.4 KB
/
views.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
/**
* ```ts
* import type { ArangoSearchView } from "arangojs/views";
* ```
*
* The "views" module provides View related types and interfaces for
* TypeScript.
*
* @packageDocumentation
*/
import * as connections from "./connection.js";
import * as databases from "./databases.js";
import * as errors from "./errors.js";
import { VIEW_NOT_FOUND } from "./lib/codes.js";
//#region Shared types
/**
* Sorting direction. Descending or ascending.
*/
export type Direction = "desc" | "asc";
/**
* Compression for storing data.
*/
export type Compression = "lz4" | "none";
/**
* Policy to consolidate based on segment byte size and live document count as
* dictated by the customization attributes.
*
* @deprecated The `bytes_accum` consolidation policy was deprecated in
* ArangoDB 3.7 and should be replaced with the `tier` consolidation policy.
*/
export type BytesAccumConsolidationPolicy = {
/**
* Type of consolidation policy.
*/
type: "bytes_accum";
/**
* Must be in the range of `0.0` to `1.0`.
*/
threshold?: number;
};
/**
* Policy to consolidate if the sum of all candidate segment byte size is less
* than the total segment byte size multiplied by a given threshold.
*/
export type TierConsolidationPolicy = {
/**
* Type of consolidation policy.
*/
type: "tier";
/**
* Size below which all segments are treated as equivalent.
*
* Default: `2097152` (2 MiB)
*/
segmentsBytesFloor?: number;
/**
* Maximum allowed size of all consolidation segments.
*
* Default: `5368709120` (5 GiB)
*/
segmentsBytesMax?: number;
/**
* Maximum number of segments that are evaluated as candidates for
* consolidation.
*
* Default: `10`
*/
segmentsMax?: number;
/**
* Minimum number of segments that are evaluated as candidates for
* consolidation.
*
* Default: `1`
*/
segmentsMin?: number;
/**
* Consolidation candidates with a score less than this value will be
* filtered out.
*
* Default: `0`
*/
minScore?: number;
};
/**
* Type of a View.
*/
export type ViewType = ViewDescription["type"];
//#endregion
//#region CreateViewOptions
/**
* Options for creating a View.
*/
export type CreateViewOptions =
| CreateArangoSearchViewOptions
| CreateSearchAliasViewOptions;
/**
* Shared attributes of all View creation options.
*/
export type CreateViewOptionsType<Type extends ViewType, extra extends {}> = {
/**
* Type of the View.
*/
type: Type;
} & extra;
/**
* Options for creating an ArangoSearch View.
*/
export type CreateArangoSearchViewOptions = CreateViewOptionsType<
"arangosearch",
ArangoSearchViewPropertiesOptions & {
/**
* Maximum number of writers cached in the pool.
*
* Default: `64`
*/
writebufferIdle?: number;
/**
* Maximum number of concurrent active writers that perform a transaction.
*
* Default: `0`
*/
writebufferActive?: number;
/**
* Maximum memory byte size per writer before a writer flush is triggered.
*
* Default: `33554432` (32 MiB)
*/
writebufferSizeMax?: number;
/**
* Attribute path (`field`) for the value of each document that will be
* used for sorting.
*
* If `direction` is set to `"asc"` or `asc` is set to `true`,
* the primary sorting order will be ascending.
*
* If `direction` is set to `"desc"` or `asc` is set to `false`,
* the primary sorting order will be descending.
*/
primarySort?: CreateArangoSearchViewPrimarySortOptions[];
/**
* Compression to use for the primary sort data.
*
* Default: `"lz4"`
*/
primarySortCompression?: Compression;
/**
* (Enterprise Edition only.) If set to `true`, then primary sort columns
* will always be cached in memory.
*
* Default: `false`
*/
primarySortCache?: boolean;
/**
* (Enterprise Edition only.) If set to `true`, then primary key columns
* will always be cached in memory.
*
* Default: `false`
*/
primaryKeyCache?: boolean;
/**
* Attribute paths for which values should be stored in the view index
* in addition to those used for sorting via `primarySort`.
*/
storedValues?:
| CreateArangoSearchViewStoredValueOptions[]
| string[]
| string[][];
/**
* An array of strings defining sort expressions to optimize.
*/
optimizeTopK?: string[];
}
>;
/**
* Options for creating a primary sort in an ArangoSearch View.
*/
export type CreateArangoSearchViewPrimarySortOptions =
| {
/**
* Attribute path for the value of each document to use for
* sorting.
*/
field: string;
/**
* If set to `"asc"`, the primary sorting order will be ascending.
* If set to `"desc"`, the primary sorting order will be descending.
*/
direction: Direction;
}
| {
/**
* Attribute path for the value of each document to use for
* sorting.
*/
field: string;
/**
* If set to `true`, the primary sorting order will be ascending.
* If set to `false`, the primary sorting order will be descending.
*/
asc: boolean;
};
/**
* Options for creating a stored value in an ArangoSearch View.
*/
export interface CreateArangoSearchViewStoredValueOptions {
/**
* Attribute paths for which values should be stored in the view index
* in addition to those used for sorting via `primarySort`.
*/
fields: string[];
/**
* How the attribute values should be compressed.
*
* Default: `"lz4"`
*/
compression?: Compression;
/**
* (Enterprise Edition only.) If set to `true`, then stored values will
* always be cached in memory.
*
* Default: `false`
*/
cache?: boolean;
}
/**
* Options for creating a SearchAlias View.
*/
export type CreateSearchAliasViewOptions = CreateViewOptionsType<
"search-alias",
SearchAliasViewPropertiesOptions
>;
//#endregion
//#region UpdateViewPropertiesOptions
/**
* Options for partially modifying a View's properties.
*/
export type UpdateViewPropertiesOptions =
| UpdateArangoSearchViewPropertiesOptions
| UpdateSearchAliasViewPropertiesOptions;
/**
* Options for partially modifying the properties of an ArangoSearch View.
*/
export type UpdateArangoSearchViewPropertiesOptions =
ArangoSearchViewPropertiesOptions;
/**
* Options for partially modifying the properties of a SearchAlias View.
*/
export type UpdateSearchAliasViewPropertiesOptions = {
/**
* An array of inverted indexes to add to the View.
*/
indexes: UpdateSearchAliasViewIndexOptions[];
};
/**
* Options defining an index to be modified in a SearchAlias View.
*/
export type UpdateSearchAliasViewIndexOptions = SearchAliasViewIndexOptions & {
/**
* Whether to add or remove the index.
*
* Default: `"add"`
*/
operation?: "add" | "del";
};
//#endregion
//#region ViewPropertiesOptions
/**
* Options for replacing a View's properties.
*/
export type ViewPropertiesOptions =
| ArangoSearchViewPropertiesOptions
| SearchAliasViewPropertiesOptions;
/**
* Options for modifying the properties of an ArangoSearch View.
*/
export type ArangoSearchViewPropertiesOptions = {
/**
* How many commits to wait between removing unused files.
*
* Default: `2`
*/
cleanupIntervalStep?: number;
/**
* How long to wait between applying the `consolidationPolicy`.
*
* Default: `10000`
*/
consolidationIntervalMsec?: number;
/**
* How long to wait between commiting View data store changes and making
* documents visible to queries.
*
* Default: `1000`
*/
commitIntervalMsec?: number;
/**
* Consolidation policy to apply for selecting which segments should be
* merged.
*
* Default: `{ type: "tier" }`
*/
consolidationPolicy?: TierConsolidationPolicy;
/**
* An object mapping names of linked collections to
* {@link ArangoSearchViewLinkOptions} definitions.
*/
links?: Record<string, Omit<ArangoSearchViewLinkOptions, "nested">>;
};
/**
* A link definition for an ArangoSearch View.
*/
export type ArangoSearchViewLinkOptions = {
/**
* A list of names of Analyzers to apply to values of processed document
* attributes.
*
* Default: `["identity"]`
*/
analyzers?: string[];
/**
* An object mapping names of attributes to process for each document to
* {@link ArangoSearchViewLinkOptions} definitions.
*/
fields?: Record<string, ArangoSearchViewLinkOptions>;
/**
* If set to `true`, all document attributes will be processed, otherwise
* only the attributes in `fields` will be processed.
*
* Default: `false`
*/
includeAllFields?: boolean;
/**
* (Enterprise Edition only.) An object mapping attribute names to
* {@link ArangoSearchViewLinkOptions} definitions to index sub-objects
* stored in an array.
*/
nested?: Record<string, ArangoSearchViewLinkOptions>;
/**
* If set to `true`, the position of values in array values will be tracked,
* otherwise all values in an array will be treated as equal alternatives.
*/
trackListPositions?: boolean;
/**
* Controls how the view should keep track of the attribute values.
*
* Default: `"none"`
*/
storeValues?: "none" | "id";
/**
* If set to `true`, then no exclusive lock is used on the source collection
* during View index creation, so that it remains basically available.
*
* Default: `false`
*/
inBackground?: boolean;
/**
* (Enterprise Edition only.) If set to `true`, then field normalization
* values will always be cached in memory.
*
* Default: `false`
*/
cache?: boolean;
};
/**
* Options for modifying the properties of a SearchAlias View.
*/
export type SearchAliasViewPropertiesOptions = {
/**
* An array of inverted indexes to add to the View.
*/
indexes: SearchAliasViewIndexOptions[];
};
/**
* Options defining an index used in a SearchAlias View.
*/
export type SearchAliasViewIndexOptions = {
/**
* Name of a collection.
*/
collection: string;
/**
* Name of an inverted index in the collection.
*/
index: string;
};
//#endregion
//#region ViewDescription
export type ViewDescription =
| ArangoSearchViewDescription
| SearchAliasViewDescription;
/**
* Generic description of a View.
*/
export type ViewDescriptionType<Type extends string> = {
/**
* Type of the View.
*/
type: Type;
/**
* A globally unique identifier for this View.
*/
globallyUniqueId: string;
/**
* An identifier for this View.
*/
id: string;
/**
* Name of the View.
*/
name: string;
};
export type ArangoSearchViewDescription = ViewDescriptionType<"arangosearch">;
export type SearchAliasViewDescription = ViewDescriptionType<"search-alias">;
//#endregion
//#region ViewProperties
export type ViewProperties =
| ArangoSearchViewProperties
| SearchAliasViewProperties;
/**
* Properties of an ArangoSearch View.
*/
export type ArangoSearchViewProperties = ArangoSearchViewDescription & {
cleanupIntervalStep: number;
consolidationIntervalMsec: number;
commitIntervalMsec: number;
writebufferIdle: number;
writebufferActive: number;
writebufferSizeMax: number;
consolidationPolicy: TierConsolidationPolicy | BytesAccumConsolidationPolicy;
primarySort: {
field: string;
direction: Direction;
}[];
primarySortCompression: Compression;
primarySortCache: boolean;
primaryKeyCache: boolean;
storedValues: {
fields: string[];
compression: Compression;
cache: boolean;
}[];
links: Record<string, Omit<ArangoSearchViewLink, "nested">>;
optimizeTopK: string[];
};
/**
* A link definition for an ArangoSearch View.
*/
export type ArangoSearchViewLink = {
analyzers: string[];
fields: Record<string, ArangoSearchViewLink>;
includeAllFields: boolean;
nested?: Record<string, ArangoSearchViewLink>;
trackListPositions: boolean;
storeValues: "none" | "id";
cache: boolean;
};
/**
* Properties of a SearchAlias View.
*/
export type SearchAliasViewProperties = SearchAliasViewDescription & {
indexes: { collection: string; index: string }[];
};
//#endregion
//#region View class
/**
* Indicates whether the given value represents a {@link View}.
*
* @param view - A value that might be a View.
*/
export function isArangoView(view: any): view is View {
return Boolean(view && view.isArangoView);
}
// Note: Resist the urge to attempt to create separate ArangoSearchView
// and SearchAliasView classes or interfaces. The requirements for producing
// a meaningful typedoc documentation, providing a nice API in the `Database`
// class and having these as separate interfaces seem to be mutually
// incompatible.
/**
* Represents a View in a {@link databases.Database}.
*/
export class View {
protected _name: string;
protected _db: databases.Database;
/**
* @internal
*/
constructor(db: databases.Database, name: string) {
this._db = db;
this._name = name;
}
/**
* @internal
*
* Indicates that this object represents an ArangoDB View.
*/
get isArangoView(): true {
return true;
}
/**
* Database this view belongs to.
*/
get database() {
return this._db;
}
/**
* Name of the View.
*/
get name() {
return this._name;
}
/**
* Retrieves general information about the View.
*
* @example
* ```js
* const db = new Database();
* const view = db.view("some-view");
* const data = await view.get();
* // data contains general information about the View
* ```
*/
get(): Promise<connections.ArangoApiResponse<ViewDescription>> {
return this._db.request({
pathname: `/_api/view/${encodeURIComponent(this._name)}`,
});
}
/**
* Checks whether the View exists.
*
* @example
* ```js
* const db = new Database();
* const view = db.view("some-view");
* const exists = await view.exists();
* console.log(exists); // indicates whether the View exists
* ```
*/
async exists(): Promise<boolean> {
try {
await this.get();
return true;
} catch (err: any) {
if (errors.isArangoError(err) && err.errorNum === VIEW_NOT_FOUND) {
return false;
}
throw err;
}
}
/**
* Creates a View with the given `options` and the instance's name.
*
* See also {@link databases.Database#createView}.
*
* @example
* ```js
* const db = new Database();
* const view = db.view("potatoes");
* await view.create();
* // the ArangoSearch View "potatoes" now exists
* ```
*/
create<Options extends CreateViewOptions>(
options: CreateViewOptions
): Promise<
typeof options extends CreateArangoSearchViewOptions
? ArangoSearchViewDescription
: Options extends CreateSearchAliasViewOptions
? SearchAliasViewDescription
: ViewDescription
> {
return this._db.request({
method: "POST",
pathname: "/_api/view",
body: {
...options,
name: this._name,
},
});
}
/**
* Renames the View and updates the instance's `name` to `newName`.
*
* Additionally removes the instance from the {@link databases.Database}'s
* internal cache.
*
* **Note**: Renaming Views may not be supported when ArangoDB is
* running in a cluster configuration.
*
* @param newName - The new name of the View.
*
* @example
* ```js
* const db = new Database();
* const view1 = db.view("some-view");
* await view1.rename("other-view");
* const view2 = db.view("some-view");
* const view3 = db.view("other-view");
* // Note all three View instances are different objects but
* // view1 and view3 represent the same ArangoDB view!
* ```
*/
async rename(
newName: string
): Promise<connections.ArangoApiResponse<ViewDescription>> {
const result = this._db.renameView(this._name, newName);
this._name = newName;
return result;
}
/**
* Retrieves the View's properties.
*
* @example
* ```js
* const db = new Database();
* const view = db.view("some-view");
* const data = await view.properties();
* // data contains the View's properties
* ```
*/
properties(): Promise<connections.ArangoApiResponse<ViewProperties>> {
return this._db.request({
pathname: `/_api/view/${encodeURIComponent(this._name)}/properties`,
});
}
/**
* Updates the properties of the View.
*
* @param properties - Properties of the View to update.
*
* @example
* ```js
* const db = new Database();
* const view = db.view("some-view");
* const result = await view.updateProperties({
* consolidationIntervalMsec: 234
* });
* console.log(result.consolidationIntervalMsec); // 234
* ```
*/
updateProperties<Properties extends UpdateViewPropertiesOptions | undefined>(
properties?: Properties
): Promise<
Properties extends UpdateArangoSearchViewPropertiesOptions
? ArangoSearchViewProperties
: Properties extends UpdateSearchAliasViewPropertiesOptions
? SearchAliasViewProperties
: ViewProperties
> {
return this._db.request({
method: "PATCH",
pathname: `/_api/view/${encodeURIComponent(this._name)}/properties`,
body: properties ?? {},
});
}
/**
* Replaces the properties of the View.
*
* @param properties - New properties of the View.
*
* @example
* ```js
* const db = new Database();
* const view = db.view("some-view");
* const result = await view.replaceProperties({
* consolidationIntervalMsec: 234
* });
* console.log(result.consolidationIntervalMsec); // 234
* ```
*/
replaceProperties<Properties extends ViewPropertiesOptions | undefined>(
properties?: Properties
): Promise<
Properties extends ArangoSearchViewPropertiesOptions
? ArangoSearchViewProperties
: Properties extends SearchAliasViewPropertiesOptions
? SearchAliasViewProperties
: ViewProperties
> {
return this._db.request({
method: "PUT",
pathname: `/_api/view/${encodeURIComponent(this._name)}/properties`,
body: properties ?? {},
});
}
/**
* Deletes the View from the database.
*
* @example
*
* ```js
* const db = new Database();
* const view = db.view("some-view");
* await view.drop();
* // the View "some-view" no longer exists
* ```
*/
drop(): Promise<boolean> {
return this._db.request(
{
method: "DELETE",
pathname: `/_api/view/${encodeURIComponent(this._name)}`,
},
(res) => res.parsedBody.result
);
}
}
//#endregion