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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Show HN: Pipelines – Language for scripting parrallel pipelines with Python

69 点作者 calebwin超过 6 年前

8 条评论

tedmiston超过 6 年前
This looks pretty interesting.<p>Just curious if you looked at Apache Airflow as the integration functionality and pipeline &#x2F; DAG configuration approaches are similar and it&#x27;s also done in Python.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;airflow" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;airflow</a><p>The Nim language is new to me. What was the experience like implementing a framework in it?
hultner超过 6 年前
Looks interesting but I don’t understand if the “x as x” is mandatory? Seems overly verbose if you don’t want to import it with another name?
评论 #18949898 未加载
评论 #18952537 未加载
评论 #18951077 未加载
nicois超过 6 年前
I&#x27;m not sure I understand the wins of this over just using the standard multiprocessing module.<p>You can trivially define a worker pool or arbitrary size and pipe a stream of values through your function using multiple cores, avoiding GIL issues.<p>If you have something which scales to multiple machines just use celery or redis streams.
评论 #18950201 未加载
natch超过 6 年前
Nice readme! It&#x27;s so common for projects to forget to include an introductory blurb, it&#x27;s great to see one that does not forget.<p>Small bug in the example code? I think this:<p><pre><code> return even % 2 == 0 </code></pre> Should be this:<p><pre><code> return number % 2 == 0</code></pre>
m45t3r超过 6 年前
I didn&#x27;t understand one thing: is this implemented in Nim and run Python code? If yes, why don&#x27;t run Pipelines in Nim too? Wouldn&#x27;t this be faster?
评论 #18951060 未加载
i_phish_cats超过 6 年前
wait... `&#x2F;&gt;` and `|&gt;` are python operators?
评论 #18952521 未加载
评论 #18951715 未加载
Escapado超过 6 年前
Should have named it Pypelines. But seriously though I am not sure what the benefits over multiprocessing are. It looks a little cryptic at first sight.
评论 #18952356 未加载
ako超过 6 年前
Looks very similar to R, dplyr and pipes.
评论 #18965514 未加载