Finished up to RAID 5.

This commit is contained in:
Nicolás A. Ortega Froysa 2021-10-15 17:41:31 +02:00
parent c62c59e9c5
commit 5d9c623bdd
5 changed files with 44 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

View File

@ -44,7 +44,7 @@ una o más de las ventajas expuestas anteriormente.
\subsection{RAID 0}
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.75\linewidth]{imgs/striping.png}
\includegraphics[width=0.5\linewidth]{imgs/striping.png}
\caption{Striping con tres discos.}
\label{fig:striping}
\end{center}
@ -70,7 +70,7 @@ paralelo.
\subsection{RAID 2}
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.75\linewidth]{imgs/raid2.png}
\includegraphics[width=0.5\linewidth]{imgs/raid2.png}
\caption{Diagram of RAID 2 setup.}
\label{fig:raid2}
\end{center}
@ -88,7 +88,7 @@ ya debe de usar todos los discos.
\subsection{RAID 3}
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.75\linewidth]{imgs/raid3.png}
\includegraphics[width=0.5\linewidth]{imgs/raid3.png}
\caption{Diagram of RAID 3 setup.}
\label{fig:raid3}
\end{center}
@ -103,8 +103,48 @@ consecutivos de un mismo bloque. Mas este nivel ya casi no se usa en la
práctica.
\subsection{RAID 4}
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.5\linewidth]{imgs/raid4.png}
\caption{Diagram of RAID 4 setup.}
\label{fig:raid4}
\end{center}
\end{figure}
Al igual que RAID 3, este nivel implementa {\em striping} y un disco dedicado a
la paridad, pero a este nivel el {\em striping} sí que es a nivel de bloque.
la paridad, pero a este nivel el {\em striping} sí que es a nivel de bloque, lo
cual permite un acceso a datos más veloz, aunque la escritura pueda ser más
lenta debido a la escritura al disco de paridad. Su ventaja es que puede ser
fácilmente extendida siempre y cuando los nuevos discos estén completamente
limpios (sólo bytes de ceros).
\subsection{RAID 5}
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.5\linewidth]{imgs/raid5.png}
\caption{Diagram of RAID 5 setup.}
\label{fig:raid5}
\end{center}
\end{figure}
Funciona de manera igual que RAID 4, mas distribuye la información de paridad
entre todos los discos, lo cual para funcionar tan sólo hace falta que funcionen
todos los discos menos uno. Al faltar un solo disco, se pueden calcular los
errores a partir de la información de paridad. Dicho lo cual, este nivel precisa
de un mínimo de tres discos. Esto también mejora la velocidad de escritura
respecto al RAID 4, ya que la información de paridad se encuentra también
distribuida.
\subsection{RAID 6}
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.5\linewidth]{imgs/raid6.png}
\caption{Diagram of RAID 6 setup.}
\label{fig:raid6}
\end{center}
\end{figure}
\section{Combinación de Niveles RAID}
\section{Derechos de Autor}
Copyright \textcopyright\ 2021 Ortega Froysa, Nicolás <nicolas@ortegas.org> \\