You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2022/02/08 09:16:45 UTC

[GitHub] [superset] 1c7 commented on issue #18616: [SIP-81] Proposal for writing a detail document about how to properly deploy Superset for production environment

1c7 commented on issue #18616:
URL: https://github.com/apache/superset/issues/18616#issuecomment-1032382576


   ## Current progress:
   - [x] write a Dockerfile that base on Dockerhub `apache/superset`
   Dockerfile
   ```
   FROM apache/superset 
   # ..etc
   ```
   
   - [x] Install ClickHouse driver and use `superset_config.py` to config superset
   ```
   FROM apache/superset 
   
   USER root
   RUN pip install clickhouse-driver==0.2.0 && pip install clickhouse-sqlalchemy==0.1.6
   USER superset
   
   COPY superset_config.py /app/pythonpath/superset_config.py
   ```
   
   - [x] Figure out how to set PostgreSQL as Superset metadata database (instead of using default SQlite)
   
   - [ ] Figure out what other component I need to config/setup
     - [ ] Caching with `CACHE_CONFIG` and `DATA_CACHE_CONFIG`
     - [ ] Celery for long running queries
     - [ ] Is there other component I am missing ?
   
   - [ ] Deploy Superset on AWS ECS and make sure it work
   - [ ] Write a document about my experiences & how to deploy
   - [ ] Figure out where should I put the document inside Superset Github repository
   - [ ] Send a Pull Request
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org