aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main
Commit message (Collapse)AuthorAgeFilesLines
* Support direct tensor renderingJon Bratseth2023-01-141-3/+14
|
* Increment metric on parse errors in `/document/v1`Bjørn Christian Seime2023-01-091-4/+9
|
* Don't classify condition-not-met and not-found as successBjørn Christian Seime2023-01-091-2/+4
|
* Revert back to single metric aggregatedBjørn Christian Seime2022-12-071-6/+5
|
* Aggregate 'feed.http-requests' for /document/v1Bjørn Christian Seime2022-12-071-4/+20
|
* Keep 'OK' disjunct for /document/v1 exclusive metricsBjørn Christian Seime2022-12-071-2/+2
|
* Improve metrics for /document/v1Bjørn Christian Seime2022-12-073-30/+58
| | | | Make more consistent with legacy feed api
* Store and display reindexing causejonmv2022-12-071-4/+3
|
* Revert "Bratseth/restore signature"Arnstein Ressem2022-10-201-1/+1
|
* Restore legacy signatureJon Bratseth2022-10-171-1/+1
|
* Support tracing for /document/v1/ visit requestsjonmv2022-10-121-1/+11
|
* Return X-Vespa-Ignored-Fields if fields were ignoredJon Bratseth2022-10-069-107/+97
|
* Disallow dryRun at other paths, and update abi specjonmv2022-08-111-0/+5
|
* Add --speedTest to feed client CLI, and dryRun to /doc/v1jonmv2022-08-111-8/+23
|
* Comment on HTTP 412 - condition not metOla Aunrønning2022-06-161-0/+1
|
* conditionNotMet is not a request errorOla Aunrønning2022-06-151-5/+7
|
* Fix tensor short form for document/v1 visitLester Solbakken2022-06-091-1/+1
|
* Test short format in document/v1Lester Solbakken2022-06-081-6/+11
|
* Set short tensor format as defaultLester Solbakken2022-06-081-1/+1
|
* Remove vespåa-http-client usage part 2Jon Bratseth2022-06-0817-31/+288
|
* Revert "Remove http client use"Jon Bratseth2022-06-0817-2/+1244
| | | | This reverts commit a7fd13540d34de50ed3526576c62eebc476a1e1c.
* Remove http client useJon Bratseth2022-06-0817-1244/+2
|
* Remove on Vespa 8Jon Bratseth2022-06-081-4/+0
|
* Use DocumentOnly-fieldset by defaultTor Brede Vekterli2022-06-081-4/+4
| | | | Also remove deprecated and unsupported header-only visitor parameter
* Flip default from xml to json for incomming feed format.Henning Baldersheim2022-06-081-1/+1
|
* Merge pull request #22781 from vespa-engine/lesters/add-doc-v1-tensor-short-formLester Solbakken2022-05-311-6/+21
|\ | | | | Add tensor short form rendering to document/v1
| * Add tensor short form rendering to document/v1Lester Solbakken2022-05-291-6/+21
| |
* | Revert "uncheck() all checked exceptions"Valerij Fredriksen2022-05-301-3/+3
|/
* uncheck() all checked exceptionsValerij Fredriksen2022-05-251-3/+3
|
* Use '@Inject' from 'annotations' in multiple bundlesBjørn Christian Seime2022-05-062-2/+2
|
* Use com.yahoo.messagebus.Error instead of java.lang.ErrorHenning Baldersheim2022-04-191-2/+2
|
* Use descriptive factory in /document/v1/ as welljonmv2022-04-111-1/+1
|
* Use HttpURL.Path for Path.getRest()Jon Marius Venstad2022-04-061-1/+1
|
* Allow any document id path in /document/v1/Jon Marius Venstad2022-04-061-1/+1
|
* Remove usage of asString() and remove it from PathJon Marius Venstad2022-04-061-3/+5
|
* Deprecate DocumentAPI methods using explicit operation priorityTor Brede Vekterli2022-04-011-1/+2
| | | | | This is functionality that made more sense when we had spinning drives and no async write scheduling in the backend. Going away on Vespa 8.
* Inject DocumentTypeManager into FeedHandlergjoranv2022-03-062-6/+5
|
* No functional changesJon Bratseth2022-03-011-1/+1
|
* Use a typesafe Duration instead of integer milliseondst status.Henning Baldersheim2022-02-251-1/+1
|
* - Use a utility method that recomputes a timeout if VESPA_TIMER_HZ deviates ↵Henning Baldersheim2022-02-251-9/+6
| | | | from the default of 1000hz.
* Remove todoJon Bratseth2022-02-221-1/+0
| | | | We'll let this die so no need.
* add special DocumentOnly fieldset in Java as wellArne H Juul2022-02-151-0/+3
| | | | | | * should have same behavior in Java and C++ * extend unit tests to verify * note various places where we want to change the default on Vespa 8 branch
* Remove dead codeBjørn Christian Seime2022-01-201-16/+1
|
* Cleanup stale clients more frequentlyBjørn Christian Seime2022-01-201-2/+2
| | | | No reason to wait minutes when a client is defined as timed out after 6 seconds inactivity.
* Remove no-opBjørn Christian Seime2022-01-201-1/+0
|
* Improve shutdown logic for ClientFeederV3Bjørn Christian Seime2022-01-202-19/+21
| | | | | | | Remove call to Object.wait(long). This call would always fail since there was no monitor lock on the object being waited on. The 'kill()' method should now longer throw exception and halt kill of subsequent client feeder instances.
* Extend ThreadedHttpReqHndlr instead of deprecated LoggingReqHndlrgjoranv2022-01-173-6/+6
|
* Merge pull request #20678 from ↵Bjørn Christian Seime2022-01-061-1/+2
|\ | | | | | | | | vespa-engine/jonmv/remove-not-found-is-OK-in-metrics Remove not found is OK
| * Remove not found is OKJon Marius Venstad2022-01-061-1/+2
| |
* | handle switch fallthroughArne H Juul2022-01-061-2/+5
|/ | | | | | * rewrite one switch fallthrough where it made more sense to handle the cases separately * suppress one switch fallthrough (it was clearly commented)