Let's say you receive data from various customers, in following format :
DataEntry : {
id : Integer
time : DateTime
value : Double
}
You wish to run queries like average, sum , max etc for a fixed time period (Interview said couple of hours). Now, One DataEntry is coming every nano second. Which one would you choose between RowStore or ColumnStore and why ?
I tried to give my reason to favor column store but interviewer's response was always that one can throw in data in a MySQL(RowStore) and make it work. I tried to give following answers but interviewer wasn't convinced :
Although, interviewers didn't expilcity said this but I felt like his question was this : What advantage does Column Store give over Row Store if scaling is not a problem? I might be wrong though.
Any help is appreciated. Thanks.