https://github.com/elastic/elasticsearch

sort by:
Revision Author Date Message Commit Date
f51a661 update to 0.14.5-SNAPSHOT 31 January 2011, 22:00:13 UTC
b95f9f6 release 0.14.4 31 January 2011, 21:58:59 UTC
15aa11b remove took as its not on for 0.14 28 January 2011, 20:15:04 UTC
ced4f18 refresh param to bulk not working, closes #614. 28 January 2011, 20:13:17 UTC
7bfe8b5 ES hangs connection when parent is not specified in bulk index, closes #641. 28 January 2011, 20:10:59 UTC
cdbfcb5 don't log index missing exception when trying to optimize single shard search request 25 January 2011, 17:25:29 UTC
36c7de9 update to 0.14.4 SNAPSHOT 23 January 2011, 21:30:20 UTC
73783e1 protect against a case when string field data value is null 17 January 2011, 10:50:16 UTC
dfddde3 limit the number of addresses to try and connect to when doing unicast discovery with just the host and not the port to 5 10 January 2011, 22:53:20 UTC
5cde582 add trace logging to unicast discovery 10 January 2011, 21:28:44 UTC
5e4a1e8 Highlighting: Sometimes highlighting returns empty fragments even thought there should be, closes #613. 08 January 2011, 01:19:09 UTC
fb46f6b build on aferreira improvements to handle empty parameters with no =, and improve component decoding logic 07 January 2011, 12:46:14 UTC
33ae7cb Adding test for edge cases of RestUtils.decodeQueryString() When writing tests for the fix of decodeQueryString() to handle gracefully edge cases like: &a &a&b it arises the question of what behavior is desirable for these pathological cases (vs the regular p=v pairs). This change just skips them which is consonant to the preexisting code. To be thorough, we add tests for a bunch of edge cases, like: QUERY PARSED PARAMS ? {} ?& {} ?= { "": "" } ?a {} ?p=v&a { "p": "v" } ?p=v&a&p1=v1 { "p": "v", "p1": "v1" } ?a&b {} 07 January 2011, 12:46:07 UTC
a4dd37f Make RestUtils.decodeQueryString() more robust in edge cases The code of decodeQueryString() had some trouble with weird URLs: (1) an input like "uri?param&p=v" causes an exception to be thrown (2) an input like "uri?param1&param2" causes an infinite loop This could be verified against an ES server with requests like curl -XGET localhost:9200/test/_analyze?t&text=this+is+a+test # the exception stack trace shows up in logs curl -XGET localhost:9200/test/_analyze?t1&t2&text=this+is+a+test # never returns, never ends This change fixes these issues. 07 January 2011, 12:45:51 UTC
c7debc0 Minor changes to RestUtils.decodeQueryString() tests Testing RestUtils.decodeQueryString("something", "something".indexOf('?') + 1, params); is not really checking decoding of an empty query. Instead, it is testing decoding of "something" as a query (because "something.index('?')+1" evaluates to 0). The parameter map is left empty because "malformed" pairs like "something" are currently skipped. Instead, this change modify this test to check the edge cases: + fromIndex >= queryString.length() + fromIndex < 0 07 January 2011, 12:45:15 UTC
c597f7b fix serialization of count request 06 January 2011, 18:57:48 UTC
5faf6db parse query with offset 06 January 2011, 18:57:37 UTC
021bb5e update 0.14.3-SNAPSHOT 05 January 2011, 21:36:43 UTC
f7185b4 update 0.14.2 version 05 January 2011, 21:17:19 UTC
67a8e0a Add to node stats the number of times field cache was evicted due to memory constraints, closes #603. 05 January 2011, 20:37:52 UTC
bad0b1f try to be more predictable when doing pagination (still can return duplicates when going to different shards) by sorting on the shards results based on the shard id first 05 January 2011, 19:31:17 UTC
f6fa795 Add `resident` field cache type, closes #602. 05 January 2011, 19:24:33 UTC
45d39a6 fix wrong removal of test jars from build script 05 January 2011, 18:57:22 UTC
ee75066 change the default interval for gc checks to 1 second 05 January 2011, 18:40:02 UTC
688f812 Highlighting: The result of highlighting for a hit can contain data from another document, closes #600. 05 January 2011, 14:10:44 UTC
9e5a2e9 Highlighting: Allow to highlight on fields without term vectors, closes #585. 05 January 2011, 14:10:26 UTC
11c80b7 Non-data master nodes and non-master data nodes fail to store data, closes #579. 05 January 2011, 13:50:12 UTC
f6a1131 make settings prefix simpler and not bail when not prefixed with org.elasticsearch, allow to provide settings prefix for analyzer provider 05 January 2011, 13:49:45 UTC
bbe9988 update to 0.14.2 snapshot 29 December 2010, 12:05:14 UTC
6d9bab9 update to release 0.14.1 29 December 2010, 12:00:09 UTC
e407815 update version to 0.14.1-SNAPSHOT 29 December 2010, 10:54:14 UTC
c03b95e add filter_cache_size to node stats 29 December 2010, 10:53:09 UTC
c66a1c2 await closing sockets on shutdown 29 December 2010, 10:52:11 UTC
e2d66f4 REST Create Index: Not taking JSON index settings into account unless wrapped in settings. 29 December 2010, 10:51:42 UTC
956e775 release 0.14 27 December 2010, 20:23:18 UTC
f908a73 allow to construct transport client with settings builder 27 December 2010, 18:11:28 UTC
a84e0a4 change scope to _score 27 December 2010, 17:19:17 UTC
d73a459 when parent mapping is set, fix setting routing to required 27 December 2010, 16:41:28 UTC
d560cea use high transport type when sending the cluster state 27 December 2010, 14:50:55 UTC
ec2f0e0 upgrade to jython 2.5.2rc2 27 December 2010, 08:23:01 UTC
a00f99e upgrade to groovy 1.7.6 27 December 2010, 06:21:25 UTC
27fe076 upgrade to rabbitmq client 2.2.0 26 December 2010, 10:50:52 UTC
4245eb7 add node level field cache size to node stats api 26 December 2010, 10:18:15 UTC
5dcba8a revert back a stupid bug in setting compress to true always introduced in the last commit 26 December 2010, 10:05:22 UTC
49deb80 when compression is enabled, use the compressed byte buffer to write it to the translog (less data to write), and handle recovery by being able to parse also compressed source 23 December 2010, 23:09:15 UTC
f2eae5b Memory Index Store: Separate to two buffer size types, and fix bugs, closes #577. 23 December 2010, 21:21:32 UTC
22fa91e add reconnection code between nodes that are not masters 23 December 2010, 15:26:55 UTC
f6afc01 add reconnection code between nodes that are not masters 23 December 2010, 15:26:32 UTC
ff5990d listener should be threaded 23 December 2010, 15:24:23 UTC
de7dd3c default to try and connect after network disconnection with fault detection 23 December 2010, 14:51:09 UTC
e313379 only force shutdown on cached threadpool if its not the same as the execture service 23 December 2010, 14:13:05 UTC
42e8567 interrupt joining the cluster thread if shutting down 23 December 2010, 14:11:43 UTC
5f25ae4 check if the scheduled thread pool is not terminated when trying to terminate it 23 December 2010, 13:18:22 UTC
9f72a8d use cached thread pool for notifying on disconnections 23 December 2010, 12:22:40 UTC
6dcc04b Transport: Increase the default transport.tcp.connect_timeout from 1s to 30s, also add `network.tcp.connect_timeout` to conform with other common network settings, closes #576. 23 December 2010, 12:20:11 UTC
5c338b7 add message to connect transport failure exception 23 December 2010, 11:05:39 UTC
5a58ed4 when replacing a mapping, clear the aggregated mapping information and then readd it 23 December 2010, 09:32:16 UTC
473c2fa add reason for state change logging in index shard, add debug logging on ignore recovery in when handling cluster change in indices cluster 23 December 2010, 08:56:37 UTC
5ac42f2 Excessive mapping parsing when cluster state changes, closes #575. 23 December 2010, 07:53:05 UTC
9361e3b Cloud AWS: Change endpoint parameters to distinguish between ec2 and s3, closes #574. 23 December 2010, 07:13:44 UTC
f869951 rename type method on MapperService to the more descriptive documentMapperWithAutoCreate 23 December 2010, 06:43:17 UTC
e0b2b4b add a warn when not using the custom FieldCache with eager reader based eviction 23 December 2010, 05:58:43 UTC
800b7f3 add toString to CompressedString to show when logging it 23 December 2010, 05:45:04 UTC
3b30930 improve logging when trying to delete unallocated shard, check first if deleting is required, and only then delete it 23 December 2010, 05:37:49 UTC
ac73334 make id cache an index component, so a new instance will be created per index 22 December 2010, 12:21:59 UTC
bb0d719 make id cache an index component, so a new instance will be created per index 22 December 2010, 12:21:31 UTC
1ee24ce add an option to provide an OutputStream to a builder, allowing to generate directly into a stream provided by the user 22 December 2010, 11:26:29 UTC
eef3a95 move the query parser cache to be index level and not node level 22 December 2010, 10:31:30 UTC
33339ae improve concurrency control in filter caching, reuse one if it was created already under concurrent request 22 December 2010, 08:42:38 UTC
d283c15 optimize for the more common case of single value facets when loading values 22 December 2010, 07:04:35 UTC
59ee849 use public terms filter in all places 21 December 2010, 21:43:05 UTC
a1df3c6 improve logic of when to load fields from source, only if they actually have mappings, otherwise, ignore them (as was the previous behavior) 21 December 2010, 11:02:15 UTC
3035254 Search API: Allow to pass `&fields=` without any fields to cause only id and type to be returned, closes #572. 21 December 2010, 10:01:51 UTC
a96b294 add multicast socket to execption message 20 December 2010, 18:07:51 UTC
ec943b5 fix urlRoot for gradle to point to the 0.9 dist 20 December 2010, 15:58:16 UTC
efc95dc Java Search API: Passing a the query as json fails, closes #568. 20 December 2010, 09:31:09 UTC
09bc3b9 upgrade to gradle 0.9 19 December 2010, 17:53:50 UTC
29c7fc3 upgrade to gradle 0.9 rc3 19 December 2010, 03:51:15 UTC
7890736 fix transport client compilation problem, the client cluster service was not used and removed 19 December 2010, 03:50:07 UTC
8dfc3ac when using dates in scripts, initialize the dates (DateTime) with UTC 19 December 2010, 03:01:59 UTC
96a2950 Disable calling mlockall by default, can be enabled by setting bootstrap.mlockall to `true`, closes #567. 19 December 2010, 00:30:48 UTC
415bb5d Java TransportClient: By default, don't sniff other nodes and use addresses provided as is, closes #565. 17 December 2010, 17:31:28 UTC
005c6d9 allow to set term index divisor 16 December 2010, 19:56:59 UTC
698f67a EC2 Discover: Support filtering instances by tags, closes #551. 16 December 2010, 03:14:49 UTC
ff0eeb3 improve getting setting as array, automatically support comma delimited values under the exact setting 16 December 2010, 03:02:24 UTC
f827b7c fix settings 15 December 2010, 22:48:26 UTC
d6bab1a Tcp Transport: Connection pool between nodes and different connection types, closes #564. 15 December 2010, 18:11:10 UTC
085066e set, by default, the send and receive buffers to 32k on tcp 15 December 2010, 03:54:09 UTC
36be13f bring back the file chunk size in recovery to 100kb from 500kb 14 December 2010, 23:28:21 UTC
b6277ac increase netty worker count to default to the updated value netty defaults to 14 December 2010, 23:16:00 UTC
bb178c9 cleanup 13 December 2010, 19:30:26 UTC
d0eed79 add log message on hte concurrent streams used 12 December 2010, 22:08:57 UTC
ceb7b90 Recovery: Allow to control `concurrent_streams` (per node) during recovery 12 December 2010, 22:03:04 UTC
1c5477d Improve local node recovery process, removing using a block as indication for an index not being recovered. Moving to shard replication group level allocation (with the ability to distinguish between api based creation or recovery based creation). This also allows for throttling based control on initial local gateway based shard allocation. 12 December 2010, 20:46:27 UTC
bc04243 Search Fields: If a field is not stored, automatically extract it from _source (without the need for _source prefix), closes #562. 12 December 2010, 03:00:24 UTC
216b2ab Highlighting: Automatically use the field values extracted from _source if not stored explicitly in the mapping, closes #561. 12 December 2010, 02:40:25 UTC
fe3f5d4 remove global settings from the settings conf, a relic that is no longer needed... 12 December 2010, 00:37:36 UTC
dddca69 add search hit phase, which operates on a hit, and have all relevant hit phases implement and use it 12 December 2010, 00:01:13 UTC
be4b2e2 externalize script search lookup into a generalized lookup that can be used outside of scripts 11 December 2010, 23:01:56 UTC
a914865 Close API might cause index data to be wiped, closes #560. 10 December 2010, 20:19:45 UTC
back to top