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
To install Elasticsearch, download and extract the archive file for your platform. For
14
+
more information, see the {ref}/_installation.html[Installation] topic in the Elasticsearch
15
+
Reference.
21
16
22
17
[TIP]
23
18
====
24
-
When installing Elasticsearch in production, you can use the method
25
-
described previously, or the Debian or RPM packages provided on the
19
+
When installing Elasticsearch in production, you can choose to use
20
+
the Debian or RPM packages provided on the
26
21
http://www.elastic.co/downloads/elasticsearch[downloads page]. You can also use
27
22
the officially supported
28
23
https://github.com/elasticsearch/puppet-elasticsearch[Puppet module] or
@@ -43,8 +38,7 @@ You do not have to install Marvel, but it will make this book much more
43
38
interactive by allowing you to experiment with the code samples on your local
44
39
Elasticsearch cluster.
45
40
46
-
Marvel is available as a plug-in.((("Marvel", "downloading and installing"))) To download and install it, run this command
47
-
in the Elasticsearch directory:
41
+
Marvel is available as a plug-in.((("Marvel", "downloading and installing"))) To download and install it, run this command in the Elasticsearch directory:
Copy file name to clipboardexpand all lines: 040_Distributed_CRUD/30_Bulk_requests.asciidoc
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
=== Multidocument Patterns
3
3
4
4
The patterns for the `mget` and `bulk` APIs((("mget (multi-get) API", "retrieving multiple documents, process of")))((("documents", "retrieving multiple with mget"))) are similar to those for
5
-
individual documents. The difference is that the requesting node knows in
5
+
individual documents. The difference is that the coordinating node knows in
6
6
which shard each document lives. It breaks up the multidocument request into
7
7
a multidocument request _per shard_, and forwards these in parallel to each
8
8
participating node.
@@ -44,7 +44,7 @@ The sequence of steps((("bulk API", "multiple document changes with")))((("docum
44
44
action succeeds, the primary forwards the new document (or deletion) to its
45
45
replica shards in parallel, and then moves on to the next action. Once all
46
46
replica shards report success for all actions, the node reports success to
47
-
the requesting node, which collates the responses and returns them to the
47
+
the coordinating node, which collates the responses and returns them to the
48
48
client.
49
49
50
50
The `bulk` API also accepts((("replication request parameter", "in bulk requests")))((("consistency request parameter", "in bulk requests"))) the `replication` and `consistency` parameters
Copy file name to clipboardexpand all lines: 052_Mapping_Analysis/45_Mapping.asciidoc
+4-3
Original file line number
Diff line number
Diff line change
@@ -202,9 +202,10 @@ for an existing type) later, using the `/_mapping` endpoint.
202
202
203
203
[NOTE]
204
204
================================================
205
-
Although you can _add_ to an existing mapping, you can't _change_ it. If a field
206
-
already exists in the mapping, the data from that
207
-
field probably has already been indexed. If you were to change the field mapping, the already indexed data would be wrong and would not be properly searchable.
205
+
Although you can _add_ to an existing mapping, you can't _change_ existing
206
+
field mappings. If a mapping already exists for a field, data from that
207
+
field has probably been indexed. If you were to change the field mapping,
208
+
the indexed data would be wrong and would not be properly searchable.
208
209
================================================
209
210
210
211
We can update a mapping to add a new field, but we can't change an existing
Copy file name to clipboardexpand all lines: 310_Geopoints/32_Bounding_box.asciidoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
[[geo-bounding-box]]
2
-
=== geo_bounding_box Filter
2
+
=== Geo Bounding Box Filter
3
3
4
4
This is by far the most efficient geo-filter because its calculation is very
5
5
simple. ((("geo_bounding_box filter")))((("filtering", "by geo-points", "geo_bounding_box filter"))) You provide it with the `top`, `bottom`, `left`, and `right`
Copy file name to clipboardexpand all lines: 310_Geopoints/36_Caching_geofilters.asciidoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
[[geo-caching]]
2
-
=== Caching geo-filters
2
+
=== Caching Geo Filters
3
3
4
4
The results of geo-filters are not cached by default,((("caching", "of geo-filters")))((("filters", "caching geo-filters")))((("geo-filters, caching"))) for two reasons:
Copy file name to clipboardexpand all lines: 340_Geoshapes/74_Indexing_geo_shapes.asciidoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
[[indexing-geo-shapes]]
2
-
=== Indexing geo-shapes
2
+
=== Indexing Geo Shapes
3
3
4
4
Shapes are represented using http://geojson.org/[GeoJSON], a simple open
5
5
standard for encoding two-dimensional shapes in JSON.((("JSON", "shapes in (GeoJSON)")))((("shapes", see="geo-shapes")))((("GeoJSON")))((("geo-shapes", "indexing"))) Each shape definition
Copy file name to clipboardexpand all lines: 340_Geoshapes/76_Querying_geo_shapes.asciidoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
[[querying-geo-shapes]]
2
-
=== Querying geo-shapes
2
+
=== Querying Geo Shapes
3
3
4
4
The unusual thing ((("geo-shapes", "querying")))about the {ref}/query-dsl-geo-shape-query.html[`geo_shape` query] is that it allows us to query and filter using shapes, rather than just points.
Copy file name to clipboardexpand all lines: 340_Geoshapes/80_Caching_geo_shapes.asciidoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
[[geo-shape-caching]]
2
-
=== Geo-shape Filters and Caching
2
+
=== Geo Shape Filters and Caching
3
3
4
4
The `geo_shape` query and filter perform the same function.((("caching", "geo-shape filters and")))((("filters", "geo_shape")))((("geo-shapes", "geo_shape filters, caching and"))) The query simply
5
5
acts as a filter: any matching documents receive a relevance `_score` of
0 commit comments