Hi,
I consider using Supabase (self-hosted) and I'm looking at the features. It seems an interesting framework I could use to build some applications for my personal usage.
I'm currently reading about edge functions and I'm wondering if it would be possible to add a "timeout" (e.g. 2 seconds) to the call, then be able to poll the status and retrieve the result later.
The use-case would be to fetch remote data and then process it, which could take more time than what an HTTP request should take in a web browser.
I'm also looking into doing my own task scheduling for this use-case, but I would need to easily be able to connect to Supabase data - I believe I can just connect using PostgreSQL as usual? I'm wondering about row security policies though.
In the future, I'm thinking of using programming languages other than Deno for developing these functions (to use tools that already exist for example), but WASM is probably what I should look into in the first place.
Thanks.