http://stackoverflow.com/questions/25415424/whats-an-efficient-way-to-store-a-time-series
Group the data by TYPE (what I'd like, ideally)
A timestamp in ms is 8 bytes, the 2 floats could be real of 4 bytes each
16*3091472167 = 49463554672 bytes ~ 46GiB ~ nearly 3 times the zipped files
Group by month
Each timestamp is now between 0 and 2678400000, which fits a 4b integer
Using a smallint for storing the difference from the first float
All the types are columns