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 コメント

Why Durable Python Execution Should Be Lightweight

dbos.dev
1 ポイント·投稿者 secondrow·2 年前·0 コメント

Is AWS Lambda costing more to wait than to compute?

dbos.dev
2 ポイント·投稿者 secondrow·2 年前·0 コメント

Moving from AWS Lambda to DBOS: Embracing Serverless Development

tmg.io
9 ポイント·投稿者 secondrow·2 年前·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.
secondrow
·2 年前·議論
If your application is Python or TS based, you can check out the DBOS libraries, which do that.