Convex Community

CC

Convex Community

Join the Convex Discord! Explore Convex, the open-source reactive database for app developers.

Join

support-community

show-and-tell

general

self-hosted

announcements

Hit the limit on Convex and wan't to bumt it up but need to understand what tier works best for me

I am building a web3 startup and I wanted to build it on top of Convex as I see a lot of guys recreating their own infrastructure from scratch, tuning websockets and syncing databases by hand. It is a really hard problem and Convex solves it perfectly, but as I understand with my current free tier it's impossible to give a user good experience. But I am willing to pay a good amount to bump it up but I need to figure out what tier will work best for me with the Convex team :) DM me on Discord, Twitter or Telegram: https://x.com/clar1k...

Add Entries Asynchronously using File Storage#

```JS import { httpRouter } from "convex/server"; import { authComponent, createAuth } from "./auth"; import { corsRouter } from "convex-helpers/server/cors"; import { internal } from "./_generated/api";...

I would love to have an error for setting Env variables with a trailing space at the start

just spent a good old 2-3 hours trying to debug an issue with auth, turns out, I had a trailing space at the start of the env variable, which caused my auth to not work as expected, it was very frustrating!

#Help

Need help clearing 374K scheduled functions in deployment fantastic-chihuahua-896. Had an infinite loop bug that's now fixed but can't cancel the backlog....

Native Apple OAuth with Convex Auth

Is there any way to support native Apple OAuth with convex auth? Based on the docs, it seems I'd have to open up a browser in the app to support Apple OAuth, but I'd like to do it directly in the app.

Download table button

A download button would be helpful. just like Supabase. currently we have to make a function, what take all and save as jsonl/csv/etc....
No description

EU Financial Institution / Compliance

DORA (EU Digital Operational Resilience Act= requires audit rights and regulatory access to critical third-parties. We would need to ensure that Convex’s contracts allow BaFin (or us) to get information if regulators ask. Is this possible?

memory issues on convex self-hosted

Hey there I'm getting issues a TooMuchMemoryCarryOver error on my convex self-hosted deployment. findOne is from better-auth-convex, the rest are relatively small functions that require auth. Is this a known issue ? ```convex-backend-1 | 2025-10-02T07:26:46.682455Z ERROR isolate::client: Restarting Isolate memory_carry_over: TooMuchMemoryCarryOver("60.85 MiB", "96 MiB"), last request: "UDF: queries.js:getAvailableInstruments"...

HTTP Actions the best way to validate request body

I am using HTTP Actions and the request param is unknown. There is no documented way to validate request or how to use built-in validator to validate object shape inside of actions. I am wondering what is the best way to handle this.

Can't get better-auth working with the Tanstack Start and Convex stack

The weird part is the error gives me to nothing to work with, just fetch failed and even weirder is that it wouldn't happen on every reload, but when the page does reload, client interactivity wouldn't work, meaning no onClick handler stuff is working. Neither server nor browser console tells me anything. Have followed, checked and rechecked the setup process. https://convex-better-auth.netlify.app/framework-guides/tanstack-start...
No description

Convex HTTP endpoints

My convex deployment doesn’t have HTTP routes enabled. Can you please enable the HTTP routes for my deployment. URL: https://grandiose-ram-34.convex.cloud

Mini Recommendation Engine

Has anyone ever tried to work on a recommendation engine? WHat is the best way to start or reason for this kind of problem. Imagine you want to build a mini timeline / for you page like we have on X and TikTok where simple pagination won't cut it, you want something more, unique timelines for each user etc. I understand this may not be within the scope of convex but is this even doable, what limitations are there? What challenges should you expect to face?...

full text search is very slow (on dev env)

I'm very surprised by how bad does text search perform on convex. Suppose we have this doc schema: ```typescript const issueTitles = defineTable({ repoId: v.id('repos'),...

going beyond index limit: 32

if somehow possible to use 64 index per table? (like new super-pro plan / modified self-hosted) i will have up to 20k rows (never more than that), but i need 64 index. (i need many many types of filters per item/product) https://docs.convex.dev/production/state/limits#database...

Convex Testing Aggregate Component

I would like to know how I register the aggregate component in convex testing , it simply doesnt seem to work for me

Clerk With Convex Issue on SSR

``` const clerkJwt = await (await auth()).getToken({ template: "convex" }); console.log("env", process.env.NEXT_PUBLIC_CONVEX_URL); try { const currentUser = await fetchQuery(...
No description

Aggregate component third prefix seems to be ignored?

I’m using the convex TableAggregate component like this:
```ts export const aggregateRemainingAmount = new TableAggregate<{ Key: [Id<"students">, number, number];...

Convex self hosted on my sql

Hi I have been running a self hosted convex instance with MySQL backend for a side project. I noticed that the document table growth is linear even if the amount of documents in the system is stable. From the very helpful doc AI I have learned. ...

Convex dashboard not updating

My convex dashboard is not updating, specifically the data tabs. I have confirmed that other development branches display new schemas and data but not my specific dev branch. All updates are received by convex cloud in the schema code popup. Additionally creating a new table using the dashboard do nothing, as well as deleting empty tables....
No description

Issues with better-auth component

Hi All, I am having some issues where I get these types of errors in a bunch of places on operations with the authClient with better-auth using the Component for Convex. It happens on the listOrganizations and the createOrganization specifically, so mabye its some issue with how i set up the organizations plugin? [Error: Uncaught TypeError: Cannot read properties of undefined (reading 'fields')...