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
// SystemPackagingTask overrides default archive task convention mappings, but doesn't provide a setter so we have to override the convention mapping itself
Copy file name to clipboardExpand all lines: docs/reference/getting-started.asciidoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -283,7 +283,7 @@ If you have a lot of documents to index, you can submit them in batches with
283
283
the {ref}/docs-bulk.html[bulk API]. Using bulk to batch document
284
284
operations is significantly faster than submitting requests individually as it minimizes network roundtrips.
285
285
286
-
The optimal batch size depends a number of factors: the document size and complexity, the indexing and search load, and the resources available to your cluster. A good place to start is with batches of 1,000 to 5,000 documents
286
+
The optimal batch size depends on a number of factors: the document size and complexity, the indexing and search load, and the resources available to your cluster. A good place to start is with batches of 1,000 to 5,000 documents
287
287
and a total payload between 5MB and 15MB. From there, you can experiment
Copy file name to clipboardExpand all lines: docs/reference/ingest/processors/geoip.asciidoc
+1
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ uncompressed. The `ingest-geoip` config directory is located at `$ES_CONFIG/inge
25
25
| `database_file` | no | GeoLite2-City.mmdb | The database filename in the geoip config directory. The ingest-geoip module ships with the GeoLite2-City.mmdb, GeoLite2-Country.mmdb and GeoLite2-ASN.mmdb files.
26
26
| `properties` | no | [`continent_name`, `country_iso_code`, `region_iso_code`, `region_name`, `city_name`, `location`] * | Controls what properties are added to the `target_field` based on the geoip lookup.
27
27
| `ignore_missing` | no | `false` | If `true` and `field` does not exist, the processor quietly exits without modifying the document
28
+
| `first_only` | no | `true` | If `true` only first found geoip data will be returned, even if `field` contains array
0 commit comments