aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #282 from yahoo/toregge/safer-lid-space-compactionGeir Storli2016-07-011-2/+2
|\ | | | | Reduce docid limit in feed view before reducing it for each
| * Reduce docid limit in feed view before reducing it for eachTor Egge2016-07-011-2/+2
| | | | | | | | | | attribute in order to prevent new searches from using too high old docid limit on newly shrunk attribute vectors.
* | ignore generated binaryHaavard2016-07-011-0/+1
|/
* use shorter timeout for something we do not expect to happenHaavard2016-07-011-1/+1
|
* Merge pull request #270 from yahoo/balder/check-if-config-is-readyHenning Baldersheim2016-06-301-0/+7
|\ | | | | Balder/check if config is ready
| * Check that config system is up before commencing.Henning Baldersheim2016-06-301-0/+7
| |
* | Change settings for conservative mode in memory flush strategy from absolute ↵Geir Storli2016-06-303-37/+40
| | | | | | | | | | | | to relative. Also choose conservative value for memory usage by a single flush component (each.maxmemory).
* | Add low watermark for when to go back from conservative to normal mode for ↵Geir Storli2016-06-308-39/+178
| | | | | | | | memory flush strategy.
* | Add class that listens to changes in disk/memory usage and updates config ↵Geir Storli2016-06-3012-46/+256
| | | | | | | | used by memory flush strategy.
* | Merge pull request #242 from yahoo/havardpe/avoid-unbound-internal-thread-queuesTor Egge2016-06-303-4/+11
|\ \ | |/ |/| use blocking executors with task limit for internal indexing threads
| * use blocking executors with task limit for internal indexing threadsHaavard2016-06-283-4/+11
| |
* | Update comment to reflect reality.Henning Baldersheim2016-06-291-2/+2
| |
* | Test that iterator stops, and does not rewind and continue when stop signal ↵Henning Baldersheim2016-06-291-0/+20
| | | | | | | | is ignored.
* | Fix typoHenning Baldersheim2016-06-281-1/+1
| |
* | Do not auto rewind on multiple iterate calls ignoring the done response.Henning Baldersheim2016-06-282-1/+4
| |
* | Merge pull request #239 from ↵Geir Storli2016-06-282-18/+31
|\ \ | | | | | | | | | | | | yahoo/toregge/stop-bucket-move-job-when-memory-is-full Stop bucket move maintenance job when memory usage is above limit.
| * | Split into separate tests for disk and memory limit.Tor Egge2016-06-281-27/+30
| | | | | | | | | | | | Move common code to fixture method.
| * | Stop bucket move maintenance job when memory usage is above limit.Tor Egge2016-06-282-2/+12
| | |
* | | no need for magic incantation (#252)Arne H Juul2016-06-281-1/+1
| | |
* | | Merge pull request #232 from yahoo/balder/warning-not-errorHåvard Pettersen2016-06-281-4/+4
|\ \ \ | | | | | | | | No need to produce error on this, warning will do.
| * | | No need to produce error on this, warning will do.Henning Baldersheim2016-06-281-4/+4
| |/ /
* / / Fail test scripts on first error (#194)Vegard Sjonfjell2016-06-288-0/+8
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fail test scripts on first error * Some more test fixes * Reverted prod_features_test fix * Re-added prod_features_test.sh change matching that of PR #193 * More error checking * Reverted set -e on failing tests * Enable errexit in lowercasing test
* | Merge pull request #223 from ↵Geir Storli2016-06-2819-12/+357
|\ \ | | | | | | | | | | | | yahoo/toregge/stop-bucket-move-job-when-disk-is-full Stop bucket move maintenance job when disk is full.
| * | Improve comments and remove unused code.Tor Egge2016-06-272-2/+6
| | |
| * | Stop bucket move maintenance job when disk is full.Tor Egge2016-06-2719-12/+353
| |/
* / use cmathArne Juul2016-06-272-1/+3
|/ | | | | * avoid using #include <math.h> * add std:: namespace prefix when calling <cmath> functions
* Merge pull request #152 from ↵Henning Baldersheim2016-06-2414-44/+95
|\ | | | | | | | | yahoo/balder/ensure-visiting-is-sane-even-when-readconsistency-is-not-strong Balder/ensure visiting is sane even when readconsistency is not strong
| * Holding the lidlimit is mandatory.Henning Baldersheim2016-06-241-3/+3
| |
| * Add test for upholding the docid limit.Henning Baldersheim2016-06-241-3/+30
| |
| * Remove test that does not make sense anymore.Henning Baldersheim2016-06-241-11/+0
| |
| * remove optimization that is handled at a higher level.Henning Baldersheim2016-06-241-3/+1
| |
| * Keep the limiting inside the matcher that does most of the other stuff too. ↵Henning Baldersheim2016-06-231-4/+8
| | | | | | | | It is also necessary to uphold the limit inside the matcher.
| * Follow API change.Henning Baldersheim2016-06-231-1/+1
| |
| * Balanc brackets.Henning Baldersheim2016-06-231-1/+1
| |
| * Make sure everything is implemented.Henning Baldersheim2016-06-232-1/+3
| |
| * Revert initial take on read consitency handlingHenning Baldersheim2016-06-232-38/+19
| |
| * Now the commitAndWait is handled by a wrapped retriever in case ↵Henning Baldersheim2016-06-231-3/+1
| | | | | | | | readconsistency is STRONG
| * Wrap the DocumentRetriever in a CommitAndWaitDocumentRetriver if ↵Henning Baldersheim2016-06-236-7/+25
| | | | | | | | ReadConsistency is STRONG.
| * Revert the commitAndWait stuff.Henning Baldersheim2016-06-237-16/+3
| |
| * Expose a safe docidLimit to use when visitingHenning Baldersheim2016-06-236-4/+15
| |
| * Do an unconditional commitAndWait on iterate.Henning Baldersheim2016-06-227-10/+23
| |
| * free pointer -> std::unique_ptrHenning Baldersheim2016-06-221-3/+3
| |
| * Honour consistency also on zcurve attributes.Henning Baldersheim2016-06-221-6/+14
| |
| * Wire in the consistency.Henning Baldersheim2016-06-221-7/+11
| |
| * Retake guard to ensure that we have not moved.Henning Baldersheim2016-06-222-3/+7
| |
| * Do not go past numDocs..Henning Baldersheim2016-06-221-3/+6
| |
| * We need to hold a read guard on the documentmetastore to avoid lids being ↵Henning Baldersheim2016-06-223-3/+7
| | | | | | | | | | | | reused. See JIRA VESPA-3827.
* | remove redundant ignoring of Testing directoriesHaavard2016-06-231-1/+0
| |
* | ignore filesHaavard2016-06-231-0/+1
| |
* | Move parent pom to toplevel directoryEirik Nygaard2016-06-231-1/+0
|/