justin
justin
CCConvex Community
Created by RJ on 3/18/2025 in #support-community
Increased incidences of generic failure + warning
Convex logs
4/17/2025, 3:25:28 PM [CONVEX H(POST /testUpload)] [LOG] 'testUpload request' Headers { host: 'tremendous-dodo-311.convex.site', 'user-agent': 'curl/8.7.1', 'content-length': '32768', accept: '*/*', 'content-type': 'application/octet-stream', 'x-forwarded-for': '23.93.82.19', 'x-forwarded-host': 'tremendous-dodo-311.convex.site', 'x-forwarded-proto': 'https', 'accept-encoding': 'gzip', 'convex-request-id': '2a7295d5e92b3420' }
4/17/2025, 3:25:39 PM [CONVEX H(POST /testUpload)] [LOG] 'testUpload request' Headers { host: 'tremendous-dodo-311.convex.site', 'user-agent': 'curl/8.7.1', 'content-length': '65536', accept: '*/*', 'content-type': 'application/octet-stream', 'x-forwarded-for': '23.93.82.19', 'x-forwarded-host': 'tremendous-dodo-311.convex.site', 'x-forwarded-proto': 'https', 'accept-encoding': 'gzip', 'convex-request-id': '44e18bed7a191bd8' }
4/17/2025, 3:25:39 PM [CONVEX H(POST /testUpload)] Your request couldn't be completed. Try again later.
4/17/2025, 3:25:28 PM [CONVEX H(POST /testUpload)] [LOG] 'testUpload request' Headers { host: 'tremendous-dodo-311.convex.site', 'user-agent': 'curl/8.7.1', 'content-length': '32768', accept: '*/*', 'content-type': 'application/octet-stream', 'x-forwarded-for': '23.93.82.19', 'x-forwarded-host': 'tremendous-dodo-311.convex.site', 'x-forwarded-proto': 'https', 'accept-encoding': 'gzip', 'convex-request-id': '2a7295d5e92b3420' }
4/17/2025, 3:25:39 PM [CONVEX H(POST /testUpload)] [LOG] 'testUpload request' Headers { host: 'tremendous-dodo-311.convex.site', 'user-agent': 'curl/8.7.1', 'content-length': '65536', accept: '*/*', 'content-type': 'application/octet-stream', 'x-forwarded-for': '23.93.82.19', 'x-forwarded-host': 'tremendous-dodo-311.convex.site', 'x-forwarded-proto': 'https', 'accept-encoding': 'gzip', 'convex-request-id': '44e18bed7a191bd8' }
4/17/2025, 3:25:39 PM [CONVEX H(POST /testUpload)] Your request couldn't be completed. Try again later.
81 replies
CCConvex Community
Created by RJ on 3/18/2025 in #support-community
Increased incidences of generic failure + warning
In both cases output from curl is
HTTP/2 200
content-type: text/plain;charset=UTF-8
date: Thu, 17 Apr 2025 22:07:47 GMT
x-convex-usher: 1
content-length: 17

{"hello":"world"}%
HTTP/2 200
content-type: text/plain;charset=UTF-8
date: Thu, 17 Apr 2025 22:07:47 GMT
x-convex-usher: 1
content-length: 17

{"hello":"world"}%
81 replies
CCConvex Community
Created by RJ on 3/18/2025 in #support-community
Increased incidences of generic failure + warning
Hi, I'm seeing something similar... I have a route
http.route({
path: "/testUpload",
method: "POST",
handler: httpAction(async (ctx, request) => {
console.log("testUpload request", request.headers);
return new Response(JSON.stringify({ hello: "world" }), { status: 200 });
}),
});
http.route({
path: "/testUpload",
method: "POST",
handler: httpAction(async (ctx, request) => {
console.log("testUpload request", request.headers);
return new Response(JSON.stringify({ hello: "world" }), { status: 200 });
}),
});
and I'm exercising it with either 32kB or 64kB of zeros:
curl -i 'https://tremendous-dodo-311.convex.site/testUpload' -X 'POST' --data-binary @32kB.bin -H "Content-Type: application/octet-stream"
curl -i 'https://tremendous-dodo-311.convex.site/testUpload' -X 'POST' --data-binary @32kB.bin -H "Content-Type: application/octet-stream"
In both cases I get the expected response, but the 64kB also shows a 500 in the logs with "Your request couldn't be completed. Try again later."
81 replies
CCConvex Community
Created by justin on 4/11/2024 in #support-community
File previews/image thumbnailing
@Michal Srb any chance this might be on your roadmap? 🙂
5 replies
CCConvex Community
Created by Cam on 4/30/2024 in #support-community
How can I create a table that is capable of location based queries (Geospatial)
Geohashes would do it
5 replies