File: objectstorage-characteristics.rst

package info (click to toggle)
swift 2.35.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 22,760 kB
  • sloc: python: 281,901; javascript: 1,059; sh: 619; pascal: 295; makefile: 81; xml: 32
file content (47 lines) | stat: -rw-r--r-- 1,671 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
==============================
Object Storage characteristics
==============================

The key characteristics of Object Storage are that:

-  All objects stored in Object Storage have a URL.

-  "Storage Policies" may be used to define different levels of durability
   for objects stored in the cluster. These policies support not only
   complete replicas but also erasure-coded fragments.

-  All replicas or fragments for an object are stored in as-unique-as-possible
   zones to increase durability and availability.

-  All objects have their own metadata.

-  Developers interact with the object storage system through a RESTful
   HTTP API.

-  Object data can be located anywhere in the cluster.

-  The cluster scales by adding additional nodes without sacrificing
   performance, which allows a more cost-effective linear storage
   expansion than fork-lift upgrades.

-  Data does not have to be migrated to an entirely new storage system.

-  New nodes can be added to the cluster without downtime.

-  Failed nodes and disks can be swapped out without downtime.

-  It runs on industry-standard hardware, such as Dell, HP, and
   Supermicro.

.. _objectstorage-figure:

Object Storage (swift)

.. figure:: figures/objectstorage.png

Developers can either write directly to the Swift API or use one of the
many client libraries that exist for all of the popular programming
languages, such as Java, Python, Ruby, and C#. Amazon S3 and RackSpace
Cloud Files users should be very familiar with Object Storage. Users new
to object storage systems will have to adjust to a different approach
and mindset than those required for a traditional filesystem.