> For the complete documentation index, see [llms.txt](https://ai-docs.fptcloud.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ai-docs.fptcloud.com/fpt-gpu-cloud/metal-cloud/tutorials/raid.md).

# RAID

### RAID Definition <a href="#metalcloudraid-raiddefinition" id="metalcloudraid-raiddefinition"></a>

A Redundant Array of Independent Disks (RAID) is a method of configuring member drives to create high availability and high performance systems. The RAID level provides different degrees of redundancy and performance; it also determines the number of members in the array

### RAID level <a href="#metalcloudraid-raidlevel" id="metalcloudraid-raidlevel"></a>

The RAID level is what determines the relationship of the disks.

| Level  | Description                                                                                                                                                                                                               | Drive count | Approximate array capacity | Redundancy\* |
| ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -------------------------- | ------------ |
| RAID 0 | <p>RAID 0 combines two or more disks by stripping data across them.</p><p>That chunks of data are written to each disk in the array alternately.</p>                                                                      | 1 - 8       | Drive count \* Drive size  | None         |
| RAID 1 | <p>RAID 1 is a configuration that mirrors data between two or more disks.</p><p>Everything written to the array is placed on each of the devices in the group, so each disk has a complete set of the available data.</p> | 2           | Drive size                 | 1            |

\*Redundancy means how many drive failures the array can tolerate. In some circumstances, an array can tolerate more than 1 drive failure.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ai-docs.fptcloud.com/fpt-gpu-cloud/metal-cloud/tutorials/raid.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
