mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-09-27 12:29:41 +02:00
Make Vespa Deployment file as simple as possible (#416)
Make Vespa Deployment file as simple as possible
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<services version="1.0" xmlns:deploy="vespa" xmlns:preprocess="properties">
|
<services version="1.0">
|
||||||
<container id="default" version="1.0">
|
<container id="default" version="1.0">
|
||||||
<document-api/>
|
<document-api/>
|
||||||
<search/>
|
<search/>
|
||||||
@@ -7,20 +7,20 @@
|
|||||||
<server id="default" port="8081"/>
|
<server id="default" port="8081"/>
|
||||||
</http>
|
</http>
|
||||||
<nodes>
|
<nodes>
|
||||||
<node hostalias="node1" />
|
<node hostalias="danswer-node" />
|
||||||
</nodes>
|
</nodes>
|
||||||
</container>
|
</container>
|
||||||
<content id="danswer_index" version="1.0">
|
<content id="danswer_index" version="1.0">
|
||||||
<redundancy>2</redundancy>
|
<redundancy>1</redundancy>
|
||||||
<documents>
|
<documents>
|
||||||
<document type="danswer_chunk" mode="index" />
|
<document type="danswer_chunk" mode="index" />
|
||||||
</documents>
|
</documents>
|
||||||
<nodes>
|
<nodes>
|
||||||
<node hostalias="node1" distribution-key="0" />
|
<node hostalias="danswer-node" distribution-key="0" />
|
||||||
</nodes>
|
</nodes>
|
||||||
<tuning>
|
<tuning>
|
||||||
<resource-limits>
|
<resource-limits>
|
||||||
<!-- Default is 75% but this should be increased for personal computer dockerized deployments -->
|
<!-- Default is 75% but this should be increased for Dockerized deployments -->
|
||||||
<!-- https://docs.vespa.ai/en/operations/feed-block.html -->
|
<!-- https://docs.vespa.ai/en/operations/feed-block.html -->
|
||||||
<disk>0.98</disk>
|
<disk>0.98</disk>
|
||||||
</resource-limits>
|
</resource-limits>
|
||||||
|
Reference in New Issue
Block a user