pyvespa
pyvespa copied to clipboard
Python API for https://vespa.ai, the open big data serving engine
could for example pass in the full contents of the feed_data_point args so that more data can be captured in case of issues (say the full document content in case...
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
there exists client overhead for creating vespasync/vespaasync client sessions at call time for say feed_iterable method. These can be created and managed at the app level to limit overhead. In...
Would remove some marginal asyncio overhead if the method was made synchronous. It can still be called in __aenter__ context with the same performance as the code is blocking anyways....
hi. I raised Vespa locally with the following docker compose: ``` version: '3.9' services: locust-master: image: locust-vespa build: context: ../../ dockerfile: Dockerfile args: - TEST_NAME=locust - VECTORDB_NAME=vespa volumes: - ${PWD}/reports/vespa/locust_report:/opt/locust_report/...
I wanted to pass `_DNSCacheTable` arguments to `aiohttp` since I have multiple vespa headless services and wanted to do client side load balancing
Ref #395 and https://pyvespa.readthedocs.io/en/latest/deploy-docker.html When exporting the app package, also generate the zipfile for the tests, if there are any
It seems like the process for deploying to Prod is different from dev deployments. Prod deployment page asks for 2 zip files. I downloaded the application zip file from Vespa...
pyvespa currently generates a data plane certificate and key and stores it in a file every time a deployment is made. This behavior conflicts with the workflow of using the...