惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
B
Blog
Stack Overflow Blog
Stack Overflow Blog
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
罗磊的独立博客
L
LangChain Blog
V
Visual Studio Blog
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享

Supabase Blog

AI Agents Know About Supabase. They Don't Always Use It Right. Custom OIDC Providers for Supabase Auth 100,000 GitHub stars Supabase docs over SSH Navigating Regional Network Blocks Supabase Joins the Stripe Projects Developer Preview Log Drains: Now available on Pro Supabase Storage: major performance, security, and reliability updates Supabase incident on February 12, 2026 Hydra joins Supabase X / Twitter OAuth 2.0 is now available for Supabase Auth BKND joins Supabase Supabase is now an official Claude connector Supabase PrivateLink is now available Introducing: Postgres Best Practices When to use Read Replicas vs. bigger compute Introducing TRAE SOLO integration with Supabase Supabase Security Retro: 2025 Sync Stripe Data to Your Supabase Database in One Click Building ChatGPT Apps with Supabase Edge Functions and mcp-use Own Your Observability: Supabase Metrics API Introducing iceberg-js: A JavaScript Client for Apache Iceberg Introducing Supabase for Platforms Adding Async Streaming to Postgres Foreign Data Wrappers Build "Sign in with Your App" using Supabase Auth Introducing Seven New Email Templates for Supabase Auth The new Supabase power for Kiro Introducing Supabase ETL Introducing Analytics Buckets Introducing Vector Buckets
NoSQL Postgres: Add MongoDB compatibility to your Supabas...
Thor Schaeff · 2024-01-31 · via Supabase Blog

NoSQL Postgres: Add MongoDB compatibility to your Supabase projects with FerretDB

FerretDB is an open source document database that adds MongoDB compatibility to other database backends, such as Postgres and SQLite. By using FerretDB, developers can access familiar MongoDB features and tools using the same syntax and commands for many of their use cases.

In this post, we'll start from scratch, running FerretDB locally via Docker, trying out the connection with mongosh and the MongoDB Node.js client, and finally deploy FerretDB to Fly.io for a production ready set up.

If you prefer video guide, you can follow along below. And make sure to subscribe to the Supabase YouTube channel!

FerretDB provides a Docker image allowing us to run it locally, for example via Orbstack, with a couple simple commands.

FerretDB only requires the Postgres database URI to be provided as the FERRETDB_POSTGRESQL_URL environment variable. Every Supabase project comes with a full Postgres database. You can find the connection URI string in your Supabase Dashboard.

Make sure Use connection pooling is checked and Session mode is selected. Then copy the URI. Replace the password placeholder with your saved database password.


_10

# Set the required environment variables

_10

export DB_USER=postgres

_10

export DB_PASSWORD=<your db password>

_10

export SUPA_PROJECT_REF=<your Supabase project ref>

_10

export SUPA_REGION=<your project region>

_10

export DB_URL=postgres://$DB_USER.$SUPA_PROJECT_REF:$DB_PASSWORD@$SUPA_REGION.pooler.supabase.com:5432/postgres

_10

_10

# Run FerretDB in docker container

_10

docker run -p 27017:27017 -p 8080:8080 -e FERRETDB_POSTGRESQL_URL=$DB_URL ghcr.io/ferretdb/ferretdb


FerretDB runs on the default MongoDB port 27017 and also spins up some monitoring tools on port 8080. Once up and running you can access these at localhost:8080.

Once up and running, constructing the MongoDB URI is easil:


_10

export MONGODB_URL=mongodb://$DB_USER.$SUPA_PROJECT_REF:$DB_PASSWORD@127.0.0.1:27017/ferretdb?authMechanism=PLAIN


If you have MongoDB installed locally on your machine, you can test via mongosh, the MongoDB shell.


_10

mongosh '$MONGODB_URL'


If you don't have MongoDB installed locally, you can run the shell via a Docker container:


_10

docker run --rm -it --entrypoint=mongosh mongo \

_10

"$MONGODB_URL"


Insert documents into FerretDB#

With mongosh running, let's try to insert some documents into our FerretDB instance. You are going to insert two footballer data into a players collection.


_33

db.players.insertMany([

_33

{

_33

futbin_id: 3,

_33

player_name: "Giggs",

_33

player_extended_name: "Ryan Giggs",

_33

quality: "Gold - Rare",

_33

overall: 92,

_33

nationality: "Wales",

_33

position: "LM",

_33

pace: 90,

_33

dribbling: 91,

_33

shooting: 80,

_33

passing: 90,

_33

defending: 44,

_33

physicality: 67

_33

},

_33

{

_33

futbin_id: 4,

_33

player_name: "Scholes",

_33

player_extended_name: "Paul Scholes",

_33

quality: "Gold - Rare",

_33

overall: 91,

_33

nationality: "England",

_33

position: "CM",

_33

pace: 72,

_33

dribbling: 80,

_33

shooting: 87,

_33

passing: 91,

_33

defending: 64,

_33

physicality: 82,

_33

base_id: 246

_33

}

_33

]);


Great! Now when you run db.players.find(), it should return all the documents stored in the collection.

Update document record in FerretDB#

Next, you need to update "Giggs" record to reflect his current position as a CM. To do this, we can just run an updateOne command to target just that particular player:


_10

db.players.updateOne(

_10

{ player_name: "Giggs" },

_10

{ $set: { position: "CM" } }

_10

);


Let's query the collection to see if the changes have been made:


_10

db.players.find({player_name: "Giggs"})


You can run many MongoDB operations on FerretDB. See the list of supported commands in the FerretDB documentation for more.

FerretDB stores each collection in a table on the ferretdb schema, each document represented by a JSONB entry. You can inspect this in the Table Editor in your Supabase Dashboard.

For production use cases, you can easily deploy FerretDB on Fly. Simply create a fly.toml file (make sure to update primary_region)


_17

app = "supa-ferretdb-<your-supabase-project-ref>"

_17

primary_region = "bos"

_17

_17

[build]

_17

image = "ghcr.io/ferretdb/ferretdb"

_17

_17

[[services]]

_17

internal_port = 27017

_17

protocol = "tcp"

_17

_17

[[services.ports]]

_17

port = "27017"

_17

_17

[[vm]]

_17

cpu_kind = "shared"

_17

cpus = 1

_17

memory_mb = 1024


And follow these flyctl commands:

  • fly launch --no-deploy
    • An existing fly.toml file was found for app supa-ferretdb?
    • Would you like to copy its configuration to the new app? (y/N) > y
  • fly secrets set FERRETDB_POSTGRESQL_URL=$DB_URL
  • fly deploy
  • fly ips allocate-v4
    • Note: this is a paid feature! You can test it for free as long as you release the dedicated IPv4 before the end of the billing period!

Now simply replace 127.0.0.1 in the MONGODB_URL with your dedicated IPv4 address and you're ready to roll!

FerretDB allows you to run MongoDB workloads on Postgres and SQLite. This flexibility means you can easily add MongoDB compatibility to your Supabase projects, while avoiding vendor lock-in and retaining control of your data architecture.

To get started with FerretDB, check out the FerretDB quickstart guide.