Skip to content

Commit 45b2535

Browse files
Merge pull request #7418 from nmelehan-akamai/rc-v1.399.0
[Release] v1.399.0
2 parents b697452 + aa5f6d0 commit 45b2535

3 files changed

Lines changed: 166 additions & 0 deletions

File tree

ci/vale/dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1919,6 +1919,7 @@ pg_restore
19191919
pgAdmin
19201920
PGvector
19211921
pgpass
1922+
Pgvector
19221923
pgvector
19231924
Phalcon
19241925
pharmer
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
---
2+
title: "Deploy Milvus through the Linode Marketplace"
3+
description: "Deploy Milvus, an open-source vector database for AI, similarity search, and embeddings workloads."
4+
published: 2026-02-09
5+
modified: 2026-02-09
6+
keywords: ['milvus', 'vector database', 'AI', 'embeddings', 'similarity search']
7+
tags: ["ubuntu", "marketplace", "developer", "milvus", "linode platform", "machine learning"]
8+
external_resources:
9+
- '[Milvus.io](https://milvus.io/)'
10+
- '[Milvus Documentation](https://milvus.io/docs)'
11+
- '[Milvus Quickstart Guide](https://milvus.io/docs/install_standalone-docker.md)'
12+
aliases: ['/products/tools/marketplace/guides/milvus/']
13+
authors: ["Akamai"]
14+
contributors: ["Akamai"]
15+
license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)'
16+
---
17+
18+
Milvus is a high-performance open-source vector database that enables fast similarity search across unstructured data, including image, video, audio, and text embeddings. Designed for AI workloads and large-scale vector indexing, Milvus provides millisecond-level retrieval performance and integrates easily with popular machine learning frameworks and embedding services.
19+
20+
This guide includes steps for deploying the Milvus Standalone Marketplace App on a Linode Compute Instance using Docker Compose.
21+
22+
## Deploying a Marketplace App
23+
24+
{{% content "deploy-marketplace-apps-shortguide" %}}
25+
26+
{{% content "marketplace-verify-standard-shortguide" %}}
27+
28+
{{< note >}}
29+
**Estimated deployment time:** After provisioning completes, the Milvus Standalone container stack initializes in approximately 3–5 minutes.
30+
{{< /note >}}
31+
32+
## Configuration Options
33+
34+
- **Supported distributions:** Ubuntu 24.04 LTS
35+
- **Recommended minimum plan:** Dedicated 16GB instance or higher for baseline development and testing with support for GPU instances.
36+
37+
### Milvus Deployment Options
38+
39+
{{% content "marketplace-required-limited-user-fields-shortguide" %}}
40+
41+
{{% content "marketplace-custom-domain-fields-shortguide" %}}
42+
43+
{{% content "marketplace-special-character-limitations-shortguide" %}}
44+
45+
### Obtain the Credentials
46+
47+
When deployment completes, the system automatically generates credentials for internal MinIO storage and other parameters needed to administer your Milvus instance. These are stored in the limited user’s `.credentials` file.
48+
49+
1. Log in to your Compute Instance using one of the methods below:
50+
51+
- **Lish Console**: Log in to Cloud Manager, click **Linodes**, select your instance, and click **Launch LISH Console**. Log in as `root`. To learn more, see [Using the Lish Console](/docs/products/compute/compute-instances/guides/lish/).
52+
- **SSH**: Log in to your instance over SSH using the `root` user. To learn how, see [Connecting to a Remote Server Over SSH](/docs/guides/connect-to-server-over-ssh/).
53+
54+
2. Run the following command to access the `.credentials` file:
55+
56+
```command
57+
cat /home/$USERNAME/.credentials
58+
```
59+
60+
### Getting Started After Deployment
61+
62+
Once the Milvus Standalone container is deployed and running, you can connect to the database and begin creating collections, inserting vectors, and performing searches.
63+
64+
To interact with Milvus, install the a supported client SDK (Python, Go, Java, Node.js).
65+
66+
- **[pymilvus](https://github.com/milvus-io/pymilvus)**: Python SDK for Milvus Vector Database
67+
- **[milvus-sdk-node](https://github.com/milvus-io/milvus-sdk-node)**: node.js SDK for Milvus Vector Database
68+
- **[Milvus Go SDK](https://milvus.io/docs/install-go.md)**: GO SDK for Milvus Vector Database
69+
- **[Milvus Java SDK](https://milvus.io/docs/install-java.md)**: Java SDK for Milvus Vector Database
70+
71+
### Verify Running Containers
72+
73+
First, confirm that all Milvus-related containers are running:
74+
75+
```command
76+
docker ps
77+
```
78+
You should see containers for Milvus, etcd, and MinIO in a running state.
79+
80+
### Access the MinIO Dashboard
81+
Milvus uses MinIO as its object storage backend. You can access the MinIO web interface to verify bucket creation and storage activity.
82+
83+
To access your MinIO Dashboard, Open a browser and navigate to your Linode rDNS domain `https://203-0-113-0.ip.linodeusercontent.com`. Replace `https://203-0-113-0.ip.linodeusercontent.com` with your [Linode's RDNS domain](/docs/products/compute/compute-instances/guides/manage-ip-addresses/#viewing-ip-addresses). The credentials can be found in the `.credentials` file (/home/$USERNAME/.credentials).
84+
85+
If you want to learn more about Milvus, checkout [the official Milvus documentation](https://milvus.io/docs) to learn how to further utilize your instance.
86+
87+
{{% content "marketplace-update-note-shortguide" %}}
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
title: "Deploy pgvector through the Linode Marketplace"
3+
description: "Deploy Pgvector, an open-source vector extension for PostgreSQL for similarity search and AI embeddings."
4+
published: 2026-02-09
5+
modified: 2026-02-09
6+
keywords: ['pgvector', 'postgresql', 'vector database', 'AI', 'embeddings', 'similarity search']
7+
tags: ["ubuntu", "marketplace", "developer", "postgresql", "pgvector", "linode platform", "machine learning"]
8+
external_resources:
9+
- '[pgvector GitHub](https://github.com/pgvector/pgvector)'
10+
- '[pgvector Documentation](https://github.com/pgvector/pgvector#readme)'
11+
- '[PostgreSQL Documentation](https://www.postgresql.org/docs/)'
12+
aliases: ['/products/tools/marketplace/guides/pgvector/']
13+
authors: ["Akamai"]
14+
contributors: ["Akamai"]
15+
license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)'
16+
---
17+
18+
Pgvector is an open-source PostgreSQL extension that enables vector similarity search directly inside a relational database. It allows you to store embeddings alongside structured data and perform nearest-neighbor searches using cosine similarity, inner product, or Euclidean distance—making it well-suited for AI, semantic search, and retrieval-augmented generation (RAG) workloads.
19+
20+
## Deploying a Marketplace App
21+
22+
{{% content "deploy-marketplace-apps-shortguide" %}}
23+
24+
{{% content "marketplace-verify-standard-shortguide" %}}
25+
26+
{{< note >}}
27+
**Estimated deployment time:** Pgvector should be fully installed within 5-10 minutes after the Compute Instance has finished provisioning.
28+
{{< /note >}}
29+
30+
## Configuration Options
31+
32+
- **Supported distributions:** Ubuntu 24.04 LTS
33+
- **Suggested plan:** Dedicated 16GB instance or higher for baseline development and testing with support for GPU instances.
34+
35+
### Pgvector Options
36+
37+
{{% content "marketplace-required-limited-user-fields-shortguide" %}}
38+
39+
{{% content "marketplace-custom-domain-fields-shortguide" %}}
40+
41+
{{% content "marketplace-special-character-limitations-shortguide" %}}
42+
43+
### Obtain the Credentials
44+
45+
When deployment completes, the system automatically generates credentials to administer your Pgvector instance. These are stored in the limited user’s `.credentials` file.
46+
47+
1. Log in to your Compute Instance using one of the methods below:
48+
49+
- **Lish Console**: Log in to Cloud Manager, click **Linodes**, select your instance, and click **Launch LISH Console**. Log in as `root`. To learn more, see [Using the Lish Console](/docs/products/compute/compute-instances/guides/lish/).
50+
- **SSH**: Log in to your instance over SSH using the `root` user. To learn how, see [Connecting to a Remote Server Over SSH](/docs/guides/connect-to-server-over-ssh/).
51+
52+
2. Run the following command to access the contents of the `.credentials` file:
53+
54+
```command
55+
cat /home/$USERNAME/.credentials
56+
```
57+
58+
## Getting Started after Deployment
59+
60+
You can start by connecting to your PostgreSQL database
61+
62+
```command
63+
psql -h localhost -U $POSTGRES_USER -d $POSTGRES_DB
64+
```
65+
The connection credentials can be found in the `.credentials` file located at `/home/$USERNAME/.credentials`.
66+
67+
You can then define vector columns and run similarity queries directly in SQL.
68+
69+
Pgvector works with standard PostgreSQL clients and integrates easily with popular AI frameworks and ORMs:
70+
71+
- **[psycopg](https://www.psycopg.org/)**: PostgreSQL adapter for Python
72+
- **[SQLAlchemy](https://www.sqlalchemy.org/)**: Python ORM with pgvector support
73+
- **[pgvector-node](https://github.com/pgvector/pgvector-node)**: Node.js client helpers
74+
- **[pgvector-go](https://github.com/pgvector/pgvector-go)**: Go utilities for pgvector
75+
76+
If you want to learn more about Pgvector, check out the [official Pgvector documentation](https://github.com/pgvector/pgvector?tab=readme-ov-file#getting-started) to explore indexing strategies, performance tuning, and advanced query patterns.
77+
78+
{{% content "marketplace-update-note-shortguide" %}}

0 commit comments

Comments
 (0)