内容简介:Continuous data streams arise in many applications like the following:Sometimes these pipelines are very simple, with a linear sequence of processing steps:And sometimes these pipelines are more complex, involving branching, look-back periods, feedback int
Continuous data streams arise in many applications like the following:
- Log processing from web servers
- Scientific instrument data like telemetry or image processing pipelines
- Financial time series
- Machine learning pipelines for real-time and on-line learning
Sometimes these pipelines are very simple, with a linear sequence of processing steps:
And sometimes these pipelines are more complex, involving branching, look-back periods, feedback into earlier stages, and more.
Streamz endeavors to be simple in simple cases, while also being powerful enough to let you define custom and powerful pipelines for your application.
Why not Python generator expressions?
Python users often manage continuous sequences of data with iterators or generator expressions.
def fib():
a, b = 0, 1
while True:
yield a
a, b = b, a + b
sequence = (f(n) for n in fib())
However iterators become challenging when you want to fork them or control the flow of data. Typically people rely on tools like itertools.tee , and zip .
x1, x2 = itertools.tee(x, 2) y1 = map(f, x1) y2 = map(g, x2)
However this quickly become cumbersome, especially when building complex pipelines.
以上所述就是小编给大家介绍的《Streamz: Python pipelines to manage continuous streams of data》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数据资本时代
Viktor Mayer-Schnberger / 李晓霞、周涛 / 中信出版集团股份有限公司 / 2018-11-1 / CNY 58.00
【编辑推荐】 大数据除了能对我们的生活、工作、思维产生重大变革外,还能够做什么?畅销书《大数据时代》作者舍恩伯格在新书《数据资本时代》中,展示了大数据将如何从根本上改变经济——这并不是因为数据是一种新型石油,而是因为数据是一种新型润滑脂,它将给市场带来巨大能量,给公司带来巨大压力,使金融资本的作用大大削弱。赢家是市场,而并非资本。 这本书在当下国内出版,可以说恰逢其时。时下,中国经济正......一起来看看 《数据资本时代》 这本书的介绍吧!