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


   # My 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 works
   - [ ] Write a document about my experiences & how to deploy
   - [ ] Figure out where should I put the document inside the Superset Github 
repository
   - [ ] Send a Pull Request
   
   # Conclusion
   This could take me a couple of weeks, I would update my progress here 
regularly


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to