Skip to content

Commit 58620bf

Browse files
committed
update release notes up to 2011-03-12 including
1 parent c15692c commit 58620bf

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

download/master/index.textile

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,19 @@ release_notes: true
88
---
99

1010
h2. Breaking changes:
11+
* Node Stats API: Change the structure of the response (more structured) ("#746":http://github.com/elasticsearch/elasticsearch/issues/746)
12+
* Percolator: Failures when using docs where fields repeat, such as arrays ("#763":http://github.com/elasticsearch/elasticsearch/issues/763)
13+
* Mapper: Using @dynamic_template@ can result in warning of parsed and original source difference (resulting in excessive mapping parsing) ("#764":http://github.com/elasticsearch/elasticsearch/issues/764)
1114

1215
h2. New features:
1316
* Search:
1417
** Terms Stats Facet ("#705":http://github.com/elasticsearch/elasticsearch/issues/705)
1518
** Add search type @scan@ allowing to efficiently scan large result set ("#707":http://github.com/elasticsearch/elasticsearch/issues/707)
1619
** Add search_type for @count@ to return count but still support facets ("#718":http://github.com/elasticsearch/elasticsearch/issues/718)
20+
* Scripts: Allow to register native scripts (Java) for better script execution performance. ("#752":http://github.com/elasticsearch/elasticsearch/issues/752)
21+
* Update Settings: Allow to dynamically change refresh_interval and merge policy settings ("#758":http://github.com/elasticsearch/elasticsearch/issues/758)
22+
* Versioning: Add a new @version_type@ parameter, with a new type - @external@ ("#776":http://github.com/elasticsearch/elasticsearch/issues/776)
23+
* Sort: Support "missing" specific handling, include @_last@, @_first@, and custom value (for numeric values) ("#772":http://github.com/elasticsearch/elasticsearch/issues/772)
1724

1825
h2. Enhancements:
1926
* Attachment plugin: upgrade to Tika 0.9
@@ -25,19 +32,29 @@ h2. Enhancements:
2532
* Twitter river:
2633
** "user.screen_name" should not be analyzed ("#715":http://github.com/elasticsearch/elasticsearch/issues/715)
2734
** Automatically reconnect when disconnected from twitter stream ("#735":http://github.com/elasticsearch/elasticsearch/issues/735)
35+
** Oauth support ("#757":http://github.com/elasticsearch/elasticsearch/issues/757)
2836
* Clear Cache API: Add specific cache clear for @id@, @filter@, @field_data@, @bloom@ ("#716":http://github.com/elasticsearch/elasticsearch/issues/716)
2937
* Improve from hits pagination (duplicates) ("#717":http://github.com/elasticsearch/elasticsearch/issues/717)
3038
* Search:
3139
** Allow to filter out docs based on a minimum score ("#719":http://github.com/elasticsearch/elasticsearch/issues/719)
3240
** Allow to use has_child filter in facets ("#730":http://github.com/elasticsearch/elasticsearch/issues/730)
3341
* Index Filter Cache: Add @resident@ type, and @max_size@ to @soft@/@weak@ types ("#721":http://github.com/elasticsearch/elasticsearch/issues/721)
3442
* Mapping: When @_all@ is disabled, optimize to not gather all entries ("#722":http://github.com/elasticsearch/elasticsearch/issues/722)
35-
* Zen Discovery: Rename `discovery.zen.initial_ping_timeout` to `discovery.zen.ping_timeout` (still support the old setting) ("#723":https://github.com/elasticsearch/elasticsearch/issues/723)
43+
* Zen Discovery: Rename @discovery.zen.initial_ping_timeout@ to @discovery.zen.ping_timeout@ (still support the old setting) ("#723":https://github.com/elasticsearch/elasticsearch/issues/723)
3644
* Bulk API: Improve memory usage when executing large bulk requests ("724":https://github.com/elasticsearch/elasticsearch/issues/724)
3745
* Peer Recovery: Batch translog based operation recovery based on size and not just number of operations ("#729":https://github.com/elasticsearch/elasticsearch/issues/729)
3846
* Don't "double" cache a facet filter / query facet ("#734":http://github.com/elasticsearch/elasticsearch/issues/734)
3947
* Delete API: Allow to set @_parent@ on it (will simply set the routing value) ("#742":http://github.com/elasticsearch/elasticsearch/issues/742)
4048
* Query DSL: flt_field does not allow to set @min_similarity@ and @prefix_length@ ("#744":http://github.com/elasticsearch/elasticsearch/issues/744)
49+
* Indices Status / Node Stats: Add (Lucene) index merge stats ("#745":http://github.com/elasticsearch/elasticsearch/issues/745)
50+
* Internal: Improve checksum process by bulk writing them into a single file instead of checksum file per index file ("#747":http://github.com/elasticsearch/elasticsearch/issues/747)
51+
* Logging: Add merge level logging ("#755":http://github.com/elasticsearch/elasticsearch/issues/755)
52+
* Mvel Script: add more random options, and optimize random ("#759":http://github.com/elasticsearch/elasticsearch/issues/759)
53+
* Update Settings:
54+
** Allow to dynamically change @index.term_index_interval@ and @index.term_index_divisor@ ("#762":http://github.com/elasticsearch/elasticsearch/issues/762)
55+
** Allow to dynamically update @index.translog@ settings ("#765":http://github.com/elasticsearch/elasticsearch/issues/765)
56+
* Add @max_shard_index_buffer_size@ to control the upper limit of a shard indexing buffer size (defaults to @512mb@) ("#773":http://github.com/elasticsearch/elasticsearch/issues/773)
57+
* Support true|false for the @store@ parameter in mappings ("#775":http://github.com/elasticsearch/elasticsearch/issues/775)
4158

4259
h2. Bug fixes:
4360
* Handle cluster join request on a non IO thread ("#702":http://github.com/elasticsearch/elasticsearch/issues/702)
@@ -46,7 +63,7 @@ h2. Bug fixes:
4663
* Acknowledge problem for put mapping with multiple indices or all indices ("#720":http://github.com/elasticsearch/elasticsearch/issues/720)
4764
* Percolate: Failure to percolate with specific query (when creating the _percolate index before the actual index) ("#725":https://github.com/elasticsearch/elasticsearch/issues/725)
4865
* Ids with # in them will cause search failures, also, fail when # is used in a type name ("#728":https://github.com/elasticsearch/elasticsearch/issues/728)
49-
* Date Histogram Facet: NPE if using "1w" interval ("#727":http://github.com/elasticsearch/elasticsearch/issues/727)
66+
* Date Histogram Facet: NPE if using @1w@ interval ("#727":http://github.com/elasticsearch/elasticsearch/issues/727)
5067
* Prefix inside a dis_max / bool query broken ("#732":http://github.com/elasticsearch/elasticsearch/issues/732)
5168
* Searching while an index is being allocated and no active shards exists within a "shard replication group" can cause search "misses" ("#736":http://github.com/elasticsearch/elasticsearch/issues/736)
5269
* All Field: All field can fail to analyze input data (rare cases) ("#743":http://github.com/elasticsearch/elasticsearch/issues/743)
@@ -55,3 +72,5 @@ h2. Internal:
5572
* upgrade to mvel 2.1.beta2
5673
* upgrade to guava r08
5774
* upgrade to aws sdk 1.1.7
75+
* upgrade to jackson 1.7.4
76+
* upgrade to guice 3 rc3

0 commit comments

Comments
 (0)