Re: Superset default tables

2018-05-16 Thread arindos . extron

I am creating a new deployment. I would note that I have gone through the 
linked documentation and found it very lacking. I now have a instance of 
superset with its own db. Is there a way to specify multiple datasources on 
startup? I have a dockerized application and would like to take advantage of 
using container aliases via docker compose so that the user of superset doesn't 
have to manually add in these datasources via the UI after superset comes up. 


Re: Superset default tables

2018-05-15 Thread John Bodley
Hi,

I'm uncertain whether you're trying to upgrade an existing deployment or
installing a new deployment, but Superset needs it's own database (which is
specified in the SQLAlchemy URI). If you're creating a new deployment you
should follow these

instructions, which creates the necessary database tables and populate them
with the Flask App Builder (FAB) security permissions as well as the
example dataset. If you're simply upgrading to a newer version you should
follow these 
instructions.

-John

On Tue, May 15, 2018 at 10:48 AM, arindos.ext...@gmail.com <
arindos.ext...@gmail.com> wrote:

> I am attempting to deploy superset 0.24.0 with my MySQL server set in the
> ‘SQLALCHEMY_DATABASE_URI’ field. The issue I run into is superset attempts
> to create a ‘logs’ table on my database, on which I already have a table
> named logs so a create conflict occurs and superset fails to start. What
> other tables are setup by default by Superset? Can I change the name of
> them in a startup config? Is there an easy way around this problem I face?
>