Google big query rate limiting in Function that does not use it

I am getting this error in a function that just queries Supabase, not Google Big Query

{
  "code": 403,
  "errors": [
    {
      "domain": "usageLimits",
      "message": "Exceeded rate limits: too many api requests per user per method for this user_method (JobService.query). For more information, see https://cloud.google.com/bigquery/docs/troubleshoot-quotas",
      "reason": "rateLimitExceeded"
    }
  ],
  "message": "Exceeded rate limits: too many api requests per user per method for this user_method (JobService.query). For more information, see https://cloud.google.com/bigquery/docs/troubleshoot-quotas",
  "status": "PERMISSION_DENIED"
}

The options of how to fix it returned by the assistant do not make so much sense
  • the function only depends on supabase, no google used here
  • the function does not use any other shared library etc so the only dependency is deno and "import { createClient } from "https://esm.sh/@supabase/supabase-js@2.39.3";"
  • the error is from the logs section of the current function i m troubleshooting
Was this page helpful?