开发环境搭建步骤
建议使用mac和ubuntu系统,同事刚开始使用windows安装,过程中遇到很多问题,改用ubuntu系统,本文适用mac和ubuntu系统。
官网建议使用虚拟机或Docker
Windows users: while it should be possible to run Redash on a Windows machine, we don't know anyone who did this and lived to tell. We recommend using some sort of a virtual machine or Docker in such case.
1.github获取代码及安装需要的python包
https://github.com/getredash/...
以下安装过程使用master分支作为开发环境版本,release/6.0.x、release/7.0.0也适用。
2.修改Python解释器版本
redash适用python2.7开发。
3.创建application
4.创建数据库并建表
本地安装pgsql并创建数据库,安装pgsql的过程此处省略,可以百度查下。
修改redash下面settings/__init__.py数据库连接信息
Terminal运行表创建语句
./manage.py database create_tables
5.本地安装redis并启动
过程读者可以百度查下,本地安装redis之后redash关于redis的配置不需要修改。
6.打包前端
Terminal运行npm install
,install 完成后运行运行npm run watch
或者运行npm run build
7.Terminal运行命令启动celery
celery如果不启动,在查询sql的时候,查询会一直处于等待状态。
celery worker --app=redash.worker --beat -Qscheduled_queries,queries,celery -c2
debug模式启动
celery worker --app=redash.worker --beat --loglevel=INFO -Qscheduled_queries,queries,celery -c2
启动成功后显示如下:
8.运行application
完成注册之后浏览data source
笔者在data source遇到个问题,安装完之后仅显示部分数据源,没有mysql,hive等。
经排查发现mysqldb,hive模块引入失败
运行pip install MySQLdb报如下错误Could not find a version that satisfies the requirement MySQLdb (from versions: )No matching distribution found for MySQLdb
可以参考篇文章https://blog.51cto.com/legeha...
Terminal运行
pip install MySQL-python
成功后显示如下:
笔者运行时本地已安装好mysql,同事使用Ubuntu,遇到了文章中同样的问题,本地环境没有安装mysql,安装mysql之后,运行 pip install MySQL-python,也顺利完成。
注意:MySQL-python 安装完成之后需要重启celery,否则在创建好数据源之后查询的时候会报如下错误:
Error running query: 'NoneType' object has no attribute 'annotate_query'
到此为止,redash安装成功。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。