I'm wondering about the largest linear erasure codes you can make given that shards are an elements of a particular finite field.
If you have $D$ data shards and $P$ parity shards, and a finite field $\mathbb{F}_q$, the classic $D+P$ systematic Reed-Solomon encoding is to fit a polynomial function $f$ to $D$ points, and then evaluate it at $P$ extra points such that any subset of $D$ points is enough to reconstruct the polynomial and thus the original points. This works as long as $D+P \le q$.
If $D+P > q$, there are still linear codes that can work. For example, in $\mathbb{F}_2$ (and indeed in any field), the $D+1$ code that generates a parity shard as the sum of the data shards, and the $1+P$ code that makes P copies of the one data shard both work.
There can be other usable codes in bigger fields. In $\mathbb{F}_4$, there are also $2+3$, $3+2$, and $3+3$ codes, but no others where $D+P \gt 4$.
What's the largest code you can make for a given finite field? How can I find these codes?
In the framing of $D×P$ matrices over $\mathbb{F}_q$, the following points can be exhaustively tested and shown to be true for all $q\le 27$:
The first point is trivial to construct; take a matrix consisting entirely of $1$ elements.
Constructions are known for the middle two points, based on taking a Vandermonde matrix and then appending an extra column $\begin{bmatrix}0 & \cdots & 0 & 1\end{bmatrix}$ or two extra columns $\begin{bmatrix}0 & 0 & 1\end{bmatrix}$ and $\begin{bmatrix}0 & 1 & 0\end{bmatrix}$. See https://web.mat.upc.edu/simeon.michael.ball/Cardona2011.pdf
The last point is conjectured to be true for all $q$, and this is known as "the MDS conjecture" (Segre 1955). It has been shown to be true for prime $q$, but the general case remains unproven. See https://arxiv.org/abs/1201.5994