comparison Sphinx/source/plugins/object-storage.rst @ 885:dff54191a382

typo
author Alain Mazy <am@osimis.io>
date Mon, 24 Oct 2022 09:28:49 +0200
parents 6316d139b4a9
children a4a02709b188
comparison
equal deleted inserted replaced
884:6316d139b4a9 885:dff54191a382
258 258
259 By default, the ``HybridMode`` is ``Disabled``. This means that the plugins will access 259 By default, the ``HybridMode`` is ``Disabled``. This means that the plugins will access
260 only the object-storage. 260 only the object-storage.
261 261
262 When the ``HybridMode`` is set to ``WriteToFileSystem``, it means that new files received 262 When the ``HybridMode`` is set to ``WriteToFileSystem``, it means that new files received
263 are store on the file system. When accessing a file, it is first read from the file system 263 are stored on the file system. When accessing a file, it is first read from the file system
264 and, if it is not found on the file system, it is read from the object-storage. 264 and, if it is not found on the file system, it is read from the object-storage.
265 265
266 The ``WriteToFileSystem`` hybrid mode is useful for storing recent files on the file system for 266 The ``WriteToFileSystem`` hybrid mode is useful for storing recent files on the file system for
267 better performance and old files on the object-storage for lower cost and easier backups. 267 better performance and old files on the object-storage for lower cost and easier backups.
268 268
269 When the ``HybridMode`` is set to ``WriteToObjectStorage``, it means that new files received 269 When the ``HybridMode`` is set to ``WriteToObjectStorage``, it means that new files received
270 are store on the object storage. When accessing a file, it is first read from the object storage 270 are stored on the object storage. When accessing a file, it is first read from the object storage
271 and, if it is not found on the object-storage, it is read from the file system. 271 and, if it is not found on the object-storage, it is read from the file system.
272 272
273 The ``WriteToObjectStorage`` hybrid mode is useful mainly during a migration from file system to 273 The ``WriteToObjectStorage`` hybrid mode is useful mainly during a migration from file system to
274 object-storage, e.g, if you have deployed a VM in a cloud with local file system storage and want 274 object-storage, e.g, if you have deployed a VM in a cloud with local file system storage and want
275 to move your files to object-storage without interrupting your service. 275 to move your files to object-storage without interrupting your service.