BakemonoHouse
CCConvex Community
•Created by Delt on 10/7/2024 in #support-community
Not able to connect to Convex
5 replies
CCConvex Community
•Created by Delt on 10/7/2024 in #support-community
Not able to connect to Convex
@ballingt seems its an old thread but I am experiencing this with one of my users as well. Works on every other device but just not on her laptop.
5 replies
CCConvex Community
•Created by aitkn on 4/24/2023 in #support-community
Offline-first support
@Indy wow this is an old thread... is there any updates with replicache integration at the moment?
9 replies
CCConvex Community
•Created by BakemonoHouse on 8/16/2024 in #support-community
Has anyone tried Convex with Plasmo here?
@ballingt let me try it with basic react setup and revert if there's anything
4 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
thanks a lot!
31 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
yup it has been resolved
31 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
let me try
31 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
yup I did assume so too. glad to be narrowing this down 🙂
31 replies
CCConvex Community
•Created by Hmza on 8/8/2024 in #support-community
one function costed 17GB reads in one day
super exciting news 🙈
40 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
should I relay this back to Vercel team for more details?
31 replies
CCConvex Community
•Created by Hmza on 8/8/2024 in #support-community
one function costed 17GB reads in one day
haha the eternal whack a mole for us anyways. I optimized something last time and ended up jacking up # of function calls.
40 replies
CCConvex Community
•Created by Hmza on 8/8/2024 in #support-community
one function costed 17GB reads in one day
yeah its definitely difficult in nosql. I do a lot of bending around relational schema or just bend the UX a bit to limit large queries.
40 replies
CCConvex Community
•Created by Hmza on 8/8/2024 in #support-community
one function costed 17GB reads in one day
few hundred DAU atm
40 replies
CCConvex Community
•Created by Hmza on 8/8/2024 in #support-community
one function costed 17GB reads in one day
yeah we are in production too. slightly larger user base but lower RW # and bandwidth in terms of docs.
40 replies
CCConvex Community
•Created by Hmza on 8/8/2024 in #support-community
one function costed 17GB reads in one day
i went through some scenario in my head but i guess i keep coming back to the index solution. funnily speaking my product is also a CRM and has exactly same business process but I have not experienced this kind of bandwidth.
40 replies
CCConvex Community
•Created by Hmza on 8/8/2024 in #support-community
one function costed 17GB reads in one day
got it, I saw the q.eq(_id) and assumed it was the convex ID. is there any other index you can use to narrow down the search (by index) then filter using clientId instead?
40 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
thanks for helping out!
31 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
haha it should rule out the convexclient issues. I read through the whole node_module to test...
31 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
yup i went down to this level to test. only breaks in the middleware. super weird
31 replies
CCConvex Community
•Created by BakemonoHouse on 8/7/2024 in #support-community
fetchQuery fails inside clerkMiddleware (clerk/nextjs)
const headers = {
"Content-Type": "application/json",
"Convex-Client": "npm-1.14.0",
"Authorization":
Bearer ${token}
,
};
const response = await fetch(${process.env.NEXT_PUBLIC_CONVEX_URL!}/api/query
, {
method: "POST",
headers,
body: JSON.stringify({
path: "users:checkMe",
args: {},
format: "json"
})
});
console.info("from middleware", ${process.env.NEXT_PUBLIC_CONVEX_URL!}/api/query
, response.ok, response.status);
if (!response.ok && response.status !== 560) {
console.error(response.status, await response.text());
} else {
console.info("success", await response.json())
}31 replies