Skip to content

Update Superset demo with non-ISO 8601 timestamp #4707

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions resources/examples/airflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,10 @@ Head over to http://localhost:8088 to get to the Superset UI. Enter `admin` as y

![](./assets/superset_database_setup.png)

```
docker exec airbyte-destination psql -U postgres -c "ALTER TABLE stargazers ADD COLUMN starred_ts timestamp;"
docker exec airbyte-destination psql -U postgres -c "UPDATE stargazers SET starred_ts = starred_at::timestamptz;"
```

## Cleaning Up
Run `down.sh` to clean up the containers. Or run `docker-compose down -v` here and in the root directory, your call.
3 changes: 2 additions & 1 deletion resources/examples/airflow/up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ docker exec -ti airflow_webserver airflow connections add 'airbyte_example' --co
echo "Access Airflow at http://localhost:8085 to kick off your Airbyte sync DAG."
echo "Attempting to remove previous Superset installation."
docker-compose -f superset/docker-compose-superset.yaml down -v
docker-compose -f superset/docker-compose-superset.yaml up -d
docker-compose -f superset/docker-compose-superset.yaml up -d
echo "Access Superset at http://localhost:8088 to set up your dashboards."