Is the data being written in "real time", all the time?
I would consider a couple of things.
First, I would think long and hard about not updating the indexes during "operations". That is, if you can, say, batch the index update "in the middle of the night", that would be a bonus.
Next, given the volume of your records, I would try and find an implementation that batch update the index. Most databases are designed to update their indexes one row at a time. But some have a "special mode" where it can make (or enforce) some base assumptions. For example, if the system "knows" that the data it is indexing is already sorted, it can make some good performance improvements to speed up the load.
If the query doesn't need to be "up to date" (i.e. it's typically a historical query, rather than stuff that happened in the past 5 minutes), you could likely index the data yourself quite easily, simply by sorting it by each key, and then doing a binary search on the data. This will save space as well. The MergeSort algorithm on memory mapped files can be quite performant.
Your indexes are likely going to be as large, and potentially even larger, than your raw data since your rows are quite small.
If you're searching by something as simple as "record number", then you likely don't even need an index at all, as the system will already be in record number order, and you can binary search that easily.
Really depends on how much new data you're getting every day, and how fast it's coming in.
Another option is to record the new data in its own file, then simply merge it in to the older data (and the indexes). That can be very fast. If you get, say, 1GB of data per day, and run merge at night, it's straightforward to merge the 1GB in to the master 32GB data store and indexes. Lot of I/O either way, but it's almost all bulk, sequential, streaming I/O.