Skip to content

Commit 6064c54

Browse files
committed
docs: added trouble shooting guide and pricing
1 parent 217c570 commit 6064c54

File tree

2 files changed

+115
-0
lines changed

2 files changed

+115
-0
lines changed

vector-inference/pricing.mdx

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
title: Pricing
3+
description: The pricing design Trieve Vector Inference
4+
mode: wide
5+
icon: money-bill
6+
---
7+
8+
Trieve Vector Inference is meant to be an on-prem solution a license is needed for use.
9+
10+
To obtain a license for Trieve Vector Inference contact us:
11+
12+
- Email us at [email protected]
13+
- [book a meeting](https://cal.com/nick.k/meet)
14+
- Call us @ 628-222-4090
15+
16+
<CardGroup cols={3}>
17+
18+
<Card title="Startup Tier">
19+
<div class="flex flex-col">
20+
<div class="mb-10">
21+
<p class="text-2xl text-primary"> $0* </p>
22+
per month
23+
</div>
24+
25+
<div class="flex flex-col space-y-2">
26+
<div> Hosting License </div>
27+
<div> Unlimited Clusters </div>
28+
</div>
29+
</div>
30+
</Card>
31+
32+
<Card title="Pro Tier" horizontal>
33+
<div class="flex flex-col">
34+
<div class="mb-10">
35+
<p class="text-2xl text-primary"> $500 </p>
36+
per month
37+
</div>
38+
39+
<div class="flex flex-col space-y-2">
40+
<div> Hosting License </div>
41+
<div> Unlimited Clusters </div>
42+
<div> Dedicated Slack Support </div>
43+
</div>
44+
45+
</div>
46+
</Card>
47+
48+
<Card title="Enterprise Tier">
49+
<div class="flex flex-col">
50+
<div class="mb-10">
51+
<p class="text-2xl text-primary"> $1000+</p>
52+
per month
53+
</div>
54+
55+
<div class="flex flex-col space-y-2">
56+
<div> Hosting License </div>
57+
<div> Unlimited Clusters </div>
58+
<div> Dedicated Slack Support </div>
59+
<div> 99.9% SLA </div>
60+
<div> Managed and hosted by Trieve </div>
61+
</div> </div> </Card>
62+
</CardGroup>
63+
64+
\* Free for < 10 employees or Pre-seed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: Troubleshooting
3+
icon: 'triangle-exclamation'
4+
description: 'Common issues with self hosting'
5+
---
6+
7+
There are a lot of moving parts in `eksctl`. Here’s a list of common issues we’ve seen customers run into:
8+
9+
<AccordionGroup>
10+
<Accordion title='Error while deleting "1 pods are unevictable from node ip"'>
11+
12+
This error happens when deleting the cluster and some pods in `kube-system` refuse to stop.
13+
To fix this run the following command and the deletion process should be able to proceed.
14+
15+
```sh
16+
kubectl get pods -n kube-system -o NAME | xargs kubectl -n kube-system delete
17+
```
18+
</Accordion>
19+
20+
<Accordion title='Error while deleting "cleaning up AWS load balancers created by Kubernetes objects of Kind Service or Ingress"'>
21+
This happens when the cluster doesn't properly delete load balancers, to fix this
22+
23+
<Steps>
24+
<Step title="Get load balancers to be deleted">
25+
Run this to get the available load balancers
26+
```sh
27+
kubectl get ingress
28+
```
29+
30+
31+
The output should look like this
32+
```
33+
NAME CLASS HOSTS ADDRESS PORTS AGE
34+
vector-inference-embedding-bgem3-ingress alb * k8s-default-vectorin-25e84e25f0-1362792264.us-east-2.elb.amazonaws.com 80 3d19h
35+
vector-inference-embedding-nomic-ingress alb * k8s-default-vectorin-eb664ce6e9-238019709.us-east-2.elb.amazonaws.com 80 2d20h
36+
vector-inference-embedding-spladedoc-ingress alb * k8s-default-vectorin-8af81ad2bd-192706382.us-east-2.elb.amazonaws.com 80 3d19h
37+
```
38+
39+
</Step>
40+
41+
<Step title="Delete Extra Load Balancers">
42+
Go to EC2 > LoadBalancers ([link](https://us-west-1.console.aws.amazon.com/ec2/home?region=us-west-1#LoadBalancers:v=3;$case=tags:false%5C,client:false;$regex=tags:false%5C,client:false)) and delete the alb's that have the ingress point names
43+
</Step>
44+
45+
46+
<Step title="Restart the delete script, but it should auto resume">
47+
The delete script should be able to resume
48+
</Step>
49+
</Steps>
50+
</Accordion>
51+
</AccordionGroup>

0 commit comments

Comments
 (0)