summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/main
Commit message (Collapse)AuthorAgeFilesLines
* Allow client to pass custom operationIdHarshil Shukla2019-04-301-6/+5
|
* Allow client to pass custom operationIdHarshil Shukla2019-04-301-3/+8
|
* Don't import deprecated classesJon Bratseth2019-04-261-2/+1
|
* Revert "Merge pull request #9192 from ↵Jon Bratseth2019-04-269-37/+58
| | | | | | | vespa-engine/revert-9190-bratseth/deprecate-httclient-session-take-2" This reverts commit 27556c9d444c4dca0aca017867c37f4a12a74845, reversing changes made to c864dcc1ac77737cf0ea186936add644f30cb364.
* Revert "Bratseth/deprecate httclient session take 2"Henning Baldersheim2019-04-269-58/+37
|
* Don't import deprecated classJon Bratseth2019-04-251-2/+1
|
* Revert "Merge pull request #9188 from ↵Jon Bratseth2019-04-259-35/+57
| | | | | | | vespa-engine/revert-9183-bratseth/deprecate-httpclient-session" This reverts commit a21f0b780458f792dc7e30c134d917fa60d72d02, reversing changes made to 59effeb20e153dd4c00eaf071f288d19b15d455d.
* Revert "Bratseth/deprecate httpclient session"Harald Musum2019-04-259-57/+35
|
* Deprecate Session and SessionFactoryJon Bratseth2019-04-259-35/+57
| | | | | | These API's are not mentioned in the doc, are not needed given the FeedClient and SycFeedClient API's, and I haven't encountered any usage in the wild for a long time.
* Improve JavadocJon Bratseth2019-04-251-36/+46
|
* Only command line has a default of 4, programatic usage has a default of 1.Henning Baldersheim2019-04-111-1/+1
|
* Let default be 4 for command line invocation.Henning Baldersheim2019-04-112-2/+2
|
* Change default persisted connections down to 1Jo Kristian Bergum2019-04-042-3/+2
|
* Client-side modules should be compilable with jdk8Jon Bratseth2019-03-291-1/+1
|
* Revert "Revert "Bratseth/remove dependencies" (#8885)"Jon Bratseth2019-03-2313-32/+18
| | | | This reverts commit 9379e425712abe71fcd2f406c139baf25a017108.
* Revert "Bratseth/remove dependencies" (#8885)Harald Musum2019-03-2213-18/+32
|
* Remove testutils dependencyJon Bratseth2019-03-226-15/+0
|
* Remove vespajlib dependencyJon Bratseth2019-03-222-2/+2
|
* Remove component dependencyJon Bratseth2019-03-222-3/+9
|
* Remove dependency on Vespa annotationsJon Bratseth2019-03-223-12/+7
|
* Ignore fields that are not serializableBjørn Christian Seime2019-03-142-3/+2
|
* Rename header 'Vespa-Http-Client-Version' -> 'Vespa-Client-Version'Bjørn Christian Seime2019-02-011-1/+1
|
* Add client version as header to all http requestsBjørn Christian Seime2019-01-312-1/+5
|
* Nonfunctional changes onlyJon Bratseth2019-01-241-3/+2
|
* Handle multiple results per document in a sync batchJon Bratseth2019-01-231-0/+17
|
* Do TODOsJon Bratseth2019-01-231-1/+0
|
* Remove traces of protocol version 2 from internal http feeder.Tor Egge2019-01-231-1/+1
|
* Remove support for vespa http client protocol v2. Always use protocol v3.Tor Egge2019-01-235-48/+8
|
* Switch default data format for vespa http client to json.Tor Egge2019-01-231-1/+1
|
* Remove deprecated APIs.Geir Storli2019-01-233-34/+0
|
* Add more javadocJon Bratseth2019-01-171-1/+3
|
* Remove dead codeJon Bratseth2019-01-161-18/+0
|
* Handle multiple results per document in a sync batchJon Bratseth2019-01-166-34/+58
|
* ThreadLocalRandom is recommended over Random in multithreaded environments, ↵Håkon Hallingstad2018-12-202-7/+5
| | | | try 2
* Specify typeJon Bratseth2018-12-061-2/+1
|
* Add simple sync wrapper clientJon Bratseth2018-12-056-21/+205
|
* Print warning if deprecated option is given to vespa http client.Tor Egge2018-11-021-3/+13
|
* Merge pull request #7500 from vespa-engine/bratseth/improve-result-toStringJon Bratseth2018-10-311-3/+3
|\ | | | | Space toString fields
| * Avoid double spacaes all across the skyJon Bratseth2018-10-311-2/+2
| |
| * Space toString fieldsJon Bratseth2018-10-311-3/+3
| |
* | Throw if document ID is missingValerij Fredriksen2018-10-301-12/+23
|/
* Use a thread group to avoid any iothreads bumping into a throttled Q.Henning Baldersheim2018-10-184-6/+14
|
* Merge pull request #7347 from vespa-engine/balder/avoid-deadlocking-yourselfJon Bratseth2018-10-182-3/+3
|\ | | | | Balder/avoid deadlocking yourself
| * If posting to self, the Q will be unboundedHenning Baldersheim2018-10-171-1/+1
| |
| * Add a parameter that will make the Q unbounded if producer == consumer.Henning Baldersheim2018-10-172-3/+3
| | | | | | | | The purpose is to avoid deadlocking with yourself.
* | Avoid holding the global monitor lock while sending blocked document.Henning Baldersheim2018-10-171-5/+9
|/ | | | Holding the global lock will trying to put on a full Q is doomed to deadlock with another IOThread.
* Merge pull request #7328 from ↵Jon Bratseth2018-10-162-13/+22
|\ | | | | | | | | vespa-engine/jvenstad/fix-bug-in-feed-client-close-logic Look at oldest send operation, rather than number of running ones
| * Address reviewJon Marius Venstad2018-10-162-6/+6
| |
| * Look at oldest send operation, rather than number of running onesJon Marius Venstad2018-10-162-11/+20
| |
* | Increase timeout on closing feed clientJon Marius Venstad2018-10-161-1/+1
|/