Thomas Hjelde Thoresen
Thomas Hjelde Thoresen
A common issue is that for example model downloads cause an Exception in container. **As is:** - If an error is thrown inside the contianer, `VespaDocker` will just periodically poll...
https://github.com/vespa-engine/pyvespa/blob/90d5342eefe9368cf6527fa7a042630e49c179ab/vespa/application.py#L1099C1-L1122C10 Tenacity's default policy is to `retry_if_exception_type`. https://tenacity.readthedocs.io/en/latest/ A 4/5xx-response will in this case never raise an exception, and thus not cause retry.
https://docs.vespa.ai/en/document-v1-api-guide.html#conditional-writes
- [ ] Transfer ownership of repo. - [ ] Include as dependency - [ ] Remove all CLI-downloads - [ ] Make sure all tests pass
I confirm that this contribution is made under the terms of the license found in the root directory of this repository's source tree and that I have the authority necessary...
I confirm that this contribution is made under the terms of the license found in the root directory of this repository's source tree and that I have the authority necessary...
Ref #820. We should update our CI-pipeline, which are run with `[dev]` so that we have locked version of main dependencies, to make sure our tests are run with the...
Most of our examples show only how to get a reference to a `Vespa` app after deploying. For many cases, people want to create a reference to an existing app....
Currently, `environment` and `regions` are the only DeploymentConfiguration params possible to define in pyvespa. Custom instances should at least be supported. Ideally all options defined here: https://cloud.vespa.ai/en/reference/deployment
**Is your feature request related to a problem? Please describe.** Given a rank-profile with several phases, including an ONNX-inference with a crossencoder, for global phase-reranking. I want to be able...