Skip to main content
Supabase LogoSupabase Logo

Known Issues

Due to an issue with realtime connectivity, before creating the SupabaseClient in your Lens Studio script, set the heartbeat as follows:

const options = {
realtime: {
// Temporary fix due to a known alpha limitation, set the heartbeatIntervalMs to 2500
heartbeatIntervalMs: 2500,
},
};
this.client = createClient(
this.supabaseProject.url,
this.supabaseProject.publicToken,
options
);

Usage Limits

Snap Cloud Platform Limits are as follows. If you'd like to increase your limits, send a support request to Snap Cloud.

Currently, Lenses using Snap Cloud are able to access user-sensitive data so long as the end user grants permission. This may change with future releases: some types of user-sensitive data may be blocked irrespective of whether user permission is granted.

General

  • 2 projects
  • Unlimited total users
  • 50,000 MAU

Databases

  • Unlimited API requests
  • 500 MB database size per project
  • 5 GB egress

Edge Functions

  • 500,000 invocations

Storage

  • 1 GB total space
  • 50 MB maximum file upload size
  • Basic CDN content delivery

Realtime

  • 200 peak concurrent connections
  • 2 million messages per month
  • 250 KB max message size
Was this page helpful?
Yes
No