Skip to content

Commit aa4eaab

Browse files
committed
Merge branch 'master' of github.com:elastic/elasticsearch-net
2 parents 068ebde + 3940fe1 commit aa4eaab

File tree

716 files changed

+322
-25822
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

716 files changed

+322
-25822
lines changed

docs/asciidoc/aggregations/bucket/filter/filter-aggregation-usage.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[[filter-aggregation-usage]]
88
== Filter Aggregation Usage
99

10-
Defines a single bucket of all the documents in the current document set context that match a specified filter.
10+
Defines a single bucket of all the documents in the current document set context that match a specified filter.
1111
Often this will be used to narrow down the current aggregation context to a specific set of documents.
1212

1313
Be sure to read the Elasticsearch documentation on {ref_current}/search-aggregations-bucket-filter-aggregation.html[Filter Aggregation]

docs/asciidoc/aggregations/pipeline/moving-average/moving-average-ewma-aggregation-usage.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ new SearchRequest<Project>()
4545
{
4646
Field = "startedOn",
4747
Interval = DateInterval.Month,
48-
Aggregations =
48+
Aggregations =
4949
new SumAggregation("commits", "numberOfCommits") &&
5050
new MovingAverageAggregation("commits_moving_avg", "commits")
5151
{

docs/asciidoc/aggregations/pipeline/moving-average/moving-average-holt-linear-aggregation-usage.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ new SearchRequest<Project>()
4646
{
4747
Field = "startedOn",
4848
Interval = DateInterval.Month,
49-
Aggregations =
49+
Aggregations =
5050
new SumAggregation("commits", "numberOfCommits") &&
5151
new MovingAverageAggregation("commits_moving_avg", "commits")
5252
{

docs/asciidoc/aggregations/pipeline/moving-average/moving-average-holt-winters-aggregation-usage.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ new SearchRequest<Project>()
5151
{
5252
Field = "startedOn",
5353
Interval = DateInterval.Month,
54-
Aggregations =
54+
Aggregations =
5555
new SumAggregation("commits", "numberOfCommits") &&
5656
new MovingAverageAggregation("commits_moving_avg", "commits")
5757
{

docs/asciidoc/aggregations/pipeline/moving-average/moving-average-linear-aggregation-usage.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ new SearchRequest<Project>()
4444
{
4545
Field = "startedOn",
4646
Interval = DateInterval.Month,
47-
Aggregations =
47+
Aggregations =
4848
new SumAggregation("commits", "numberOfCommits") &&
4949
new MovingAverageAggregation("commits_moving_avg", "commits")
5050
{

docs/asciidoc/aggregations/pipeline/moving-average/moving-average-simple-aggregation-usage.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ new SearchRequest<Project>()
4545
{
4646
Field = "startedOn",
4747
Interval = DateInterval.Month,
48-
Aggregations =
48+
Aggregations =
4949
new SumAggregation("commits", "numberOfCommits") &&
5050
new MovingAverageAggregation("commits_moving_avg", "commits")
5151
{

docs/asciidoc/client-concepts/connection-pooling/building-blocks/date-time-providers.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[[date-time-providers]]
88
== Date time providers
99

10-
Not typically something you'll have to pass to the client but all calls to `System.DateTime.UtcNow`
10+
Not typically something you'll have to pass to the client but all calls to `System.DateTime.UtcNow`
1111
in the client have been abstracted by `IDateTimeProvider`. This allows us to unit test timeouts and cluster failover
1212
without being bound to wall clock time as calculated by using `System.DateTime.UtcNow` directly.
1313

@@ -45,7 +45,7 @@ var maxTimeout = TimeSpan.FromMinutes(30);
4545
Plotting these defaults looks as followed:
4646

4747
[[timeout]]
48-
.Default formula, x-axis time in minutes, y-axis number of attempts to revive
48+
.Default formula, x-axis number of attempts to revive, y-axis time in minutes
4949
image::timeoutplot.png[dead timeout]
5050

5151
The goal here is that whenever a node is resurrected and is found to still be offline, we send it_back to the doghouse_ for an ever increasingly long period, until we hit a bounded maximum.

docs/asciidoc/client-concepts/connection-pooling/pinging/first-usage.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var audit = new Auditor(() => Framework.Cluster
6767
The first call goes to 9200 which succeeds
6868

6969
The 2nd call does a ping on 9201 because its used for the first time.
70-
It fails and so we ping 9202 which also fails. We then ping 9203 becuase
70+
It fails and so we ping 9202 which also fails. We then ping 9203 because
7171
we haven't used it before and it succeeds
7272

7373
Finally we assert that the connectionpool has two nodes that are marked as dead

docs/asciidoc/client-concepts/connection-pooling/round-robin/round-robin.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ round robin over the `live` nodes to evenly distribute request load over all kno
1414

1515
`GetNext` is implemented in a lock free thread safe fashion, meaning each callee gets returned its own cursor to advance
1616
over the internal list of nodes. This to guarantee each request that needs to fall over tries all the nodes without
17-
suffering from noisy neighboors advancing a global cursor.
17+
suffering from noisy neighbours advancing a global cursor.
1818

1919
[source,csharp]
2020
----

docs/asciidoc/client-concepts/connection-pooling/round-robin/skip-dead-nodes.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ When selecting nodes the connection pool will try and skip all the nodes that ar
1313

1414
GetNext is implemented in a lock free thread safe fashion, meaning each callee gets returned its own cursor to advance
1515
over the internal list of nodes. This to guarantee each request that needs to fall over tries all the nodes without
16-
suffering from noisy neighboors advancing a global cursor.
16+
suffering from noisy neighbours advancing a global cursor.
1717

1818
[source,csharp]
1919
----

0 commit comments

Comments
 (0)