summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Automatic commit of package [vespa] release [6.248.120-1].vespa-6.248.120-1by-screwdriver2018-06-184-1/+2
| | | | | | Created by command: /usr/bin/tito tag --use-version=6.248.120 --no-auto-changelog
* Merge pull request #6217 from vespa-engine/balder/multiple-threads-in-mbusHenning Baldersheim2018-06-158-24/+84
|\ | | | | Balder/multiple threads in mbus
| * Use std::max, and do it on the correct place.Henning Baldersheim2018-06-152-2/+2
| |
| * Control threadpool and dispatch of encode/decode by config.Henning Baldersheim2018-06-157-18/+70
| |
| * Use multiple threads for handling requests, if allowed.Henning Baldersheim2018-06-152-8/+16
| |
* | Merge pull request #6215 from vespa-engine/hakonhall/warn-on-timeoutHåkon Hallingstad2018-06-151-1/+1
|\ \ | | | | | | Warn on timeout
| * | Warn on timeoutHåkon Hallingstad2018-06-151-1/+1
| |/
* | Merge pull request #6201 from vespa-engine/mpolden/back-off-failed-job-retryMartin Polden2018-06-1511-261/+460
|\ \ | | | | | | Back off when retrying failing jobs
| * | Always run job if targets changeMartin Polden2018-06-154-52/+107
| | |
| * | Back off when retrying failing jobsMartin Polden2018-06-147-35/+89
| | |
| * | Move deployment spec helper methods to DeploymentStepsMartin Polden2018-06-144-74/+103
| | |
| * | Rename DeploymentOrder -> DeploymentStepsMartin Polden2018-06-134-26/+30
| | |
| * | Pull up Versions classMartin Polden2018-06-132-72/+129
| | |
* | | Merge pull request #6190 from vespa-engine/lesters/random-normal-matchGeir Storli2018-06-159-46/+275
|\ \ \ | | | | | | | | Add randomNormal.match
| * | | Use correct seed and don't use spare for randomNormalStableLester Solbakken2018-06-153-13/+16
| | | |
| * | | Rename feature randomNormalMatch -> randomNormalStableLester Solbakken2018-06-156-37/+37
| | | |
| * | | Move match version of random normal to it's own featureLester Solbakken2018-06-149-57/+217
| | | |
| * | | Remove unnecessary logging in unit testLester Solbakken2018-06-141-2/+0
| | | |
| * | | Fix random normal match testLester Solbakken2018-06-142-8/+31
| | | |
| * | | Refactor out normal distributed random generatorLester Solbakken2018-06-143-48/+65
| | | |
| * | | Pass random generator by referenceLester Solbakken2018-06-141-1/+1
| | | |
| * | | Add match to output in randomNormal testLester Solbakken2018-06-131-1/+1
| | | |
| * | | Add randomNormal.matchLester Solbakken2018-06-133-13/+41
| | | |
* | | | Merge pull request #6206 from vespa-engine/bjorncs/zts-clientBjørn Christian Seime2018-06-1521-154/+386
|\ \ \ \ | |_|_|/ |/| | | Bjorncs/zts client
| * | | Store CA certificates to diskBjørn Christian Seime2018-06-151-14/+35
| | | |
| * | | Add temporary workaround for missing path in zts uriBjørn Christian Seime2018-06-151-1/+1
| | | |
| * | | Replace use of AthenzCertificateClient with DefaultZtsClientBjørn Christian Seime2018-06-153-83/+28
| | | |
| * | | Add method to ZtsClient to retrieve identity certificateBjørn Christian Seime2018-06-1518-57/+323
| | | |
* | | | Merge pull request #6214 from ↵Henning Baldersheim2018-06-152-76/+67
|\ \ \ \ | |/ / / |/| | | | | | | | | | | vespa-engine/balder/avoid-redeserialization-of-documentid Only deserialize the docId on the initial deserialize of the header.
| * | | Reuse common codeHenning Baldersheim2018-06-151-4/+2
| | | |
| * | | Only deserialize the docId on the initial deserialize of the header.Henning Baldersheim2018-06-142-76/+69
| | | | | | | | | | | | | | | | Just skip and verify on subsequent invocations.
* | | | Merge pull request #6209 from ↵Jon Bratseth2018-06-151-11/+11
|\ \ \ \ | |/ / / |/| | | | | | | | | | | vespa-engine/hakonhall/only-count-time-with-no-threads-available Only count time with no threads available
| * | | Change field nameJon Bratseth2018-06-151-3/+3
| | | |
| * | | Only count time with no threads availableHåkon Hallingstad2018-06-141-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Found this edge-case with logAndDie in ThreadPoolProvider: - A Runnable executes and finishes at time T0 - No Runnables execute for a long time t > maxThreadExecutionTimeSeconds - At time T1 = T0 + t, a bursts of Runnables N > maxthreads arrives such that the (maxthreads+1) Runnable will be tried executed and rejected before any of the first maxthreads Runnables finish. - Then, logOrDie will be called immediately. That is, a sufficiently silent period followed by a burst of Runnables cause the process to die. This PR will make sure that the process dies only if maxThreadExecutionTimeSeconds seconds pass with no available threads, like the documentation says. I found this as I was looking for reasons why the Cluster Controller have had logAndDie problems. The CC has maxthreads of 10, and was getting bursts of 6-8 of a particular request type (reduced in PR 6207).
* | | | Merge pull request #6202 from ↵Henning Baldersheim2018-06-1430-273/+141
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | vespa-engine/balder/remove-version-and-avoid-going-between-nbostrea-and-bytebuffer Balder/remove version and avoid going between nbostrea and bytebuffer
| * | | | Update commentsHenning Baldersheim2018-06-145-17/+7
| | | | |
| * | | | Update after comments from @vekterliHenning Baldersheim2018-06-1415-65/+26
| | | | |
| * | | | ByteBuffer -> nbostreamHenning Baldersheim2018-06-149-36/+30
| | | | |
| * | | | Remove unused versionHenning Baldersheim2018-06-1411-32/+19
| | | | |
| * | | | Remove unused version from apiHenning Baldersheim2018-06-1418-50/+34
| | | | |
| * | | | ByteBuffer -> nbostreamHenning Baldersheim2018-06-1418-120/+72
| | | | |
* | | | | Merge pull request #6213 from ↵Henning Baldersheim2018-06-147-70/+356
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | vespa-engine/geirst/validate-complex-attribute-fields-in-config-model Geirst/validate complex attribute fields in config model
| * | | | | Validate that complex fields that have struct field attributes are supported.Geir Storli2018-06-144-0/+160
| | | | | | | | | | | | | | | | | | | | | | | | This only applies for indexed search clusters.
| * | | | | Use document type to resolve struct data types when checking whether a ↵Geir Storli2018-06-144-70/+196
| | | | | | | | | | | | | | | | | | | | | | | | complex field supports being represented as struct field attributes.
* | | | | | Merge pull request #6212 from vespa-engine/bjorncs/fix-keystore-passwordBjørn Christian Seime2018-06-141-2/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | Set password when creating key entry
| * | | | | | Set password when creating key entryBjørn Christian Seime2018-06-141-2/+3
| | | | | | |
* | | | | | | Merge pull request #6211 from vespa-engine/bjorncs/enable-write-access-var-vespaBjørn Christian Seime2018-06-141-0/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Allow container to write to var/vespa
| * | | | | | Allow container to write to var/vespaBjørn Christian Seime2018-06-141-0/+1
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #6210 from vespa-engine/bjorncs/node-identifier-filter-fixBjørn Christian Seime2018-06-142-0/+23
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Allow bare metal tenant nodes with Calypso certificate
| * | | | | Allow bare metal tenant nodes with Calypso certificateBjørn Christian Seime2018-06-142-0/+23
|/ / / / /