superset 安装部署

源码部署  http://airbnb.io/superset/installation.html

  1. 安装Python环境依赖
    1. sudo yum upgrade python-setuptools
      sudo yum install gcc libffi-devel python-devel python-pip python-wheel openssl-devel libsasl2-devel openldap-devel

  2. 安装虚拟化环境
    1. 安装Python3.4
    2. pip install virtualenv --no-site-packages -p python3.4  env_name
    3. source env_name/bin/activate      
    4. MACOS              LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install cryptography==1.5.3

  3. 安装Caravel模块
    1. 安装用豆瓣源 http://www.tuicool.com/articles/6zMNb2       pip(pip install)和easy_install(python install)两种都设置
    2. 到 setup.py目录     python setup.py install
  4. mysql metadata
    1. pip install mysqlclient  -i https://pypi.douban.com/simple

  5. assests部署

    1. sh superset/assets/js_build.js

    2. npm 安装淘宝镜像


       

Mysql latin1问题

数据源连接加charset=utf8

问题汇总

 

  1. Mysql latin1问题数据源
         连接加charset=utf8
  2. sql_lab生成的表
    1. (_mysql_exceptions.OperationalError) (1305, 'FUNCTION superset.count_distinct does not exist') 
      修改 SQL Expression  count(distinct id)
    2. exception :'NoneType' object has no attribute 'sqla_col'

      加默认一个Metric = count 的 ListSqlMetric

  3. 汉化
    1. superset/config.py


      BABEL_DEFAULT_LOCALE = 'zh'
      LANGUAGES = {
      # 'en': {'flag': 'us', 'name': 'English'},
      # 'fr': {'flag': 'fr', 'name': 'French'},
      'zh': {'flag': 'cn', 'name': 'Chinese'},
      }

    2. http://flask-appbuilder.readthedocs.io/en/latest/i18n.html

    3. http://blog.csdn.net/lichengtongxiazai/article/details/22270561

      编译成mo文件
      pybabel compile -d translations

       

服务器上源码安装

  1. 本地 python setup.py sdist

      2. scp sdist/superset.tar.gz 

      3. tar -zxvf superset.tar.gz 

      4. python setup.py install

      5. superset runserver -d -p 8089

本地debug模式

在入口 --init.py–最后加上

app.run(port=8089,debug=True)

 

你可能感兴趣的:(superset 安装部署)