Simon Willnauer
1e15ae6228
Merge pull request #16733 from s1monw/enforce_limits
...
Enforce node level limits if node is started in production env
2016-02-22 10:30:36 -08:00
Boaz Leskes
4a7980f96c
Merge pull request #16766 from rstruber/patch-1
...
fix grammar in Total Shards Per Node docs
2016-02-22 08:42:42 -08:00
Lee Hinman
932808faca
[TEST] enable TRACE logging for gateway on testIndexWithFewDocuments
2016-02-22 00:28:34 -07:00
Jason Tedor
fa885f2e96
Remove es.max-open-files flag
...
This commit removes the es.max-open-files flag as the same information
can be obtained from the cluster nodes info API, and is warn logged on
startup if it's set too low anyway.
Closes #16757
2016-02-21 21:01:08 -08:00
Simon Willnauer
55a8b1786e
Enforce node level limits if node is started in production env
...
This commit tries to 'guess' if a user starts a node in production by
checking if any network host is configured. If that is the case soft-limits
that are only logged otherwise are enforced like number of open file descriptors.
Closes #16727
2016-02-21 17:15:50 -08:00
Jack Conradson
7986770e5f
Moved Painless from a plugin to a module.
...
Closes #16755
2016-02-21 16:50:54 -08:00
Lee Hinman
5451763935
[DOCS] Add blurb about `data_path` not needing to include index name
...
Resolves #11497
(node.enable_custom_paths is no longer used)
2016-02-21 13:11:45 -07:00
Mike McCandless
2e3160824c
Upgrade to Lucene 5.5.0 official release
...
Closes #16742
2016-02-21 05:26:22 -05:00
Simon Willnauer
38ba35431c
Merge pull request #16740 from s1monw/remove_snapshot_notion
...
Remove SNAPSHOT notion from code
Today we have the notion of a snapshot inside Version.java which makes
releasing complicated since to do a release Version.java must be changed.
This commit removes all notions of snapshot from the code and allows to
switch between snapshot and release build by specifying a system property on
the build. For instance running:
```
gradle run -Dbuild.snapshot=false
```
will build and package a release build while the default always
builds snapshots. Calls to the main rest action will still get the snapshot
information rendered out with the response.
2016-02-20 17:21:01 -08:00
Simon Willnauer
c8e462e5dc
Apply feedback from @rjernst
2016-02-20 17:12:48 -08:00
Simon Willnauer
4f7dd1284f
Remove SNAPSHOT notion from code
...
Today we have the notion of a snapshot inside Version.java which makes
releasing complicated since to do a release Version.java must be changed.
This commit removes all notions of snapshot from the code and allows to
switch between snapshot and release build by specifying a system property on
the build. For instance running:
```
gradle run -Dbuild.snapshot=false
```
will build and package a release build while the default always
builds snapshots. Calls to the main rest action will still get the snapshot
information rendered out with the response.
2016-02-20 16:06:26 -08:00
Mike McCandless
5fffede2b0
Upgrade to Lucene 5.5.0 official release
2016-02-20 17:34:16 -05:00
Spencer
31847c1e9d
[REST API] use a block literal for request bodies
2016-02-20 12:55:23 -08:00
Spencer
a859595dcd
[REST API] use a block literal for request bodies
2016-02-20 12:53:39 -08:00
David Pilato
6c3f6778df
Merge branch 'fix/16720-move-gce-settings'
2016-02-19 17:02:15 -08:00
David Pilato
90fba97a30
Moves GCE settings to the new infra
...
Closes #16720 .
2016-02-19 17:00:39 -08:00
Clinton Gormley
b59d3613df
Merge pull request #16691 from gaelL/doc
...
snapshots doc: Repository Verification `verify` example
2016-02-19 11:12:27 -08:00
Yannick Welsch
995753b036
Merge pull request #16658 from ywelsch/fix/resiliency-doc-updates
...
Updates to resiliency documentation
2016-02-19 09:50:39 -08:00
Yannick Welsch
4ea83740a2
Updates to resiliency documentation
...
Closes #16658
2016-02-19 09:48:33 -08:00
gaelL
58355430f6
snapshots doc: Repository Verification `verify` example fix
...
Replace `my_backup` in the example line by `s3_repository` to match
the example above.
2016-02-16 14:15:21 +01:00
Martijn van Groningen
3290cfbd31
test: replaced integration tests with unit test
2016-02-15 22:03:55 +01:00
George P. Stathis
b17a92c911
Fixes #16550 (thanks for the pointers @martijnvg!)
2016-02-15 19:58:24 +01:00
Adrien Grand
69e21d4cc3
Fix how analyzers are set in StringFieldMapper.
...
This was changed when adding the text field in an attempt to clean up
how analyzers are set. Unfortunately this change was not safe for the
string field given that it can also represent keywords.
2016-02-15 19:21:54 +01:00
Clinton Gormley
aedfa10b43
Change docs example with script on/off to true/false
...
Closes #15469
2016-02-15 17:53:59 +01:00
David Pilato
89a2505d01
Merge branch 'doc/16650-deprecate-attachments'
2016-02-15 16:40:47 +01:00
David Pilato
55d9b6878b
Deprecate Mapper Attachment Plugin
...
Now that we have the ingest-attachment plugin (https://github.com/elastic/elasticsearch/pull/16490 ) we should deprecate the mapper-attachment plugin.
Closes #16650 .
2016-02-15 16:40:12 +01:00
Clinton Gormley
00b9640208
Merge pull request #16672 from teuneboon/patch-1
...
Clarify text about date format range
2016-02-15 16:16:19 +01:00
Colin Goodheart-Smithe
8f68c64f68
Fixes serialisation of Ranges
...
Range aggregation tests were failing (e.g. http://build-us-00.elastic.co/job/es_core_master_metal/12385/testReport/junit/org.elasticsearch.messy.tests/IPv4RangeTests/testPartiallyUnmapped/ ) sometimes because both the string and number versions of form and to were being serialised. This meant that the range aggregator builder objects would not serialise and deserialise to the same bytes before and after the builder had been used. This change makes Range object immutable so the builder doesn't need to worry about the range changing under its feet.
2016-02-15 15:14:09 +00:00
Colin Goodheart-Smithe
ebc745211d
Moved AggregatorBuilder implementations into their own class files
...
Also renamed histogram.AbstractBuilcer to AbstractHistogramBuilder, range.AbstractBuilder to AbstractRangeBuilder and org.elasticsearch.search.aggregations.pipeline.having to org.elasticsearch.search.aggregations.pipeline.bucketselector
2016-02-15 14:09:36 +00:00
Colin Goodheart-Smithe
e546db0753
[DOCS] fix to sampler agg documentation
2016-02-15 13:17:19 +00:00
Clinton Gormley
0a03af263d
Merge pull request #16665 from joynes/patch-1
...
Typo
2016-02-15 13:40:57 +01:00
Clinton Gormley
96dba26d9d
Update index-modules.asciidoc
...
Removed the experimental label from `index.code`
Closes #16644
2016-02-15 13:33:48 +01:00
Colin Goodheart-Smithe
5f489b99bf
fixed docs link error
2016-02-15 12:12:16 +00:00
Colin Goodheart-Smithe
bd2e00d396
review comments
2016-02-15 10:46:24 +00:00
Colin Goodheart-Smithe
1a46628daa
Merge branch 'master' into feature/aggs-refactoring
...
# Conflicts:
# core/src/test/java/org/elasticsearch/search/builder/SearchSourceBuilderTests.java
2016-02-15 10:37:16 +00:00
Colin Goodheart-Smithe
c3d652030c
updated Java API docs with the changes due to aggregator refactoring
2016-02-15 10:34:29 +00:00
Adrien Grand
11ce624343
Merge pull request #16637 from jpountz/feature/text
...
Add a text field.
2016-02-15 10:45:53 +01:00
Adrien Grand
4f8895eae3
Add a text field.
...
This new field is intended to replace analyzed string fields.
2016-02-15 10:43:44 +01:00
Boaz Leskes
0305628c6b
Add some debug logs to testPendingUpdateTask
...
It times out rarely. Hopefully these will help.
2016-02-15 10:15:00 +01:00
Jason Tedor
d313cdd7d0
Assertion handling timestamp in index request
...
This commit adds an assertion that the mapping metadata is not null when
handling a non-default timestamp when no timestamp is provided.
Closes #16596
2016-02-14 14:41:30 -05:00
Clinton Gormley
cca611171c
Document breaking change in terms query/filter in 2.0
...
Closes #14830
2016-02-14 18:13:03 +01:00
Jason Tedor
1fb1ffbac6
Class permission for Groovy references
...
This commit adds a class permission for groovy.lang.Reference so they
can be used in scripts.
Closes #16660
2016-02-14 09:45:40 -05:00
Jason Tedor
3bbd1c129e
Remove host from cat nodes API
...
As the host and ip fields are always equal by design, the host field in
the cat nodes API is redundant and should be removed.
Closes #16656
2016-02-14 09:21:32 -05:00
Clinton Gormley
3f7693fdc2
Merge pull request #16431 from rcoh/patch-1
...
Add Scala based elasticsearch-client
2016-02-14 01:05:51 +01:00
Clinton Gormley
4746ff8c03
Merge pull request #16426 from tuespetre/patch-1
...
Update network.asciidoc
2016-02-14 00:04:51 +01:00
Clinton Gormley
40db0f9619
Merge pull request #16499 from elastic/pmusa-patch-rm-source-disable
...
Remove _source 'disable' from the create-index documentation
2016-02-13 20:55:32 +01:00
Clinton Gormley
a7aae4a78a
Update cluster_restart.asciidoc
...
Closes #16568
2016-02-13 19:03:20 +01:00
Clinton Gormley
d5f8f92559
Update shards_allocation.asciidoc
...
Closes https://github.com/elastic/elasticsearch/issues/16554
2016-02-13 15:16:42 +01:00
Simon Willnauer
8c1fe37e92
Remove in-place rewriting of SearchSourceBuilder
...
SearchSourceBuilder should be cloned when rewriting, the in-place rewrite
is failing with local transport assertions.
2016-02-13 08:57:32 +01:00
DeDe Morton
25943eb00b
Merge pull request #16647 from dedemorton/reorder_reference_info
...
Change topic order in ingest doc
2016-02-12 17:11:28 -08:00