# Multi-Tenant RAG With One Neon Project Per User

DevFeed: [Multi-Tenant RAG With One Neon Project Per User](<https://devfeed.tech/articles/multi-tenant-rag-with-one-neon-project-per-user-5590.md>)

Original publisher: [Read original article](<https://neon.com/blog/multi-tenant-rag>)

Author: Tony Holdstock-Brown

Published: 2024-11-19T18:50:22Z

Content type: tutorial

Language: en

Sources: [Blog -- Neon Docs](<https://devfeed.tech/sources/blog-neon-docs.md>)

Topics: [AI search](<https://devfeed.tech/topics/ai-search.md>), [Per-user Database](<https://devfeed.tech/topics/per-user-database.md>)

Tags: [database](<https://devfeed.tech/tags/database.md>), [llm](<https://devfeed.tech/tags/llm.md>), [multi-tenancy](<https://devfeed.tech/tags/multi-tenancy.md>), [performance](<https://devfeed.tech/tags/performance.md>), [product](<https://devfeed.tech/tags/product.md>), [rag](<https://devfeed.tech/tags/rag.md>), [search](<https://devfeed.tech/tags/search.md>), [security](<https://devfeed.tech/tags/security.md>), [vector](<https://devfeed.tech/tags/vector.md>), [workflow](<https://devfeed.tech/tags/workflow.md>)

## AI overview

A tutorial on a multi-tenant RAG CRM pipeline that isolates each organization's data in dedicated Neon databases and uses workflows to provide capacity isolation.

## Source excerpt

A common SaaS pattern involves deploying a single application environment shared among all users. However, RAG presents additional reliability and security challenges, relying heavily on user-provided information and unpredictable model APIs. This article covers a multi-tenant RA...