Antonio Bonuccelli
8da0f89739
Order of command line flags
...
specifying the order required for cli -Des notation arguments
2015-09-23 14:54:50 +02:00
javanna
7eedd84dc3
Query refactoring: refactor query_string query and score functions
...
Refactor the function_score query so it can be parsed on the coordinating node, split parse into fromXContent and toQuery, make FunctionScoreQueryBuilder Writeable.
Closes #13653
2015-09-23 11:32:54 +02:00
Christoph Büscher
03035a28a3
Query Refactoring: moving validation to setters and constructors
...
Moving validation from validate() to constructors and setters for the
following query builders:
* GeoDistanceQueryBuilder
* GeoDistanceRangeQueryBuilder
* GeoPolygonQueryBuilder
* GeoShapeQueryBuilder
* GeohashCellQuery
* TermsQueryBuilder
Relates to #10217
2015-09-22 11:05:56 +02:00
Christoph Büscher
cc69de5c5f
Merge branch 'master' into feature/query-refactoring
2015-09-21 15:38:43 +02:00
Thomas Cucchietti
03488e3902
Docs: Update query_dsl.asciidoc
...
Minor orthographic fix
Closes #13452
2015-09-19 16:09:53 +02:00
Christoph Büscher
37b46fb79c
Query Refactoring: moving validation to constructors and setters
...
This PR is the second batch in moving the query validation we started
to collect in the validate() method to the corresponding setters
and constructors.
2015-09-17 23:30:42 +02:00
Christoph Büscher
887399eebf
Query Refactoring: moving validation to constructors and setters
...
This PR is an initial step to move the query validation we started
to collect in the validate() method to the corresponding setters
and constructors.
2015-09-17 13:57:34 +02:00
Alex Ksikes
a3c68f690b
Refactors MultiMatchQueryBuilder and Parser
...
Relates to #10217
This PR is against the query-refactoring branch.
Closes #13405
2015-09-16 13:41:22 +02:00
Christoph Büscher
8fb1aa9781
Refactors GeoDistanceQueryBuilder/-Parser
...
Splits parsing and Lucene query generation. Switches from storing lat/lon
separately to using GeoPoint instead.
Relates to #10217
2015-09-16 11:15:32 +02:00
Alex Ksikes
a13336da54
Refactors MoreLikeThisQueryBuilder and Parser
...
Relates to #10217
This PR is against the query-refactoring branch.
Closes #13486
2015-09-16 02:09:38 +02:00
javanna
73f7df510e
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/query/HasChildQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/HasChildQueryParser.java
core/src/main/java/org/elasticsearch/index/query/HasParentQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/HasParentQueryParser.java
core/src/main/java/org/elasticsearch/index/query/functionscore/FunctionScoreQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/functionscore/FunctionScoreQueryParser.java
core/src/main/java/org/elasticsearch/index/query/functionscore/factor/FactorParser.java
core/src/test/java/org/elasticsearch/ExceptionSerializationTests.java
core/src/test/java/org/elasticsearch/benchmark/search/child/ChildSearchBenchmark.java
core/src/test/java/org/elasticsearch/benchmark/search/child/ChildSearchShortCircuitBenchmark.java
core/src/test/java/org/elasticsearch/index/query/SimpleIndexQueryParserTests.java
core/src/test/java/org/elasticsearch/percolator/PercolatorIT.java
core/src/test/java/org/elasticsearch/search/child/ChildQuerySearchIT.java
docs/reference/query-dsl/has-parent-query.asciidoc
2015-09-11 14:15:12 +02:00
Adrien Grand
86f1b07df0
Docs: Remove docs for the `filtered`, `and`, `or` and `(f)query` queries.
2015-09-11 11:00:54 +02:00
Nik Everett
e4981968ad
[search] Limit the size of the result window
...
Requesting a million hits, or page 100,000 is always a bad idea, but users
may not be aware of this. This adds a per-index limit on the maximum size +
from that can be requested which defaults to 10,000.
This should not interfere with deep-scrolling.
Closes #9311
2015-09-10 15:38:29 -04:00
Martijn van Groningen
ab0847e0df
parent/child: several cleanups
...
* Dropped ScoreType in favour of Lucene's ScoreMode
* Removed `score_type` option from `has_child` and `has_parent` queries in favour for the already existing `score_mode` option.
* Removed the score mode `sum` in favour for the already existing `total` score mode. (`sum` doesn't exist in Lucene's ScoreMode class)
* If `max_children` is set to `0` it now really means that zero children are allowed to match.
2015-09-10 17:15:41 +02:00
javanna
56b3db6ba3
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/query/AndQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/AndQueryParser.java
core/src/main/java/org/elasticsearch/index/query/FQueryFilterParser.java
core/src/main/java/org/elasticsearch/index/query/FilteredQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/FilteredQueryParser.java
core/src/main/java/org/elasticsearch/index/query/HasChildQueryParser.java
core/src/main/java/org/elasticsearch/index/query/IndicesQueryParser.java
core/src/main/java/org/elasticsearch/index/query/LimitQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/LimitQueryParser.java
core/src/main/java/org/elasticsearch/index/query/MultiMatchQueryParser.java
core/src/main/java/org/elasticsearch/index/query/OrQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/OrQueryParser.java
core/src/main/java/org/elasticsearch/index/query/QueryFilterBuilder.java
core/src/main/java/org/elasticsearch/index/query/QueryFilterParser.java
core/src/main/java/org/elasticsearch/index/query/QueryParseContext.java
core/src/main/java/org/elasticsearch/index/query/ScriptQueryParser.java
core/src/main/java/org/elasticsearch/indices/query/IndicesQueriesRegistry.java
core/src/main/java/org/elasticsearch/search/sort/GeoDistanceSortParser.java
core/src/main/java/org/elasticsearch/search/sort/SortParseElement.java
core/src/test/java/org/elasticsearch/benchmark/search/child/ChildSearchShortCircuitBenchmark.java
core/src/test/java/org/elasticsearch/index/query/SimpleIndexQueryParserTests.java
2015-09-10 15:52:28 +02:00
Martijn van Groningen
2eadc6d595
nested sorting: If sorting by nested field then the `nested_path` should always be specified.
...
Closes #13420
2015-09-10 12:21:12 +02:00
Christoph Büscher
90fac17a2d
Query refactoring: MatchQueryBuilder
...
This add equals, hashcode, read/write methods, separates toQuery and JSON parsing and adds tests.
Also moving MatchQueryBuilder.Type to MatchQuery to MatchQuery, adding serialization and hashcode,
equals there.
Relates to #10217
2015-09-10 12:14:55 +02:00
javanna
484fcd49e5
Query refactoring: query_string
...
Relates to #10217
2015-09-10 10:09:24 +02:00
javanna
db705ab460
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/mapper/internal/ParentFieldMapper.java
core/src/main/java/org/elasticsearch/index/query/HasChildQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/HasChildQueryParser.java
core/src/main/java/org/elasticsearch/index/query/HasParentQueryParser.java
core/src/main/java/org/elasticsearch/index/query/MoreLikeThisQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/MoreLikeThisQueryParser.java
core/src/main/java/org/elasticsearch/index/search/child/ChildrenQuery.java
core/src/test/java/org/elasticsearch/index/query/SimpleIndexQueryParserTests.java
core/src/test/java/org/elasticsearch/index/search/child/AbstractChildTestCase.java
core/src/test/java/org/elasticsearch/index/search/child/ChildrenConstantScoreQueryTests.java
core/src/test/java/org/elasticsearch/index/search/child/ChildrenQueryTests.java
core/src/test/java/org/elasticsearch/search/child/ChildQuerySearchBwcIT.java
core/src/test/java/org/elasticsearch/search/child/ChildQuerySearchIT.java
core/src/test/resources/org/elasticsearch/index/query/simple-query-string.json
2015-09-09 17:08:22 +02:00
Martijn van Groningen
2fb2a12c52
Removed pre 2.x parent child implementation
2015-09-09 13:21:40 +02:00
Alex Ksikes
a45ee273e3
MLT: builder takes a new Item object like its parser
...
Previously the parser could take any Term Vectors request, but this would be
not the case of the builder which would still use MultiGetRequest.Item. This
introduces a new Item class which is used by both the builder and parser.
Beyond that the rest is mostly cleanups such as:
1) Deprecating the ignoreLike methods, in favor to using unlike.
2) Deprecating and renaming MoreLikeThisBuilder#addItem to addLikeItem.
3) Ordering the methods of MoreLikeThisBuilder more logically.
This change is needed for the upcoming query refactoring of MLT.
Closes #13372
2015-09-09 11:40:27 +02:00
Ryan Ernst
55795f8ec2
Merge pull request #13383 from rjernst/go_away_transport_paths
...
Remove environment from transport client
2015-09-08 13:28:21 -07:00
David Pilato
81223179df
[doc] Java add missing breaking changes
...
Closes #13151
2015-09-08 21:23:20 +02:00
Ryan Ernst
86ffa38ec7
Add migration guide note about transport client changes to
...
settings/environment
2015-09-08 10:22:46 -07:00
Simon Willnauer
18bec264f9
Split HasChildQueryParser into toQuery and formXContent
...
This is an intial commit that splits HasChildQueryParser / Builder into
the two seperate steps. This one is particularly nasty since it transports
a pretty wild InnerHits object that needs heavy refactoring. Yet, this commit
has still some nocommits and needs more tests and maybe another cleanup but
it's a start to get the code out there.
2015-09-08 17:11:57 +02:00
javanna
f2605b34d6
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/query/ScriptQueryParser.java
2015-09-08 16:11:22 +02:00
Clinton Gormley
2c20658204
Docs: Added deprecation notice for _timestamp and _ttl
2015-09-07 21:16:19 +02:00
Adrien Grand
0c26e7cd83
Remove the scan and count search types.
...
These search types have been deprecated in 2.1 and 2.0 respectively, and will
be removed in 3.0.
2015-09-07 15:18:45 +02:00
javanna
52be313c69
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/query/BoolQueryParser.java
core/src/main/java/org/elasticsearch/index/query/IdsQueryParser.java
core/src/main/java/org/elasticsearch/index/query/SimpleQueryStringParser.java
core/src/main/java/org/elasticsearch/index/query/TemplateQueryParser.java
core/src/main/java/org/elasticsearch/index/query/TermsQueryParser.java
core/src/main/java/org/elasticsearch/index/query/functionscore/fieldvaluefactor/FieldValueFactorFunctionParser.java
core/src/main/java/org/elasticsearch/search/aggregations/bucket/significant/heuristics/GND.java
core/src/main/java/org/elasticsearch/search/aggregations/bucket/significant/heuristics/JLHScore.java
core/src/main/java/org/elasticsearch/search/aggregations/bucket/significant/heuristics/NXYSignificanceHeuristic.java
core/src/main/java/org/elasticsearch/search/aggregations/bucket/significant/heuristics/PercentageScore.java
core/src/main/java/org/elasticsearch/search/aggregations/bucket/significant/heuristics/ScriptHeuristic.java
core/src/test/java/org/elasticsearch/search/aggregations/bucket/SignificantTermsSignificanceScoreIT.java
2015-09-02 16:00:35 +02:00
xuzha
f46e66e7d0
Remove the experimental indices.fielddata.cache.expire
...
closes #10781
2015-09-01 00:40:04 -07:00
javanna
faf526dccb
Merge branch 'master' into feature/query-refactoring
2015-08-31 13:28:48 +02:00
Clinton Gormley
40dbba4e64
Update settings.asciidoc
...
Added removal of merge and merge throttling settings to breaking changes
2015-08-28 18:31:54 +02:00
Clinton Gormley
0331e444e6
Update mapping.asciidoc
...
Added fielddata format removal to breaking changes docs
2015-08-28 18:12:54 +02:00
Nik Everett
54639478c0
Merge pull request #13180 from nik9000/cat_non_verbose
...
Default _cat verbose to false
2015-08-28 11:59:29 -04:00
Clinton Gormley
a46368310a
Update mapping.asciidoc
...
Add type name length restriction to breaking changes docs.
2015-08-28 17:52:55 +02:00
Nik Everett
8a75d33ee6
Remove migration note about cat verbosity
...
Its no longer true.
2015-08-28 11:24:58 -04:00
javanna
78d097de39
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/apache/lucene/queryparser/classic/MapperQueryParser.java
core/src/main/java/org/elasticsearch/index/query/AndQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/AndQueryParser.java
core/src/main/java/org/elasticsearch/index/query/BoolQueryParser.java
core/src/main/java/org/elasticsearch/index/query/DisMaxQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/DisMaxQueryParser.java
core/src/main/java/org/elasticsearch/index/query/GeoPolygonQueryParser.java
core/src/main/java/org/elasticsearch/index/query/HasChildQueryParser.java
core/src/main/java/org/elasticsearch/index/query/HasParentQueryParser.java
core/src/main/java/org/elasticsearch/index/query/MoreLikeThisQueryParser.java
core/src/main/java/org/elasticsearch/index/query/MultiMatchQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/NestedQueryParser.java
core/src/main/java/org/elasticsearch/index/query/OrQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/OrQueryParser.java
core/src/main/java/org/elasticsearch/index/query/PrefixQueryParser.java
core/src/main/java/org/elasticsearch/index/query/RegexpQueryParser.java
core/src/main/java/org/elasticsearch/index/query/SpanNearQueryParser.java
core/src/main/java/org/elasticsearch/index/query/SpanOrQueryParser.java
core/src/main/java/org/elasticsearch/index/query/TermQueryParser.java
core/src/main/java/org/elasticsearch/index/query/TermsQueryParser.java
core/src/main/java/org/elasticsearch/index/query/support/InnerHitsQueryParserHelper.java
core/src/test/java/org/elasticsearch/index/query/SimpleIndexQueryParserTests.java
2015-08-28 10:49:28 +02:00
Nik Everett
9eb684da51
Default detect_noop to true
...
detect_noop is pretty cheap and noop updates compartively expensive so this
feels like a sensible default.
Also had to do some testing and documentation around how _ttl works with
detect_noop.
Closes #11282
2015-08-27 10:34:18 -04:00
Dan Tuffery
d8298e1d3a
Update query_dsl.asciidoc
...
Fixed typo.'
2015-08-27 12:47:15 +02:00
Ryan Ernst
fdf8e67de3
Merge branch 'master' into docs/multicast
2015-08-26 19:42:13 -07:00
Ryan Ernst
7a61adf8c4
Add links to multicast and dbq plugins
2015-08-26 19:40:00 -07:00
xuzha
fb2be6d6a1
The name "position_offset_gap" is confusing because Lucene has three
...
similar sounding things:
* Analyzer#getPositionIncrementGap
* Analyzer#getOffsetGap
* IndexOptions.DOCS_AND_FREQS_AND_POSITIONS_AND_OFFSETS and
* FieldType#storeTermVectorOffsets
Rename position_offset_gap to position_increment_gap
closes #13056
2015-08-26 14:56:35 -07:00
Alex Ksikes
0872a6ea39
removes TermsLookup changes as it was used internally
2015-08-26 14:07:55 +02:00
Alex Ksikes
1af0a39221
Refactors TermsQueryBuilder and Parser
...
Refactors TermsQueryBuilder and Parser for #10217 .
This PR is against the query-refactoring branch.
Closes #12042
2015-08-26 13:58:46 +02:00
Christoph Büscher
efadf87371
Merge branch 'master' into feature/query-refactoring
2015-08-26 10:23:03 +02:00
Nik Everett
3f6108ab74
[Mapping] Move position_offset_gap default change
...
Until a couple of hours ago we expected the position_offset_gap to default
to 0 in 2.0 and 100 in 2.1. We decided it was worth backporting that new
default to 2.0. So now that its backported we need to teach 2.1 that 2.0
also defaults to 100.
Closes #7268
2015-08-25 18:01:10 -04:00
Nik Everett
840b4cf0e1
[docs] Fix typo
...
grap -> gap
2015-08-25 15:38:14 -04:00
Nik Everett
4b9664beeb
Mapping: Default position_offset_gap to 100
...
This is much more fiddly than you'd expect it to be because of the way
position_offset_gap is applied in StringFieldMapper. Instead of setting
the default to 100 its simpler to make sure that all the analyzers default
to 100 and that StringFieldMapper doesn't override the default unless the
user specifies something different. Unless the index was created before
2.1, in which case the old default of 0 has to take.
Also postition_offset_gaps less than 0 aren't allowed at all.
New tests test that:
1. the new default doesn't match phrases across values with reasonably low
slop (5)
2. the new default doest match phrases across values with reasonably high
slop (50)
3. you can override the value and phrases work as you'd expect
4. if you leave the value undefined in the mapping and define it on a
custom analyzer the the value from the custom analyzer shines through
Closes #7268
2015-08-25 14:21:50 -04:00
Clinton Gormley
327ceec12d
Docs: Added a networking section to migrating changes and mentioned multicast removal
2015-08-25 17:53:44 +02:00
Ryan Ernst
d5a2d8a64d
Docs: Add migration guide notes for multicast moving to a plugin
...
See #13027
2015-08-24 14:08:09 -07:00
Christoph Büscher
8757af2d92
Merge branch 'master' into feature/query-refactoring
2015-08-24 14:36:46 +02:00
xuzha
f77b349c23
The queue_size value should be shown as an integer,
...
closes #10404
closes #13063
2015-08-24 10:04:55 +02:00
Christoph Büscher
b18e470278
Merge branch 'master' into feature/query-refactoring
2015-08-21 12:27:31 +02:00
Christoph Büscher
345a30a2a7
Merge branch 'master' into feature/query-refactoring
...
core/src/test/java/org/elasticsearch/plugins/PluginManagerIT.java
core/src/test/java/org/elasticsearch/search/aggregations/bucket/SignificantTermsSignificanceScoreIT.java
2015-08-20 12:48:05 +02:00
Adrien Grand
6fa258b8fa
Deprecate the `scan` search type.
...
This commit deprecates the `scan` search type in favour of regular scroll
requests sorted by `_doc`.
Related to #12983
2015-08-20 12:47:23 +02:00
Clinton Gormley
36f48ff32f
Docs: Added removal of MVEL to migration docs
2015-08-18 19:14:14 +02:00
javanna
4a3faf1126
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/query/NotQueryParser.java
core/src/main/java/org/elasticsearch/index/query/TermsQueryBuilder.java
2015-08-18 15:20:16 +02:00
javanna
8e93ac5d5c
Java api: remove execution from TermsQueryBuilder as it has no effect
...
Also introduced ParseField for execution in TermsQueryParser so proper deprecation warnings get printed out when requested.
Closes #12884
2015-08-18 14:57:33 +02:00
javanna
3843ae484d
Merge branch 'master' into feature/query-refactoring
2015-08-18 13:14:03 +02:00
Adrien Grand
a91b3fcbb9
Move the `murmur3` field to a plugin and fix defaults.
...
This move the `murmur3` field to the `mapper-murmur3` plugin and fixes its
defaults so that values will not be indexed by default, as the only purpose
of this field is to speed up `cardinality` aggregations on high-cardinality
string fields, which only requires doc values.
I also removed the `rehash` option from the `cardinality` aggregation as it
doesn't bring much value (rehashing is cheap) and allowed to remove the
coupling between the `cardinality` aggregation and the `murmur3` field.
Close #12874
2015-08-18 11:41:52 +02:00
Alex Ksikes
3ebf7a43f5
Refactors WrapperQueryBuilder and Parser
...
Relates to #10217
Closes #12037
This PR is against the query-refactoring branch.
2015-08-17 21:32:53 +02:00
Alex Ksikes
d62128fc78
Revert "Refactors WrapperQueryBuilder and Parser"
...
This reverts commit afcbd2915d
.
2015-08-17 20:28:16 +02:00
Alex Ksikes
afcbd2915d
Refactors WrapperQueryBuilder and Parser
...
Relates to #10217
Closes #12037
This PR is against the query-refactoring branch.
2015-08-17 19:52:11 +02:00
Christoph Büscher
32dfd249e9
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/test/java/org/elasticsearch/plugins/PluginManagerIT.java
2015-08-17 10:16:55 +02:00
Clinton Gormley
db1e83884f
Docs: Rewrote the migrating-to-2.0 section
2015-08-14 20:26:18 +02:00
javanna
f8a90edab2
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/query/TermsLookupQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/TermsQueryBuilder.java
2015-08-14 11:40:49 +02:00
Clinton Gormley
c6c3a40cb6
Docs: Updated annotations for 2.0.0-beta1
2015-08-14 10:51:09 +02:00
Christoph Büscher
b7bfcdc5f8
Merge branch 'master' into feature/query-refactoring
2015-08-12 21:56:03 +02:00
Lee Hinman
79d1568b58
Remove the `node.enable_custom_paths` setting
...
This setting is useless now that we have the `path.shared_data` setting.
Resolves #12776
2015-08-12 12:23:05 -06:00
Jason Tedor
d56dc7899d
Merge pull request #12561 from jasontedor/feature/12560
...
Disallow type names to start with dots for new indices except for .percolator
2015-08-11 23:40:11 -07:00
Jason Tedor
f9da6036a2
Disallow type names to start with dots for new indices except for .percolator
...
This commit will disallow type names to start with dots for version 2 and later indices except for .percolator.
Closes #12560
2015-08-11 23:34:41 -07:00
javanna
ecc5516d32
add type safety for QueryParser
...
QueryParser now explicitly declares the type of QueryBuilder that it creates.
Closes #12773
2015-08-11 15:48:44 +02:00
javanna
a1151e63fb
[DOCS] updated migrate guide with info for plugins
2015-08-10 15:53:01 +02:00
Christoph Büscher
4e936d1964
Merge branch 'master' into feature/query-refactoring
2015-08-10 11:41:09 +02:00
Alexander Reelsen
04d2f3e061
Docs: Mention in migration doc that order to dynamic arguments is important
...
Due to the limited abilities of parsing of dynamic (not configured) arguments
like `http.cors.enabled`, that dont map to a command line argument but will
become configuration, we need to mention explicitely, that those dynamic arguments
must come last.
Also fixed some mentions of a memory index setting, that does not exist anymore.
Closes #12758
2015-08-10 11:33:25 +02:00
Christoph Büscher
99398ad311
Merge branch 'master' into feature/query-refactoring
2015-08-03 11:19:04 +02:00
Michael McCandless
ac2e0fd6a0
Remove delete-by-query core docs
...
We moved delete-by-query from core to a plugin, but forgot to remove the core docs.
Closes #12585
2015-08-01 05:14:46 -04:00
Christoph Büscher
7f28dc14ee
Merge branch 'master' into feature/query-refactoring
2015-07-31 10:56:05 +02:00
Alexander Reelsen
69d7f1a78a
Startup: Remove getopt parsing in shell script, use java CLITool
...
In order to ensure, we have the same experience across operating systems
and shells, this commit uses the java CLI parser instead of the shell
getopt parsing to parse arguments.
This also allows for support for paths, which contain spaces.
Also commons-cli depdency was upgraded to 1.3.1 and tests have been added.
Changes
* new exit code, OK_AND_EXIT, allowing to tell the caller to exit, as everything
went as expected (e.g. when running a version output)
BWC breaking:
* execute() returns an ExitStatus instead of an integer, otherwise there is no
possibility to signal by a command, if the JVM should be exited after a run.
This affects plugins, that have command line tools
* -v used to be version, but is a verbose flag by default in the current CLI infra,
must be -V or --version now
* -X has been removed - the current implementation was useless anyway, as
it prefixed those properties with "es.". You should use
ES_JAVA_OPTS/JAVA_OPTS for JVM configuration
2015-07-30 13:20:29 +02:00
Christoph Büscher
081d264f40
Merge branch 'master' into feature/query-refactoring
2015-07-24 17:57:17 +02:00
Martijn van Groningen
cafc7078e2
Removing TransportSingleCustomOperationAction in favour of TransportSingleShardAction to clean up code.
...
The TransportSingleCustomOperationAction `prefer_local` option has been removed as it isn't worth the effort.
The TransportSingleShardAction will execute the operation on the receiving node if a concrete list doesn't provide a list of candite shards routings to perform the operation on.
2015-07-23 16:42:10 +02:00
Christoph Büscher
fc1b5a993e
Query refactoring: SpanWithinQueryBuilder and Parser
...
Moving the query building functionality from the parser to the builders
new toQuery() method analogous to other recent query refactorings.
Relates to #10217
2015-07-22 16:22:02 +02:00
Christoph Büscher
7f88cc596b
Query refactoring: SpanNotQueryBuilder and Parser
...
Moving the query building functionality from the parser to the builders
new doToQuery() method analogous to other recent query refactorings.
Relates to #10217
Closes #12365
2015-07-22 14:50:21 +02:00
Christoph Büscher
22dcc77062
Merge branch 'master' into feature/query-refactoring
2015-07-22 10:38:56 +02:00
Chris Earle
16418b34a2
Updating breaking changes
...
- field names cannot be mapped with `.` in them
- fixed asciidoc issue where the list was not recognized as a list
2015-07-21 08:35:28 -07:00
Christoph Büscher
37cdc1344a
Merge branch 'master' into feature/query-refactoring
2015-07-21 10:58:58 +02:00
Ryan Ernst
8cd03cce5e
Merge branch 'master' into fix/12329
2015-07-21 00:29:34 -07:00
Ryan Ernst
dba42a83e2
Docs: Update time_zone specification
...
closes #12317
2015-07-21 00:22:53 -07:00
Ryan Ernst
1c99626b84
Mappings: Remove ability to configure _index
...
The `_index` field is now a completely virtual field thanks
to #12027 . It is no longer necessary to index the actual value
of the index name.
closes #12329
2015-07-20 23:54:35 -07:00
Christoph Büscher
c0490215c7
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/query/PrefixQueryParser.java
core/src/main/java/org/elasticsearch/index/query/RegexpQueryParser.java
2015-07-20 12:20:57 +02:00
Chris Roche
1af5530003
Correct default date format
...
`strictDateOptionalDate` => `strictDateOptionalTime`
2015-07-16 19:50:39 -07:00
Igor Motov
24a93840d5
Add url repository whitelist
...
Require urls for URL repository to be listed in repositories.url.allowed_urls setting. This change ensures that only authorized URLs can be accessed by elasticsearch
2015-07-14 18:38:26 -04:00
Clinton Gormley
2b512f1f29
Docs: Use "js" instead of "json" and "sh" instead of "shell" for source highlighting
2015-07-14 18:14:09 +02:00
Colin Goodheart-Smithe
b76c394bf3
[DOCS] More updates to script parameters section of breaking changes doc
2015-07-14 13:34:11 +01:00
Colin Goodheart-Smithe
2e6af3ba4c
[DOCS] updates to script parameters section of braking changes doc
2015-07-14 13:33:37 +01:00
Jay Modi
c9042a5d2c
Merge pull request #11890 from jaymode/cors
...
change CORS allow origin default to allow no origins
2015-07-10 14:48:26 -04:00
Christoph Büscher
c689e891d9
Query refactoring: SpanNearQueryBuilder and Parser
...
Moving the query building functionality from the parser to the builders
new toQuery() method analogous to other recent query refactorings.
Relates to #10217
2015-07-09 17:35:48 +02:00
Martijn van Groningen
aa22e23316
added breaking docs
2015-07-09 12:07:49 +02:00
jaymode
8876ddf90b
fix spelling and add to migration docs
2015-07-08 15:24:14 -04:00
Christoph Büscher
fc1b178dc4
Merge branch 'master' into feature/query-refactoring
...
Conflicts:
core/src/main/java/org/elasticsearch/index/query/FuzzyQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/FuzzyQueryParser.java
core/src/main/java/org/elasticsearch/index/query/RegexpQueryBuilder.java
core/src/main/java/org/elasticsearch/index/query/RegexpQueryParser.java
2015-07-08 13:11:25 +02:00