I want to load data with 4 columns and 80 million rows into MySQL on Redis so that I can reduce the sampling delay.
However, when I try to download all the data, it gets 5 times bigger.
The original data was 3gb (when exporting to csv format), but when I upload it to Redis, it takes 15 GB ... it is too large for our system.
I also tried different data types -
1) 'table_name: row_number: column_name' β string 2) 'table_name: row_number' β hash
but they are all too much.
Am I missing something?
added)
my data has 4 col - (user id (pk), account, creation time and date)
source share