Done
- Found a bug in GCC compiler optimization (-O3)
- Changed the compiler from gcc-5 to gcc-7
- Completed query 4 and 6
To-do
- To work on query 9 (with total 6 joins)
- To complete all queries by the end of this month
- To start writing paper at the beginning of October
Answer the following questions.
- What is the problem?
- Lack of a programming interface for UDFs
- Database optimizations lag off compiler optimizations
- Why is it important?
- Performance is the king
- Productivity
- Why is it hard?
- Hard to utilize modern hardware
- E.g. MonetDB backend
- Why hasn't it been solved already?
- DB researchers think high-level impl. could hurt the holistic performance
- Low-level efficient impl. is preferred
- What is your solution?
- Array programming + compiler optimizations
- Why is it a favorite?
- A fit combination of array programming and column-based DB
Done
To-do
Answer the following questions.