Hi All,
Hi All,
I would appreciate help on best practices how to do a paginate & join query or a preferred way to query efficiently, avoid unnecessary filtering and calls to loadMore on the frontend. I'm trying not to use collect() even when querying with indexes since I want to stuff to continue to scale.
I'm not tied to this design but I have 3 tables where
Thanks
27 Replies
Realistic expectations question: about how many pods do you expect the average user to be a member of, roughly? And about how many pods would a user realistically be a part of on the high end?
Good point, designers will use the pods for their clients and students
Designers on my platform teach 3-4 a year
I am just opening the client pods and I assume they will have 30 clients a year
~30 pods a year for each designer
How many pods do you expect in a super pod
Eg., could a super pod scale to be many hundreds of pods quickly
Also a little confused on member schema having a podId field if members can have multiple pods, guessing I'm missing something there
Ah a user can have multiple member records
The public pods can be in the many hundreds and will grow
For the public pods I can easily paginate on visibility field for now
But I will have the same problem if the user want filter on category if the podCategories table which will have categoryId and podId
If a pod can only have a single super pod id, I would consider adding super pod id to the member schema. A bit of strategic denormalization can make things much simpler in Convex.
Not required at all, though. I really don't expect you to hit performance issues with what you're describing.
That’s easy to do
That would make fetching all pods a user is a member of within a given super pod work just fine as an indexed query with collect().
So you are saying can do the following, collect , collect and … and then paginate on the final result and I will hit no issues
For the member pods of a given user, within a single super pod (although I don't know what that represents, but assuming it's a meaningful delineator), I doubt you would need pagination.
You would query on the members table first, not pods
index that query on user id, pod id, and super pod id
But for the sake of the discussion to understand convex when I really scale how should I approach the join paginate
Is it with aggregates, flat tables
I’m also trying to understand convex
Since I’m not hitting those limits now
It really depends on the complexity of the query, but paginating plus mapping goes quite a long way.
But it will affect how I think about schemas etc….
Let say you paginate and filter like I did above
I have pagination that maps multiple levels deep on multiple relations per record, plus the same kind of optional searching that you're doing in your example and it works really well
Let’s say I solved my issue and added to the members table superpodId.
The filter is what throwing me off , imagine I filter on categories so when I paginate, if I have a batch 10 then the first batch can be empty and need to call loadmore on the client
Yeah that's true - here's a relevant comment on that: https://discord.com/channels/1019350475847499849/1332861193764999229/1333676309628325982
So there's a few ways you can go about this, but it really depends on your actual use case. I'd really recommend keeping it simple and worrying about limits when you see queries start to take time. Convex is really fast.
Seems the best way is a materialized view

Yeah that would be worth the effort if it was necessary, I agree. If you're getting into search complexity with filters and such, I could definitely see that being a good investment out the gate just for that use case.
I've been keeping my search scenarios simple because I'm lazy lol, but I know it's coming
Exactly, thanks for brainstorming and the link, helped a lot
Also a teaser: something from @lee is coming out in the next couple days, but is already on
0.1.72
: https://github.com/get-convex/convex-helpers/tree/main/packages/convex-helpers#composable-querystreamsGitHub
convex-helpers/packages/convex-helpers at main · get-convex/convex-...
A collection of useful code to complement the official packages. - get-convex/convex-helpers
this is awesome
I used it and this is exactly and I needed
Thanks @lee and @ian
I published the articles https://stack.convex.dev/merging-streams-of-convex-data and https://stack.convex.dev/translate-sql-into-convex-queries
Merging Streams of Convex data
New convex-helpers are available now for fetching streams of documents, merging them together, filtering them them out, and paginating the results. Wi...
Translate SQL into Convex Queries
Here’s a cheatsheet with examples of conversions between SQL queries and Convex queries. This article is geared towards developers (and LLMs) who have...
@lee great articles
small fix: In this query you are missing before

ty! @ian pls fix
@ian @lee any idea when stream will support withSearchIndex ?
https://github.com/get-convex/convex-helpers/blob/main/packages/convex-helpers/server/stream.ts#L602
GitHub
convex-helpers/packages/convex-helpers/server/stream.ts at main · ...
A collection of useful code to complement the official packages. - get-convex/convex-helpers
Let's put things like this in the community support channel so they're easier for others to find, and/or feature requests on that repo. Thanks!