TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Monorepos for Data Engineers?

1 点作者 bradhe6 天前
Hey folks, I'm working with a data engineering team trying to consolidate all their misc projects into a single monorepo. I'm used to working on monorepos in the context of regular software engineering (e.g. at my company, our monorepo is Golang, Rust, and Next.js and we use moonrepo to manage everything); however, not so much in the context of data engineering. It doesn't help that I'm not as Pythonic as I should be :). Wondering if there are known best practices I should be aware of for managing Python monorepos in the context of data engineering?

1 comment

baobun6 天前
I don&#x27;t think there&#x27;s that much to it. You probably want to have all your packages run on the same Python version anyway but also for unified CI, I guess. Consider that your next.js project could have had some data pipeline on the backend and that your new project may grow some webapps. It&#x27;s all the same in the end.<p>Keep it simple.