From e89ea96470bf21b0d7a3c93a6f4d47f73d0f1b44 Mon Sep 17 00:00:00 2001 From: mmattel Date: Thu, 4 May 2023 08:58:56 +0200 Subject: [PATCH 1/2] [docs-only] Add readme.md note to not use xattrs anymore --- services/storage-system/README.md | 4 ++++ services/storage-users/README.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/services/storage-system/README.md b/services/storage-system/README.md index d425acee5f..11ac75a2b8 100644 --- a/services/storage-system/README.md +++ b/services/storage-system/README.md @@ -2,6 +2,10 @@ Purpose and description to be added +## Deprecated Metadata Backend + +Starting with ocis version 3.0.0, the default backend for metadata switched to messagepack. If the settings `STORAGE_SYSTEM_OCIS_METADATA_BACKEND` **AND** `STORAGE_USERS_OCIS_METADATA_BACKEND` have not been defined manually, the backend will be migrated to `messagepack` automatically. Though still possible to manually configure `xattrs`, this setting should not be used anymore as it will be removed in a later version. + ## Caching The `storage-system` service caches file metadata via the configured store in `STORAGE_SYSTEM_CACHE_STORE`. Possible stores are: diff --git a/services/storage-users/README.md b/services/storage-users/README.md index 8952368ce1..bd961d48da 100644 --- a/services/storage-users/README.md +++ b/services/storage-users/README.md @@ -2,6 +2,10 @@ Purpose and description to be added +## Deprecated Metadata Backend + +Starting with ocis version 3.0.0, the default backend for metadata switched to messagepack. If the settings `STORAGE_SYSTEM_OCIS_METADATA_BACKEND` **AND** `STORAGE_USERS_OCIS_METADATA_BACKEND` have not been defined manually, the backend will be migrated to `messagepack` automatically. Though still possible to manually configure `xattrs`, this setting should not be used anymore as it will be removed in a later version. + ## CLI Commands ### Manage Unfinished Uploads From 62a93bc9c401b6e65fcd5c3f76fc40005345afd1 Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 4 May 2023 09:06:46 +0200 Subject: [PATCH 2/2] Apply suggestions from code review --- services/storage-system/README.md | 2 +- services/storage-users/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/storage-system/README.md b/services/storage-system/README.md index 11ac75a2b8..335ef874e2 100644 --- a/services/storage-system/README.md +++ b/services/storage-system/README.md @@ -4,7 +4,7 @@ Purpose and description to be added ## Deprecated Metadata Backend -Starting with ocis version 3.0.0, the default backend for metadata switched to messagepack. If the settings `STORAGE_SYSTEM_OCIS_METADATA_BACKEND` **AND** `STORAGE_USERS_OCIS_METADATA_BACKEND` have not been defined manually, the backend will be migrated to `messagepack` automatically. Though still possible to manually configure `xattrs`, this setting should not be used anymore as it will be removed in a later version. +Starting with ocis version 3.0.0, the default backend for metadata switched to messagepack. If the setting `STORAGE_SYSTEM_OCIS_METADATA_BACKEND` has not been defined manually, the backend will be migrated to `messagepack` automatically. Though still possible to manually configure `xattrs`, this setting should not be used anymore as it will be removed in a later version. ## Caching diff --git a/services/storage-users/README.md b/services/storage-users/README.md index bd961d48da..eac344ed30 100644 --- a/services/storage-users/README.md +++ b/services/storage-users/README.md @@ -4,7 +4,7 @@ Purpose and description to be added ## Deprecated Metadata Backend -Starting with ocis version 3.0.0, the default backend for metadata switched to messagepack. If the settings `STORAGE_SYSTEM_OCIS_METADATA_BACKEND` **AND** `STORAGE_USERS_OCIS_METADATA_BACKEND` have not been defined manually, the backend will be migrated to `messagepack` automatically. Though still possible to manually configure `xattrs`, this setting should not be used anymore as it will be removed in a later version. +Starting with ocis version 3.0.0, the default backend for metadata switched to messagepack. If the setting `STORAGE_USERS_OCIS_METADATA_BACKEND` has not been defined manually, the backend will be migrated to `messagepack` automatically. Though still possible to manually configure `xattrs`, this setting should not be used anymore as it will be removed in a later version. ## CLI Commands