HackerTrans
TopNewTrendsCommentsPastAskShowJobs

secondrow

no profile record

Submissions

Why Semantic Layers Matter (and how to build one with DuckDB)

motherduck.com
152 points·by secondrow·vor 11 Monaten·45 comments

If durable execution was a simpler architectural decision

dbos.dev
3 points·by secondrow·vor 12 Monaten·1 comments

Build an open source FeatureHouse in 300 lines of code

xorq.dev
3 points·by secondrow·vor 12 Monaten·1 comments

Composite Data Engine: Augmenting Trino with DuckDB AsOf Join

xorq.dev
2 points·by secondrow·letztes Jahr·1 comments

Done Asking and Forgetting? (Chatty vs. Tabular AI Interaction)

substack.com
1 points·by secondrow·letztes Jahr·0 comments

comments

secondrow
·vor 17 Tagen·discuss
Hi x3ro - dbos marketing person here. Sorry about the contact form, which was broken for a few days last week following changes we made to the cookie management on the website.
secondrow
·vor 11 Monaten·discuss
FYI - https://github.com/xorq-labs/xorq
secondrow
·vor 11 Monaten·discuss
I’m familiar with Xorq. One of features of the Xorq library that I find interesting is that it catalogs data processing (compute) expressions as it compiles, along with call lineage. Makes reuse easier for SQL and non-SQL processing.
secondrow
·vor 11 Monaten·discuss
This is why I liked BusinessObjects
secondrow
·vor 11 Monaten·discuss
lol - don't overlook DBOS Cloud, a serverless compute platform, which also originated from the DBOS R&D project(s) at MIT/Stanford.
secondrow
·vor 12 Monaten·discuss
pronounced "zork" per: https://www.xorq.dev/blog/introducing-xorq
secondrow
·vor 12 Monaten·discuss
Making software durable and resilient to failures can be a big architectural investment. But what if it wasn't? Would we make everything durable by default?
secondrow
·vor 12 Monaten·discuss
Xorq is a Python lib https://github.com/xorq-labs/xorq that provides a declarative syntax for defining portable, composite compute stacks for different AI/ML use cases.

In this example, Xorq is used to compose an open source FeatureHouse that runs on DuckLake and interfaces via Apache Arrow Flight.

The post explains how: - The FeatureHouse is composed with Xorq - Feature leakage is avoided - The FeatureHouse can be ported to any underlying query engine (e.g., Iceberg) - Observability and lineage are handled - Feast can be integrated with it
secondrow
·letztes Jahr·discuss
Composite data engines such as the one in this Trino-DuckDB example can be created using the xorq framework to simplify multi-engine data pipelines. Useful when a dataset's native query engine does not support a required operation.

https://github.com/xorq-labs/xorq
secondrow
·letztes Jahr·discuss
(from DBOS) Great question. For better or worse, it seems like discussions about workflows and durable execution often intertwine. Usually ending up in what types of jobs or workflows require durable exec.

But really, any system that runs the risk of failing or committing an error should have something in place to observe it, undo it, resume it. Your point about "big enough scale" is true - you can write your own code to handle that, and manually troubleshoot and repair corrupted data up to a certain point. But that takes time.

By making durable execution more lightweight/seamless (a la DBOS or Restate), the use of durable execution libs become just good programming practice for any application where cost of failure is a concern.