sort by:
Revision Author Date Message Commit Date
3641e03 Added version constants for 1.1.2 and 1.0.4 16 April 2014, 15:21:08 UTC
f305082 [Test] InternalEngineTests: increased gc deletes interval & turn it off randomly 16 April 2014, 14:01:51 UTC
7b7aa85 Update multi-match-query.asciidoc Typo 16 April 2014, 13:41:06 UTC
3fac516 [TEST] Ignore bogus system properties. LuceneTestCase might reset some solr properties that cause our tests to fail if the run before in the same JVM We just ignore solr properties. 16 April 2014, 13:19:09 UTC
5af4ba9 [TEST] catch exceptions if TTL already expired when indexing TTLPercolatorTests indexes docs with small TTLs which can trigger AlreadyExpiredException exception. This is expected while rare and we should just catch them. 16 April 2014, 13:08:52 UTC
7e68bc6 Ensure close is called under lock in the case of an engine failure Until today we did close the engine without aqcuireing the write lock since most calls were still holding a read lock. This commit removes the code that holds on to the readlock when failing the engine which means we can simply call #close() 16 April 2014, 12:51:28 UTC
843f28b add debug logs if failed shards can not be resolved. 16 April 2014, 12:47:17 UTC
0c43641 [TEST] Reduce the amount of docs being indexed. 16 April 2014, 08:49:59 UTC
0832fde Better deal with invalid scroll ids. Closes #5738 16 April 2014, 07:16:36 UTC
c8361dc [TEST] Fix PercolatorTests#testSimple2 This test requires a mapping since otherwise if there is no mapping added the percolator query might not be parsed as a query on a numeric field since the query might arrive on a node before the dynamic mapping reached that node. This commit also moves the `indexService.readAllowed()` call up before the number of percolation queries is check to make sure we fail if reads are not allowed - there might be a query in-flight which means we need to check another node rather than return an empty result. 15 April 2014, 20:58:08 UTC
22af569 [TEST] Wait for green, and refresh after indexing in percolator test 15 April 2014, 17:18:51 UTC
1e8f5fc Remove garbage 15 April 2014, 15:57:32 UTC
2a56e77 [TEST] Don't delete data dirs after test - only delete their content. Closes #5815 15 April 2014, 15:04:50 UTC
6d0fa2f [DOCS] Update merge docs to reflect the max_merge_at_once property 15 April 2014, 14:44:47 UTC
bacba42 Switch back to ConcurrentMergeScheduler Load tests showed that SerialMS has problems to keep up with the merges under high load. We should switch back to CMS until we have a better story to balance merge threads / efforts across shards on a single node. Closes #5817 15 April 2014, 14:44:14 UTC
7f276ac [TEST] Wait for shards to be allocated before running testUpdateMappingDynamicallyWhilePercolating. If the percolate request is executed soon enough, all shards fail and the mapping is not actually updated. 15 April 2014, 14:21:40 UTC
07a5354 Update percolate.asciidoc fix typo 15 April 2014, 14:01:48 UTC
4c10afe Update core-types.asciidoc Missing bracket 15 April 2014, 13:57:20 UTC
61b8844 Updated date_formats to new dynamic_date_formats 15 April 2014, 13:44:02 UTC
4f5cb73 Update clusterstate if mapping service has local changes If the during percolating a new field was introduced in the local mapping service, then those changes should be updated in cluster state of the master as well. Closes #5776 15 April 2014, 11:43:10 UTC
9a02ea7 Cleanup FileSystemUtils#mkdirs(File) This methods had some workarounds for bugs that seem to be fixed in Java 7 [1]. There seem to be other problems on shared file-systems which are not really supported by lucene anyway or rather not recommeded. Yet the current solution that interrupts a static thread reference is too dangrous given all the usage of NIO across elasticsearch. [1] http://bugs.java.com/bugdatabase/view_bug.do?bug_id=4742723 15 April 2014, 11:24:43 UTC
ec6787f Remove FileSystemUtils#maxOpenFiles This method basically forcefully creates as many files as possible to find out the process limit in a brute-force manner. The number of possible probles with this approach would exceed the number of lines left on this commit message. This commit uses a JMX based alternative to print the process limit. 15 April 2014, 11:24:34 UTC
a40d59d Remove jsr166y now that we on Java 7, cleanup jsr166e to classes we use 15 April 2014, 11:17:50 UTC
5048838 Use TransportBulkAction for internal request from IndicesTTLService This prevents executing bulks internal autocreate indices logic and ensures that this internal request never creates an index automaticall. This fixes a bug where the TTL purger thread ran after the actual index it was purging was already closed / deleted and that re-created that index. Closes #5766 15 April 2014, 10:43:39 UTC
296b87e Separate benchmark API endpoints Separates benchmark API endpoints into separate files according to API funtionality. This makes it easier for our tests and clients. Closes #5787 15 April 2014, 03:35:24 UTC
83a330d Fix snapshot status with empty repository The snapshot status command with empty repository should return current status of currently running snapshots in all repositories. Fixes #5790 14 April 2014, 23:27:47 UTC
5a8b4d3 Benchmark documentation Moving benchmark documentation under the search section. Closes #5786 14 April 2014, 21:23:04 UTC
c52a304 Separate persistent and global metadata serialization settings 14 April 2014, 20:25:21 UTC
82ce2d2 [BUILD] remove leftover print statement 14 April 2014, 20:22:51 UTC
bb6faab Remove unused FileSystemUtils#copyFile 14 April 2014, 19:50:15 UTC
443ab1a Prevent fsync from creating 0-byte files This is related to LUCENE-5570 where fsync creates a 0-byte file if the file does not exists. This commit adds the patched lucene version using Java 7 APIs as well as a note to replace this method with the upcomeing IOUtils#fsync in Lucene 4.8 This commit cleans up FsImmutableBlobContainer#writeBlob to make use of Java7 Auto-Closing features and ensures that the directory the blob was written to is fsynced as well if possible. 14 April 2014, 19:50:09 UTC
3e55468 Check for no open issues before build release 14 April 2014, 16:54:41 UTC
8f16733 Upgrade to Lucene 4.7.2 14 April 2014, 16:45:40 UTC
d40394f Improved SearchContext.addReleasable. For resources that have their life time effectively defined by the search context they are attached to, it is convenient to use the search context to schedule the release of such resources. This commit changes aggregations to use this mechanism and also introduces a `Lifetime` object that can be used to define how long the object should live: - COLLECTION: if the object only needs to live during collection time and is what SearchContext.addReleasable would have chosen before this change (used for p/c queries), - SEARCH_PHASE for resources that only need to live during the current search phase (DFS, QUERY or FETCH), - SEARCH_CONTEXT for resources that need to live until the context is destroyed. Aggregators are currently registed with SEARCH_CONTEXT. The reason is that when using the DFS_QUERY_THEN_FETCH search type, they are allocated during the DFS phase but only used during the QUERY phase. However we should fix it in order to only allocate them during the QUERY phase and use SEARCH_PHASE as a life time. Close #5703 14 April 2014, 15:49:34 UTC
fb04c85 Make Releasable extend AutoCloseable. Java7's AutoCloseable allows to manage resources more nicely using try-with-resources statements. Since the semantics of our Releasable interface are very close to a Closeable, let's switch to it. Close #5689 14 April 2014, 15:24:25 UTC
a67eb38 equals()/hashCode() & tests for ByteArrays to avoid materializing a full byte[]. Fixes #5435 14 April 2014, 15:24:10 UTC
84e2c4c [TEST] Use indexRandom in ShardSizeTests. 14 April 2014, 10:33:21 UTC
ea633a2 Revert "Don't lookup version for auto generated id and create" This reverts commit b55020474d588586c6f962d436b502f5204fd9f3. 14 April 2014, 10:15:42 UTC
b550204 Don't lookup version for auto generated id and create When a create document is executed, and its an auto generated id (based on UUID), we know that the document will not exists in the index, so there is no need to try and lookup the version from the index. For many cases, like logging, where ids are auto generated, this can improve the indexing performance, specifically for lightweight documents where analysis is not a big part of the execution. 14 April 2014, 08:07:26 UTC
7b94b0e [DOCS] update old status of plugins 14 April 2014, 00:17:00 UTC
b8cd9d8 [TEST] Fix ClusterStatsTests#testValuesSmokeScreen to wait for yellow to get reliable FS stats. 12 April 2014, 21:02:14 UTC
da277b3 [TEST] use a real upperbound for the check on the time spend during suggestions 12 April 2014, 19:55:07 UTC
9e7348c [Test] should be abstract 12 April 2014, 14:15:29 UTC
81ed288 [TEST] Improve performance of MockBigArray MockPageRecycler 12 April 2014, 08:10:43 UTC
462e2c1 Ensure pending merges are updated on segment flushes Due to the default of `async_merge` to `true` we never run the merge policy on a segment flush which prevented the pending merges from being updated and that caused actual pending merges not to contribute to the merge decision. This commit also removes the `index.async.merge` setting is actually misleading since we take care of merges not being excecuted on the indexing threads on a different level (the merge scheduler) since 1.1. This commit also adds an additional check when to run a refresh since soely relying on the dirty flag might leave merges un-refreshed which can cause search slowdowns and higher memory consumption. Closes #5779 12 April 2014, 08:10:43 UTC
b93c003 PR #5706 introduced a bug in the sparse array-backed field data When we load sparse single valued data, we automatically assign a missing value to represent a document who has none. We try to find a value that will increase the number of bits needed to represent the data. If that missing value happen to be 0, we do no properly intialize the value array. This commit solved this problem but also cleans up the code even more to make spotting such issues easier in the future. 11 April 2014, 19:56:51 UTC
87328f6 Added awaitFix for SimpleNestedTests.testSortNestedWithNestedFilter While investigating failures 11 April 2014, 16:13:06 UTC
36c8958 Fix typos in percolate.asciidoc Close #5762 #5763 #5764 11 April 2014, 16:07:41 UTC
69e4666 ElasticsearchIllegalStateException when invoking _cat plugins Reproducible using ES 1.1.0. `/_cat/plugins` works fine when no plugins are installed. But once a plugin is installed (eg. latest marvel), it throws an exception indicating that the resulting table constructed has 7 fields in the header row but not enough fields in the data rows to make it a valid table. ``` { "status" : 500, "error" : "ElasticsearchIllegalStateException[mismatch on number of cells 6 in a row compared to header 7]" } ``` This issue has been introduced when we removed `isolation` feature in 1.1 branch. See c34d8bd. Closes #5715 (cherry picked from commit abc453daf368225c4dde8d7d0fb0acdda8644f5f) 11 April 2014, 15:11:46 UTC
04d513c Fixed- PackedArrayIndexFieldData.chooseStorageFormat compared to Long.MAX_VALUE instead of Long.MIN_VALUE Also made the LongFieldDataTests.SINGLE_VALUED_SPARSE_RANDOM & LongFieldDataTests.MULTI_VALUED_SPARSE_RANDOM more sparse 11 April 2014, 14:41:37 UTC
0659515 Added a AppendingDeltaPackedLongBuffer-based storage format to single value field data The AppendingDeltaPackedLongBuffer uses delta compression in paged fashion. For data which is roughly monotonic this results in reduced memory signature. By default we use the storage format expected to use the least memory. You can force a choice using a new field data setting `memory_storage_hint` which can be set to `ORDINALS`, `PACKED` or `PAGED` Closes #5706 11 April 2014, 13:56:51 UTC
4c8e4c5 Strengthening pseudo random number generator and adding tests to verify its behavior. Closes #5454 and #5578 11 April 2014, 12:03:51 UTC
49bf4ad Each search request should use a new InternalSearchResponse instance even in case when all shards return no hits. The InternalSearchResponse may get modified afterwards, so a new instance required at all times. 11 April 2014, 10:46:39 UTC
967301d [TEST] Prevent TTLPurger from recreating deleted index Related to #5766 11 April 2014, 07:05:23 UTC
e4b86e0 Ignored clear scroll rest test 11 April 2014, 06:49:36 UTC
78a9781 The clear scroll apis now optionally accepts a scroll_id in it body. Closes #5726 11 April 2014, 03:52:04 UTC
cab8c70 Fixed an where a nested `nested` aggregation falls outside of its parent `nested` aggregation bounds. The nested `nested` aggs now gets the proper parent docs that define its bounds correctly. Closes #5728 11 April 2014, 03:17:13 UTC
403508f [DOCS] Added tables and fixes to upgrade.asciidoc, fixed version in README.textile Author: Sean Gallagher Date: 10 Apr 2014 15:23 EDT 10 April 2014, 19:30:03 UTC
3d5024b [Docs] Add experimental highlighter plugin 10 April 2014, 17:39:55 UTC
11dc8b6 Added test with AwaitsFix annotation that simulates a split brain. 10 April 2014, 13:14:43 UTC
6125808 Use startNodesAsync in more tests 10 April 2014, 13:03:02 UTC
c6ebdde Update Eclipse configuration to Java 1.7. 10 April 2014, 09:43:55 UTC
f8a4948 [TESTS] Add more assertSearchResponse to aggregations tests. 10 April 2014, 09:35:22 UTC
0258568 [TEST] Allow higher ClusterHealthTimeout on tests if configuration is slow 10 April 2014, 08:49:46 UTC
4cbff41 Fix _bench endpoint specs to have the body on the right level in the json object 09 April 2014, 21:17:35 UTC
8a775bf Add better error reporting to RestApiParser if assertions are tripped 09 April 2014, 21:17:28 UTC
822b1c0 Benchmark API Add an API endpoint at /_bench for submitting, listing, and aborting search benchmarks. This API can be used for timing search requests, subject to various user-defined settings. Benchmark results provide summary and detailed statistics on such values as min, max, and mean time. Values are reported per-node so that it is easy to spot outliers. Slow requests are also reported. Long running benchmarks can be viewed with a GET request, or aborted with a POST request. Benchmark results are optionally stored in an index for subsequent analysis. Closes #5407 09 April 2014, 20:41:59 UTC
1f40aaf [Docs] Allocation setting explanation Closes #5748 09 April 2014, 18:12:05 UTC
33812ee Fix format string for DiskThresholdDecider reroute explanation 09 April 2014, 15:17:24 UTC
e7b50bd [TEST] MLT Rest test needs a mapping since we randomized number of nodes/shards 09 April 2014, 09:45:40 UTC
0762ad1 [TEST] RecoveryWhileunderLoadTests sometimes need higher timeouts In some cases when we have a lot of docs with lots of shards recovery takes longer than 1m causing the tests to fail before all shards are recovered. This commit raises the timeout in this test to 5m max while it's rarely needed. This commit also adds an assertion to ElasticsearchAssertions that ensures that the cluster health requests are not hitting a timeout. 09 April 2014, 09:39:22 UTC
b4250b8 [Test] recoverWhileRelocating: Increase timeout while waiting for shards to replicate. 08 April 2014, 18:57:29 UTC
d91ace1 Fix P/C assertions for rewrite reader Inner queries must be rewritten as soon as a weight is pulled ie. must be non-null. Closes #5731 08 April 2014, 15:48:57 UTC
f94e98e [TEST] Fix testRandomDirectoryIOExceptions to wait for green on reopen & add more assertions 08 April 2014, 15:46:29 UTC
626093e Revert "[TEST] Log where locks are created from if they are still open on close()" This reverts commit c263c28ebde7ef78656ea97b6e62e8b143a2d9c5. 08 April 2014, 14:18:40 UTC
c263c28 [TEST] Log where locks are created from if they are still open on close() 08 April 2014, 13:14:29 UTC
d379b85 [TEST] Wait for LANGUID events to be processed before pulling stats 08 April 2014, 10:53:47 UTC
6d22e8c Failed shards could be re-assigned to the same nodes if multiple replicas failed at once After a shard fails on a node we assign a new replica on another node. This is important in order to avoid failing again due to node specific problems. In the rare case where two different replicas of the same shard failed in a short time span, we may fail to do so and assign one of them back to the node it's currently on. This happens if both shard failed events are processed within the same batch on the master. Closes #5725 08 April 2014, 10:12:01 UTC
1d479a3 [TEST] Add more randomization to bulk tests 08 April 2014, 09:39:05 UTC
81d3127 [TEST] make BulkTest more robust if test infra is slow 08 April 2014, 09:38:56 UTC
3087d2a Text Query has been replaced by Match Query Closes #5727. (cherry picked from commit 0cebbf1) 08 April 2014, 08:57:58 UTC
d60b3bd [TEST] use no replicas in MLT tests - doc mappers need to be present on all nodes 08 April 2014, 08:08:08 UTC
3fc8179 [BUILD] Remove site dependencies generation Removed dependencies library generation. It stalls Jenkins static analysis job 07 April 2014, 23:03:13 UTC
90d58c1 Fixes typo in "Scan" search type documention 07 April 2014, 21:47:39 UTC
0d10844 [TEST] return the correct transport instance in mock transport 07 April 2014, 20:35:17 UTC
9e7c81a Rename successulOps to successfulOps in TransportSearchTypeAction 07 April 2014, 20:16:02 UTC
073aa89 Make sure successful operations are correct if second phase is fast In TransportSearchTypeAction we need to increment successful ops first before we increment and compare the exit condition otherwise if we are fast we could concurrently update totalOps but then preempt one of the threads which can cause the successor to read a wrong value from successfulOps if second phase is very fast ie. searchType == count etc. This can cause wrong success stats in the search response. 07 April 2014, 20:15:56 UTC
e2a72e8 [TEST] Be more verbose if ClusterStatsTests fails 07 April 2014, 20:13:28 UTC
f9cac9c Author: Sean Gallagher Date: Tue Apr 1 12:28:00 2014 Added upgrade.asciidoc and links to it from setup.asciidoc Author: Sean Gallagher Date: Apr 1 2014 Added upgrade.asciidoc Add upgrade instructions Author: Sean Gallagher Date: 4/4/14 Closes issue #5651 Fixed upgrade.asciidoc typo and incorrect usage. Author: Sean Gallagher Date: 4 Apr 2014 Closes 5651 07 April 2014, 19:04:46 UTC
9bbb32d Rename readPrimitive*Array()/writePrimitive*Array() methods Make method names shorter and easier to read. Closes #5711 07 April 2014, 18:22:55 UTC
e79cddf Update LongHash to work like BytesRefHash. - rename "key" to "get" - update and add more tests Closes #5693 07 April 2014, 18:10:06 UTC
ab29020 Make writePrimitive*() and readPrimitive*() methods public. These utility methods are useful for client code to read/write arrays of primitive types. 07 April 2014, 17:54:27 UTC
be97f44 [TEST] specified number_of_shards 5 to make sure the two docs end up in different shards that can be refreshed separately 07 April 2014, 17:01:53 UTC
105ace2 [TEST] null out static resources in base test classes 07 April 2014, 16:18:01 UTC
8665671 [TEST] Replaced RestTestSuiteRunner with parametrized test that uses RandomizedRunner directly ElasticsearchRestTests extends now ElasticsearchIntegrationTest and makes use of our ordinary test infrastructure, in particular all randomized aspects now come for free instead of having to maintain a separate (custom) tests runner We previously parsed only the tests that needed to be run given the version of the cluster the tests are running against. This doesn't happen anymore as it didn't buy much and it would be harder to support as the tests get now parsed before the test cluster gets started. Thus all the tests are now parsed regardless of their skip sections, afterwards the ones that don't need to be run will be skipped through assume directives. Fixed REST tests that rely on a specific number of shards as this change introduces also random number of shards and replicas (through randomIndexTemplate) Closes #5654 07 April 2014, 15:14:13 UTC
5156c3e Recycled bytes in http + rest layer refactoring phase 2 Refactor the rest layer handlers to simplify common code paths (like handling) failures, and introduce optional (enabled for netty) rest channel bytes recycling 07 April 2014, 14:35:13 UTC
347994b Update advanced-scripting.asciidoc 07 April 2014, 13:20:15 UTC
98b3b7f Aggregation cleanup - consolidated value source parsing under a single parser that is reused in all the value source aggs parsers - consolidated include/exclude parsing under a single parser - cleaned up value format handling, to have consistent behaviour across all values source aggs 07 April 2014, 12:35:00 UTC
f080237 Update link to puppet module and remove link to other RPM repo as we have our own. 07 April 2014, 12:28:24 UTC
966a55f Fix typo and add more clients 07 April 2014, 12:21:41 UTC
back to top