github.com/muhammadn/cortex@v1.9.1-0.20220510110439-46bb7000d03d/docs/chunks-storage/_index.md (about) 1 --- 2 title: "Chunks Storage (deprecated)" 3 linkTitle: "Chunks Storage (deprecated)" 4 weight: 4 5 menu: 6 --- 7 8 **Warning: the chunks storage is deprecated. You're encouraged to use the [blocks storage](../blocks-storage/_index.md).** 9 10 The chunks storage is a Cortex storage engine which stores each single time series into a separate object called _chunk_. Each chunk contains the samples for a given period (defaults to 12 hours). Chunks are then indexed by time range and labels, in order to provide a fast lookup across many (over millions) chunks. For this reason, the Cortex chunks storage requires two backend storages: a key-value store for the index and an object store for the chunks. 11 12 The supported backends for the **index store** are: 13 14 * [Amazon DynamoDB](https://aws.amazon.com/dynamodb) 15 * [Google Bigtable](https://cloud.google.com/bigtable) 16 * [Apache Cassandra](https://cassandra.apache.org) 17 18 The supported backends for the **chunks store** are: 19 20 * [Amazon DynamoDB](https://aws.amazon.com/dynamodb) 21 * [Google Bigtable](https://cloud.google.com/bigtable) 22 * [Apache Cassandra](https://cassandra.apache.org) 23 * [Amazon S3](https://aws.amazon.com/s3) 24 * [Google Cloud Storage](https://cloud.google.com/storage/) 25 * [Microsoft Azure Storage](https://azure.microsoft.com/en-us/services/storage/) 26 27 ## Storage versioning 28 29 The chunks storage is based on a custom data format. The **chunks and index format are versioned**: this allows Cortex operators to upgrade the cluster to take advantage of new features and improvements. This strategy enables changes in the storage format without requiring any downtime or complex procedures to rewrite the stored data. A set of schemas are used to map the version while reading and writing time series belonging to a specific period of time. 30 31 The current schema recommendation is the **v9 schema** for most use cases and **v10 schema** if you expect to have very high cardinality metrics (v11 is still experimental). For more information about the schema, please check out the [schema configuration](schema-config.md). 32 33 ## Guides 34 35 The following step-by-step guides can help you setting up Cortex running with the chunks storage: 36 37 - [Getting started with Cortex chunks storage](./chunks-storage-getting-started.md) 38 - [Running Cortex chunks storage in Production](./running-chunks-storage-in-production.md) 39 - [Running Cortex chunks storage with Cassandra](./running-chunks-storage-with-cassandra.md)