本文共 753 字,大约阅读时间需要 2 分钟。
Sqlflow based on python development, support to Spark, Flink, etc as the underlying distributed computing engine, through a set of unified configuration file to complete the batch, flow calculation, the Rest service development.
主页:
结果页面:
基于python开发的分布式机器学习平台, 支持通过写sql的方式,运行spark, 机器学习算法, 爬虫。
git clone
pip install -r requirements.txt
(sqlflow/sqlflow/execute/main.py 中的data.csv需要修改成你电脑中的绝对路径,数据文件在sqlflow/data/中)
python manage.py
打开 就可以测试了。
在输入框输入:
测试1:select * from A limit 3;
测试2:
select * from A limit 3 as B;
新开一个网页, 直接就可以查询数据表B了:
select * from B limit 2;
as B 相当于创建了一个B临时表。
是不是很简单。转载地址:http://zovta.baihongyu.com/