From b4bf457f5ab1e9cc0b0694d6a82c6b78b0d64e00 Mon Sep 17 00:00:00 2001 From: Adrien Guillo Date: Thu, 4 Jul 2024 15:32:22 +0200 Subject: [PATCH] Add `Google Cloud Storage` to list of supported storage providers --- docs/configuration/storage-config.md | 3 ++- quickwit/quickwit-config/src/storage_config.rs | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/configuration/storage-config.md b/docs/configuration/storage-config.md index e62c339d519..a1bc613fe3f 100644 --- a/docs/configuration/storage-config.md +++ b/docs/configuration/storage-config.md @@ -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 diff --git a/quickwit/quickwit-config/src/storage_config.rs b/quickwit/quickwit-config/src/storage_config.rs index 3a12f9b385d..a2485a9cf79 100644 --- a/quickwit/quickwit-config/src/storage_config.rs +++ b/quickwit/quickwit-config/src/storage_config.rs @@ -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)]