HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Arimbr

no profile record

Submissions

AI's Event Backbone

altertable.ai
1 points·by Arimbr·14 giorni fa·0 comments

Bootstrapping AI Evals from Context (Why 'Just Asking Claude' Fails)

scorable.ai
1 points·by Arimbr·3 mesi fa·0 comments

My Data Quality Tools List: Tried Any?

toolsfordata.com
1 points·by Arimbr·4 mesi fa·0 comments

Metadata Is the New Oil Fueling AI

selectstar.com
4 points·by Arimbr·10 mesi fa·0 comments

Why LLMs Struggle with Text-to-SQL

selectstar.com
1 points·by Arimbr·12 mesi fa·0 comments

Maintaining API Connectors

airbyte.com
1 points·by Arimbr·2 anni fa·0 comments

How Airbyte 1.0 orchestrates data movement jobs

airbyte.com
2 points·by Arimbr·2 anni fa·0 comments

Resumable Full Refresh Data Syncs

airbyte.com
1 points·by Arimbr·2 anni fa·0 comments

Speech-to-Emoji with OpenAI Whisper and GPT-4o

speech-to-emoji.vercel.app
1 points·by Arimbr·2 anni fa·0 comments

Literal AI: multi-modal LLM app observability and evaluation

literalai.com
4 points·by Arimbr·2 anni fa·0 comments

Conduktor 2.0: Kafka Development Platform

v2.conduktor.io
1 points·by Arimbr·2 anni fa·0 comments

[untitled]

1 points·by Arimbr·2 anni fa·0 comments

Productizing Data Services

arch.dev
2 points·by Arimbr·2 anni fa·0 comments

Processing Kafka event streams in Python

pathway.com
6 points·by Arimbr·2 anni fa·1 comments

Linux Terminal Reimagined with AI

warp.dev
5 points·by Arimbr·2 anni fa·1 comments

Pathway: Python stream processing framework for logistics and supply chain data

arxiv.org
1 points·by Arimbr·2 anni fa·0 comments

From Data Engineer to YAML Engineer

juhache.substack.com
2 points·by Arimbr·2 anni fa·0 comments

Writing Fewer Data Tests

elementary-data.com
2 points·by Arimbr·3 anni fa·0 comments

Fastest data processing engine on the market – 2023 benchmarks

pathway.com
2 points·by Arimbr·3 anni fa·0 comments

dbt Cloud or dbt Core for enterprise data platform

datacoves.com
1 points·by Arimbr·3 anni fa·0 comments

comments

Arimbr
·2 anni fa·discuss
I like the YAML abstraction. This should make it easier to programmatically try and evaluate multiple configurations for the whole AI pipeline (not just the LLM) against a dataset or real users through an API deployment.

Some feedback: It would be great to see in one place all the supported fields and values for the YAML config.
Arimbr
·2 anni fa·discuss
What is an hybrid index?
Arimbr
·2 anni fa·discuss
Nice, thanks! I was reading https://pathway.com/developers/user-guide/deployment/persist.... If I understand correctly you persist both source data and internal state, including the intermediary state of the computational graph. And you only rely on the backend to recover from failures and upgrades. So if I want to clone a Pathway instance, I don't need to reprocess all source data, I can recover the intermediary state from the snapshot.

Is it the same logic for the VectorStoreServer? https://pathway.com/developers/user-guide/llm-xpack/vectorst...
Arimbr
·2 anni fa·discuss
If all the pipeline and the vector index is keep in memory... does Pathway still persist state somewhere?
Arimbr
·2 anni fa·discuss
The AI Connector Builder from API docs is insane! Which API doc specifications will it support? Or does it even matter?
Arimbr
·2 anni fa·discuss
Interesting implementation! For complex stream and text processing, I also prefer processing data in memory with Python (ETL) rather than SQL in the warehouse (ELT).
Arimbr
·3 anni fa·discuss
I see the ingested documents in the data folder don't have an id field, only a doc field.

{"doc": "Using Large Language Models in Pathway is simple: just call the functions from `pathway.stdlib.ml.nlp`!"}

What if I pass two contradictory statements? Is there a way to remove (or better update) a document with a new version?

For example, if I am ingesting some public docs, and I update a doc page. How do I make so that it only takes the answer from the latest document version?
Arimbr
·3 anni fa·discuss
Hi, interesting!

> Then it processes and organizes these documents by building a 'vector index' using the Pathway package.

What is the Pathway package?
Arimbr
·3 anni fa·discuss
Nice list of resources!
Arimbr
·4 anni fa·discuss
Thanks for the feedback! Recently a community member created a Terraform provider: https://github.com/eabrouwer3/terraform-provider-airbyte
Arimbr
·4 anni fa·discuss
Know that there is also a CLI to manage configurations defined in YAML files. And a few options to deploy Airbyte in "one click". It's all in the README, sorry to hear you didn't find your way around our docs... There are a number of growing features and deployment options now.
Arimbr
·4 anni fa·discuss
My bet: Data testing, data monitoring and data catalog solutions will consolidate to cover data quality all together.
Arimbr
·4 anni fa·discuss
The future is EtLT! t for data privacy transformations and T for the rest.
Arimbr
·4 anni fa·discuss
Oh, declarative doesn't necessarily mean no-code. Airbyte data integration connectors are built with an SDK in Python, Java, and a low-code SDK that was just released...

You can then build custom connectors on top of these and many users actually need to modify an existing connector, but would rather start from a template than from scratch.

Airbyte also provides a CLI and YAML configuration language that you can use to declare sources, destinations and connections without the UI: https://github.com/airbytehq/airbyte/blob/master/octavia-cli...

I agree with you that code is here to stay and power users need to see the code and modify it. That's why Airbyte code is open-source.
Arimbr
·4 anni fa·discuss
Interesting to see how modern data orchestrators seem to be adding some of the features of data catalogs and data observability tools.
Arimbr
·4 anni fa·discuss
Sorry, wrong link, and I couldn't delete the post. I reposted with the correct link to: https://airbyte.com/blog/sql-vs-python-data-analysis
Arimbr
·4 anni fa·discuss
Nice article! I also tend to favor SQL for simple querying and data processing with dbt, but when I need to unit test some complex logic, I prefer Python.
Arimbr
·5 anni fa·discuss
I like how Prefect is positioned as an orchestrator for the modern data stack.

Airflow also started as an orchestrator, but then they tried to cover all sorts of other use cases like ETL/ELT pipelines with transfer and transformation operators...

I feel like Prefect focuses on doing one thing, orchestration, and then integrates with other data tools.
Arimbr
·5 anni fa·discuss
Airbyte CDC is based on Debezium, but Airbyte abstracts it away and make it easier to CDC from Postgres, MySQL, MSSQL to any supported destination (included S3). Here is the doc for CDC: https://docs.airbyte.io/understanding-airbyte/cdc

I guess one benefit is that you can use Airbyte for all your data syncs, CDC and non-CDC. You can give it a try with your own data, and see if it's easier for your team. You can run Airbyte locally with Docker Compose: https://docs.airbyte.io/quickstart/deploy-airbyte
Arimbr
·5 anni fa·discuss
Nice work there! I also think that the next challenge for data teams is all this data documentation and discovery work.

I still think that Airflow is great for power data engineers. Airbyte and dbt are positioned to empower data analysts (or lazy data engineers like me) to own the ELTs.