HackerTrans
TopNewTrendsCommentsPastAskShowJobs

gzel

no profile record

Submissions

SQL vs. DSL for Feature Engineering

feldera.com
4 points·by gzel·2 tahun yang lalu·0 comments

Feldera Incremental Compute Engine

github.com
145 points·by gzel·2 tahun yang lalu·55 comments

SQL powered operating system instrumentation, monitoring, and analytics

github.com
58 points·by gzel·2 tahun yang lalu·7 comments

Earthly: Like Docker for Builds

github.com
21 points·by gzel·2 tahun yang lalu·1 comments

comments

gzel
·2 tahun yang lalu·discuss
I really like the way of how feldera implemented recursion in SQL: https://docs.feldera.com/sql/recursion

All you have to do is to add a forward declaration of the view and then you can reference it in a recursive query. Makes the syntax part much easier.
gzel
·2 tahun yang lalu·discuss
This is somewhat common when high performance is needed it seems: e.g., https://github.com/feldera/feldera comes to mind which uses the same approach to compile SQL to type-safe incremental query plans in rust.