Data residency

When you sign up with Bucket you are automatically using our global infrastructure to guarantee low latency from your users' clients to our servers. However if for any reason you need your users' data to stay inside EU you can contact us as hello@bucket.co and request we change your data residency to EU only.

By default our SDKs connect to front.bucket.co. This points to our globally distributed edge servers and requests to this domain will be served generally by a server closest to the user. However if you're using the EU data residency you must change the host to front-eu.bucket.co when configuring the SDK, to make sure the requests always land on one of our EU servers.

Here's how you can set the host in our Browser SDK and Node SDK:

// Browser SDK + Node SDK
const bucketClient = new BucketClient({
    publishableKey: "{YOUR_PUBLISHABLE_KEY}",
    host: "https://front-eu.bucket.co",
    ...
});
// React SDK
import { BucketProvider } from "@bucketco/react-sdk";

<BucketProvider
  publishableKey="{YOUR_PUBLISHABLE_KEY}"
  company={{ id: "acme_inc" }}
  user={{ id: "john doe" }}
  host="https://front-eu.bucket.co"
>
 ...
</BucketProvider>

Last updated