Shay Banon
73a34ee537
upgrade to guava 12.0.1
2012-07-14 13:02:21 +02:00
Shay Banon
7a23b4f0b6
add query types also to field query
2012-07-12 11:30:35 +02:00
Shay Banon
0cebcc56a4
move to use linked blocking queue
2012-07-12 11:28:55 +02:00
Igor Motov
51ff83942c
Query Parser caching does not take types into account
2012-07-12 11:28:26 +02:00
Shay Banon
5517df6353
don't (re) create a string from a numeric timestamp, just return the string we get
2012-07-11 21:28:14 +02:00
Shay Banon
29d6b0e30a
add debug logging when updating the shard indexing buffer
2012-07-11 18:06:28 +02:00
Shay Banon
ee3253d558
OutOfMemory Error -> corrupted translog entry in shards, closes #2098 .
2012-07-11 16:05:20 +02:00
Shay Banon
de5068388e
add rejected metric to thread pool stats
2012-07-11 10:59:00 +02:00
Shay Banon
83323f2c88
improve the logic of expanding byte arrays
2012-07-11 10:58:55 +02:00
Shay Banon
7ff4371f95
add more trace logging for recovery
2012-07-11 01:19:11 +02:00
Shay Banon
bfb4a29700
fix new jackson version to be properly shaded
2012-07-11 01:18:59 +02:00
Shay Banon
877f2ffcd7
propagate cluster event to shard and meta states in local gateway even when state persistence is disabled, so they can act on it if needed
2012-07-11 00:02:18 +02:00
Shay Banon
57e966e9d7
upgrade to jackson 2.0.4
2012-07-10 23:44:02 +02:00
Shay Banon
99d2f27c84
Introduce Text abstraction, allowing for improved representation of strings, apply to HighlightedField (breaks backward for Java API from String to Text), closes #2093 .
...
By introducing the Text abstraction, we can keep (long) text fields in their UTF8 bytes format, and no need to convert them to a string when serializing it back to Json for example.
The first place we can apply this is to highlighted text, which can be long.. . This does breaks backward comp. for people using the Java API where the HighlightField now has a Text as its content, and not String.
2012-07-10 00:47:37 +02:00
Shay Banon
0bb7496dfe
yuck!, hack around snappy printing to System.err the failure to load its library if its not found
2012-07-09 20:14:03 +02:00
Shay Banon
1a085d9bfa
Stored binary fields to change internal representation (break Java API if used), closes #2092 .
2012-07-09 16:53:20 +02:00
Nicolas Lalevée
e91a0d85a7
Better ExplainableSearchScript interface
2012-07-09 16:34:54 +02:00
Shay Banon
1dd30bd388
deprecate readUTF, use readString instead (better named)
2012-07-08 21:21:17 +02:00
Shay Banon
d3e9506a1d
ad more info when rejecting execution
2012-07-08 12:06:57 +02:00
Shay Banon
b27cc1318f
streams to handle BytesReference as a generic type as well
2012-07-08 01:59:24 +02:00
Shay Banon
12beff9176
use netty frame decoder again
...
with the new bytes reference abstraction, and the new composite buffer handling in frame decoder, it makes more sense to move back and use netty frame decoder again, since we can easily slice refernces acorss composite buffers, and reduce copies when using compression
2012-07-08 00:56:56 +02:00
Shay Banon
f7b538e17f
move rest request to provide content as BytesReference
...
this allows for better buffer usage, specifically when forwarding requests to other nodes
2012-07-07 22:49:31 +02:00
Shay Banon
5f5458fd56
add byte buffer backed bytes reference
2012-07-07 21:33:01 +02:00
Shay Banon
35233564fd
buffer management refactoring
...
First phase at improving buffer management and reducing even further buffer copies. Introduce a BytesReference abstraction, allowing to more easily slice and "read/write references" from streams. This is the foundation for later using it to create smarter buffers on top of composite netty channels for example (which http now produces) as well as reducing buffer copies when sending transport/rest responses.
2012-07-07 01:26:41 +02:00
Shay Banon
5d93b2bfe9
Thread Pool: Allow to configure the query_type for fixed thread pool (linked/array), defaults to array, closes #2086 .
2012-07-06 11:48:45 +02:00
Shay Banon
8d1e04a973
have the quick rolling restart stress test also wait for 0 relocating shards
2012-07-06 01:01:18 +02:00
Shay Banon
dcf9194820
fix naming, also make explainable search script extend search script
2012-07-06 01:00:44 +02:00
Nicolas Lalevée
a77c824476
Add an interface to be implemented by native scripts to be able to explain the score
2012-07-06 00:55:12 +02:00
Shay Banon
29826863dd
Local Gateway: old global state files are not properly deleted, closes #2085 .
2012-07-06 00:19:34 +02:00
Shay Banon
d844093953
only set the decoder type if set in the settings
2012-07-05 23:47:03 +02:00
Shay Banon
2328776ec5
allow to configure the decoder type for LZF, between optimal and safe
2012-07-05 23:46:02 +02:00
Shay Banon
0a615ca35a
when needing to copy over the bytes from the netty content channel, zero it out so ti can be GC'ed
2012-07-05 23:36:27 +02:00
Shay Banon
5f1b1c6f69
Upgrade to Netty 3.5.2, closes #2084 .
2012-07-05 23:09:26 +02:00
Shay Banon
57023c8ba9
Compression: Support snappy as a compression option, closes #2081 .
2012-07-04 17:14:12 +02:00
Shay Banon
2436f645aa
add 0.19.9
2012-07-02 22:10:28 +02:00
Shay Banon
1c3c737524
don't double compress already compressed files when doing recovery
2012-07-02 21:41:40 +02:00
Shay Banon
1668533556
improve dangling index support to not detect explicit deleted index as dangling, harden when we delete the _state of an index
2012-07-02 17:17:16 +02:00
Shay Banon
b2c4876626
(full) recovery memory based indices with local gateway, don't fail them, closes #2077 .
2012-07-02 00:31:10 +02:00
Shay Banon
bdf146ded6
Exists API can send response body, closes #2072 .
2012-07-02 00:04:49 +02:00
Shay Banon
3ab85bacdd
don't delete shards state in the state handle, but let the indices store eventually delete it based on its logic of when to delete a shard
2012-07-01 21:51:19 +02:00
Shay Banon
6cd9b92f95
ElasticSearchIllegalStateException: stream marked as compressed, but no compressor found on transport layer, closes #2076 .
2012-07-01 20:26:33 +02:00
Shay Banon
743d3f7e4b
better failure message when failing to detect compressor on compressed transport stream
2012-07-01 18:34:58 +02:00
Shay Banon
e5c89def42
Support wildcard and +/- notation for multi index APIs, closes #2074 .
2012-07-01 18:16:04 +02:00
Shay Banon
22bdd161ad
return proper content type for mp3
2012-06-30 18:26:21 +02:00
Shay Banon
565db26e13
Store Compression: integer overflow causes failed reads (index is safe), closes #2071 .
2012-06-30 01:37:46 +02:00
Shay Banon
8bab859822
simplify tests, doc file length
2012-06-29 16:01:17 +02:00
Shay Banon
f2e39e4ee2
Auto import dangling indices, closes #2067 .
2012-06-29 01:01:26 +02:00
Shay Banon
07454243e3
getSourceAsString() for doc inserted as SMILE fails, auto convert to JSON, closes #2064 .
2012-06-28 14:17:58 +02:00
Shay Banon
a872c88f03
dangling index handling might still remove the state files for the dangling index, closes #2065 .
2012-06-28 13:32:44 +02:00
Shay Banon
7454c7c192
freeing the search context should execute on the same thread, its cheap
2012-06-28 09:56:49 +02:00