You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Elastic.Clients.Elasticsearch/_Generated/Types/Enums/Enums.Aggregations.g.cs
+9
Original file line number
Diff line number
Diff line change
@@ -182,10 +182,19 @@ public override void Write(Utf8JsonWriter writer, CardinalityExecutionMode value
182
182
[JsonConverter(typeof(GapPolicyConverter))]
183
183
publicenumGapPolicy
184
184
{
185
+
/// <summary>
186
+
/// <para>Treats missing data as if the bucket does not exist. It will skip the bucket and<br/>continue calculating using the next available value.</para>
187
+
/// </summary>
185
188
[EnumMember(Value="skip")]
186
189
Skip,
190
+
/// <summary>
191
+
/// <para>Similar to skip, except if the metric provides a non-null, non-NaN value this value is used,<br/>otherwise the empty bucket is skipped.</para>
192
+
/// </summary>
187
193
[EnumMember(Value="keep_values")]
188
194
KeepValues,
195
+
/// <summary>
196
+
/// <para>Replace missing values with a zero (0) and pipeline aggregation computation will proceed as normal.</para>
Copy file name to clipboardExpand all lines: src/Elastic.Clients.Elasticsearch/_Generated/Types/Enums/Enums.IndexManagement.g.cs
+22
Original file line number
Diff line number
Diff line change
@@ -502,9 +502,25 @@ public readonly partial struct StorageType
502
502
publicStorageType(stringvalue)=>Value=value;
503
503
504
504
publicreadonlystringValue{get;}
505
+
506
+
/// <summary>
507
+
/// <para>The NIO FS type stores the shard index on the file system (maps to Lucene NIOFSDirectory) using NIO. It allows multiple<br/>threads to read from the same file concurrently. It is not recommended on Windows because of a bug in the SUN Java<br/>implementation and disables some optimizations for heap memory usage.</para>
/// <para>The MMap FS type stores the shard index on the file system (maps to Lucene MMapDirectory) by mapping a file into<br/>memory (mmap). Memory mapping uses up a portion of the virtual memory address space in your process equal to the size<br/>of the file being mapped. Before using this class, be sure you have allowed plenty of virtual address space.</para>
/// <para>The hybridfs type is a hybrid of niofs and mmapfs, which chooses the best file system type for each type of file<br/>based on the read access pattern. Currently only the Lucene term dictionary, norms and doc values files are memory<br/>mapped. All other files are opened using Lucene NIOFSDirectory. Similarly to mmapfs be sure you have allowed<br/>plenty of virtual address space.</para>
/// <para>Default file system implementation. This will pick the best implementation depending on the operating environment, which<br/>is currently hybridfs on all supported systems but is subject to change.</para>
/// <para>(default) fsync and commit after every request. In the event of hardware failure, all acknowledged writes<br/>will already have been committed to disk.</para>
544
+
/// </summary>
526
545
[EnumMember(Value="request")]
527
546
Request,
547
+
/// <summary>
548
+
/// <para>fsync and commit in the background every sync_interval. In the event of a failure, all acknowledged writes<br/>since the last automatic commit will be discarded.</para>
/// <para>Instead of storing source documents on disk exactly as you send them,<br/> Elasticsearch can reconstruct source content on the fly upon retrieval.</para>
/// <para>All primary shards are assigned, but one or more replica shards are unassigned. If a node in the cluster fails, some data could be unavailable until that node is repaired.</para>
565
+
/// </summary>
548
566
[EnumMember(Value="yellow")]
549
567
Yellow,
568
+
/// <summary>
569
+
/// <para>One or more primary shards are unassigned, so some data is unavailable. This can occur briefly during cluster startup as primary shards are assigned.</para>
0 commit comments