HackerTrans
热门最新趋势评论往期问答秀出招聘

secondrow

no profile record

提交

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

motherduck.com
152 分·作者 secondrow·11个月前·45 评论

If durable execution was a simpler architectural decision

dbos.dev
3 分·作者 secondrow·12个月前·1 评论

Build an open source FeatureHouse in 300 lines of code

xorq.dev
3 分·作者 secondrow·12个月前·1 评论

Composite Data Engine: Augmenting Trino with DuckDB AsOf Join

xorq.dev
2 分·作者 secondrow·去年·1 评论

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

substack.com
1 分·作者 secondrow·去年·0 评论

评论

secondrow
·17天前·讨论
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
·11个月前·讨论
FYI - https://github.com/xorq-labs/xorq
secondrow
·11个月前·讨论
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
·11个月前·讨论
This is why I liked BusinessObjects
secondrow
·11个月前·讨论
lol - don't overlook DBOS Cloud, a serverless compute platform, which also originated from the DBOS R&D project(s) at MIT/Stanford.
secondrow
·12个月前·讨论
pronounced "zork" per: https://www.xorq.dev/blog/introducing-xorq
secondrow
·12个月前·讨论
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
·12个月前·讨论
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
·去年·讨论
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
·去年·讨论
(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.