Replies: 1 comment 7 replies
-
Column oriented storage is definitely becoming more popular, but I see it as more more of a data warehouse and databases targeting more analytical solutions, because they is grouped on disk or even in-memory. So I guess it depends on what we are going for here. I have to be honest, that it wasn't what I had in mind. Another drawback, that it counterpoints the add/drop a new column benefit is that inserting and removing a row in the middle of a sorted table it would be very expensive. There are solutions to lower the cost of that, but the point is that with a column oriented storage the cost of writes is higher. Paragraph taken from the Like you said @tyt2y3 , our execution engine cannot be agnostic to both, so I vote for us sticking to row oriented storage. Then again, we are here to break new ground. What do you think? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
There is recently more interest in column oriented store.
The benefits are:
The drawbacks are:
But our execution engine cannot be agnostic to both, because the design of algorithms would depends heavily on the underlying storage model.
Beta Was this translation helpful? Give feedback.
All reactions