summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo
Commit message (Collapse)AuthorAgeFilesLines
* Correct anonymous subtype resolvingJon Bratseth2020-05-112-29/+54
| | | | | - If an anonymous subtype is resolved, let it go out of scope when nesting - Validate rather than ignoring all parameters in the query API
* Nonfunctional changesJon Bratseth2020-05-082-4/+3
|
* Update StemmingSearcher after rebasing to master.gjoranv2020-04-251-4/+4
|
* Use correct log Level class where search & replace has failed.gjoranv2020-04-251-1/+1
|
* Replace remaining LogLevel.<level> with corresponding Levelgjoranv2020-04-251-5/+5
|
* Map remaining DEBUG/SPAM/ERROR/FATAL -> Level.FINE/FINEST/SEVEREgjoranv2020-04-251-2/+2
|
* LogLevel -> Level for isLoggable()gjoranv2020-04-253-12/+12
|
* LogLevel.ERROR -> Level.SEVEREgjoranv2020-04-253-4/+4
|
* LogLevel.WARNING -> Level.WARNINGgjoranv2020-04-256-6/+6
|
* LogLevel.SPAM -> Level.FINESTgjoranv2020-04-251-4/+4
|
* LogLevel.DEBUG -> Level.FINEgjoranv2020-04-256-14/+14
|
* Import java.util.logging.Level instead of com.yahoo.log.LogLevelgjoranv2020-04-2515-15/+15
|
* Merge pull request #13050 from vespa-engine/arnej/debug-stemming-cainJon Bratseth2020-04-241-0/+13
|\ | | | | add more tracing and debug logging of stemming
| * Apply suggestions from code reviewArne H Juul2020-04-241-2/+2
| | | | | | Co-Authored-By: Jon Bratseth <bratseth@oath.com>
| * add more tracing and debug logging of stemmingArne Juul2020-04-241-0/+13
| |
* | Increase streaming search timeout trace sampling probabilitiesTor Brede Vekterli2020-04-221-6/+6
|/
* Propagate relevance even if sorting is used.Henning Baldersheim2020-04-162-8/+4
|
* isWorking is tri-stateJon Bratseth2020-04-161-1/+1
|
* Merge pull request #12918 from vespa-engine/balder/top-k-probabilityHenning Baldersheim2020-04-164-1/+66
|\ | | | | Introduce top-k-probability and use it to fetch correct proper amount…
| * Add copyright too.Henning Baldersheim2020-04-151-0/+1
| |
| * Use camelcaseHenning Baldersheim2020-04-151-1/+1
| |
| * Add query control of top-k-probability.Henning Baldersheim2020-04-154-7/+34
| |
| * Make SearchCluster.TopKEstimator a top level class.Henning Baldersheim2020-04-152-25/+33
| |
| * Introduce top-k-probability and use it to fetch correct proper amount of ↵Henning Baldersheim2020-04-152-1/+30
| | | | | | | | hits from each partition
* | Don't avoid group blocking feed when groups = 1Jon Bratseth2020-04-151-1/+2
| |
* | Avoid a single group rejecting feedJon Bratseth2020-04-157-40/+61
|/
* Merge pull request #12902 from vespa-engine/bratseth/faster-qp-compilingJon Bratseth2020-04-157-59/+47
|\ | | | | Bratseth/faster qp compiling
| * Nonfunctional changes onlyJon Bratseth2020-04-143-3/+3
| |
| * Shortcut corner casesJon Bratseth2020-04-142-34/+16
| |
| * Create context map lazilyJon Bratseth2020-04-142-20/+22
| |
| * Skip redundant variantsJon Bratseth2020-04-141-4/+6
| |
| * Compute string on the flyJon Bratseth2020-04-141-0/+2
| |
* | Verify that predicate fields are not used with non-predicate operatorsBjørn Christian Seime2020-04-141-13/+29
| |
* | Add 'predicate' as index command to all predicate fieldsBjørn Christian Seime2020-04-141-0/+7
|/
* Copy the grouping expression stringJon Bratseth2020-04-011-4/+5
|
* Revert "Revert "Revert "Revert "Don't take combined clusters of size 1 down""""Jon Bratseth2020-03-261-5/+8
|
* Revert "Revert "Revert "Don't take combined clusters of size 1 down"""Jon Bratseth2020-03-261-8/+5
|
* Revert "Revert "Don't take combined clusters of size 1 down""Jon Bratseth2020-03-251-5/+8
|
* Revert "Don't take combined clusters of size 1 down"Harald Musum2020-03-251-8/+5
|
* remove debug printlnArne Juul2020-03-251-1/+0
|
* Don't take combined clusters of size 1 downJon Bratseth2020-03-251-5/+8
| | | | | | | | | | | | | | | | This can lead to a deadlock: - host-admin needs to suspend node before it reduces the CPU allocation - suspension means setting storage node in maintenance, distributor down - cluster controller figures this means the cluster is down - the container on the same node (being a combined cluster) receives report from the downstream storage node of being offline, and changes its /state/v1/health to down - being a combined cluster node w/container, the host-admin must verify /health/v1/status is UP before allowing resume, which it isn't We have no good options when the content node is down and size is 1, and do not much care about availability in this case by definition, so keeping the container in rotation should be fine.
* Non-functional changes onlyJon Bratseth2020-03-245-69/+38
|
* Non-functional changes onlyJon Bratseth2020-03-231-2/+2
|
* allow arbitrarily large radiusArne Juul2020-03-172-3/+5
| | | | | * also, take negative radius to mean "infinitely" large * also, fix default for pos.xy case to be same as pos.ll case.
* Validate before prepare to avoid depending on the properties APIJon Bratseth2020-03-111-73/+19
|
* Non-functional changes onlyJon Bratseth2020-03-091-18/+15
|
* GC unused importsHenning Baldersheim2020-03-061-6/+0
|
* Merge pull request #12484 from vespa-engine/balder/warmup-lz4Henning Baldersheim2020-03-061-0/+24
|\ | | | | Add JIT warmup of lz4.
| * Let the implementation decide what kind of warmup is needed.Henning Baldersheim2020-03-061-14/+8
| |
| * Add JIT warmup of lz4.Henning Baldersheim2020-03-061-0/+30
| |