Skip to main content

Bucket Locations

Overview

A bucket's location defines how and where your object data is stored. You choose a location type when you create a bucket, and it determines the data placement, replication behavior, availability, and consistency model for all objects in that bucket.

Tigris supports four bucket location types:

Location TypeDescription
GlobalData distributed globally (default)
Multi-regionHighest availability across regions in a chosen geography
Dual-regionHigh availability across specific regions of your choice
Single-regionData redundancy across availability zones in one region

Location Types

Global

Global is the default location type and is unique to Tigris. Data is distributed globally and automatically stored closest to the request origin. As access patterns change, data migrates to where it's most frequently needed.

PropertyDetail
Data PlacementSingle copy, distributed globally based on access patterns
AvailabilityData follows your users — accessible from any region
ConsistencyStrong consistency for requests in the same region. Eventual consistency globally.
ReplicationMetadata pushed to all regions. Data pulled on demand and cached locally.

How it works:

  1. When you upload an object, it is stored in the region nearest to the upload origin.
  2. Metadata is replicated to all Tigris regions.
  3. When the object is accessed from a different region, a local copy is created in that region automatically.
  4. Over time, data migrates to regions where it's accessed most frequently.

Best for: Global applications with distributed users, media delivery, and any use case where you want zero-configuration global performance.

info

Global is the default location type. If you create a bucket without specifying a location type, it will be Global.

Multi-Region

Multi-region provides the highest availability by maintaining two or more copies of your data across regions within a chosen geography. You select the geography (USA or EUR) when creating the bucket — Tigris automatically selects the regions within that geography where data is stored.

PropertyDetail
Data PlacementData residency across 2+ regions in the chosen geography
AvailabilityHighest — survives individual regional failures within the geography
ConsistencyStrong consistency globally
ReplicationData is replicated across regions within the geography

Supported geographies:

GeographyCandidate Regions
USAsjc (San Jose), ord (Chicago), iad (Ashburn)
EURams (Amsterdam), fra (Frankfurt)

Best for: Mission-critical data requiring the highest availability, enterprise workloads where regional failures cannot cause downtime, and applications that need strong consistency globally with geographic redundancy.

Dual-Region

Dual-region provides high availability by maintaining data residency across specific regions of your choice. Unlike multi-region, you have explicit control over exactly which regions store your data.

PropertyDetail
Data PlacementData residency across your chosen regions
AvailabilityHigh — survives single region failure
ConsistencyStrong consistency for requests in the same region. Eventual consistency globally.
ReplicationData is replicated between the chosen regions

Region pairing: You can pair any two Tigris regions. Common examples:

Use CaseRegion Pair
EU data residency with redundancyfra + ams
EU with UK coveragelhr + fra
US East-West redundancyiad + sjc
US with low-latency failoveriad + ord
Cross-continent (Americas + Asia)sjc + sin

Best for: Compliance or policy requirements that mandate data residency in specific regions. If your primary goal is geographic redundancy without a strict two-region constraint, consider multi-region for higher availability, stronger consistency, and better cost-effectiveness.

Single-Region

Single-region stores your data with redundancy across availability zones within a single region. This gives you full control over data residency while maintaining durability within the region.

PropertyDetail
Data PlacementRedundant across availability zones in one region
AvailabilityStandard — single region availability
ConsistencyStrong consistency globally
ReplicationRedundancy within the region's availability zones

You can find the list of available regions in the Regions Reference.

Best for: Strict data residency and sovereignty requirements, cost optimization for region-local workloads, and applications where compute and storage are co-located in the same region.

Choosing a Location Type

Decision Guide

Your requirementRecommended location type
Global users, lowest latency everywhere, zero configurationGlobal
Highest availability, strong consistency globallyMulti-region
Geographic redundancy at the best priceMulti-region
Mission-critical, cannot tolerate regional outagesMulti-region
Strict data residency in a single geographySingle-region
Compliance requiring data in specific regionsDual-region
info

For most workloads that need geographic redundancy, we recommend multi-region over dual-region. Multi-region provides higher availability, strong global consistency, and is typically more cost-effective. Choose dual-region only when compliance or policy requires data in specific regions.

Consistency Model Summary

Location TypeSame-region requestsCross-region requests
GlobalStrong consistencyEventual consistency
Multi-regionStrong consistencyStrong consistency
Dual-regionStrong consistencyEventual consistency
Single-regionStrong consistencyStrong consistency

Availability Comparison

Location TypeFailure tolerance
Multi-regionSurvives regional failures within geography
Dual-regionSurvives failure of one of the regions
GlobalData accessible from any surviving region
Single-regionAvailability zone redundancy within region

Considerations

Performance

  • For the lowest latency with zero configuration, use Global. Data automatically moves to where it's accessed most.
  • If your workload is concentrated in one geography, Multi-region gives you both performance and the highest availability.
  • If compute and storage are co-located, Single-region eliminates cross-region latency entirely.

Compliance and Data Residency

  • Single-region gives you the strictest data residency — data never leaves the chosen region.
  • Dual-region lets you maintain data residency across more than one region, useful for regulations that allow data within a defined set of jurisdictions (e.g., two EU regions for GDPR compliance).
  • Multi-region constrains data to a geography (e.g., Europe), but Tigris selects the specific regions within it.
  • Global distributes data based on access patterns — not suitable for strict data residency requirements.

Cost

  • Single-region has the lowest storage cost — one region, no cross-region replication.
  • Dual-region is billed at the single-region price for each underlying region. For example, a dual-region bucket spanning iad and ord is billed for iad and for ord — effectively doubling your storage cost compared to a single-region bucket.
  • Multi-region has a higher per-GB storage price than single-region, but you are billed once — not per underlying region. For most workloads requiring geographic redundancy, multi-region is more cost-effective than dual-region while also providing higher availability and strong global consistency.
  • Global is cost-effective for globally accessed data because replication happens on demand rather than eagerly.