Skip to content

Commit

Permalink
Add Google Cloud Storage to list of supported storage providers
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload committed Jul 4, 2024
1 parent c7abc50 commit b4bf457
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/configuration/storage-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ sidebar_position: 2

## Supported Storage Providers

Quickwit currently supports three types of storage providers:
Quickwit currently supports four types of storage providers:
- Amazon S3 and S3-compatible (Garage, MinIO, ...)
- Azure Blob Storage
- Local file storage*
- Google Cloud Storage (native API)

## Storage URIs

Expand Down
4 changes: 2 additions & 2 deletions quickwit/quickwit-config/src/storage_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ pub enum StorageBackend {
Azure,
/// Local file system
File,
/// Google Cloud Storage
Google,
/// In-memory storage, for testing purposes
Ram,
/// Amazon S3 or S3-compatible storage
S3,
/// Google Cloud Storage
Google,
}

#[derive(Debug, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
Expand Down

0 comments on commit b4bf457

Please sign in to comment.