Skip to content

Commit

Permalink
Init add Luigi Metabase project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
javainthinking committed Sep 1, 2021
1 parent ab571a3 commit aff4677
Show file tree
Hide file tree
Showing 14 changed files with 83,399 additions and 0 deletions.
32 changes: 32 additions & 0 deletions luigi_metabase/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

Execute the following command to install python, related python modules, Luigi, JDK 8 and Git.

```bash
yum install -y python39
pip3 install psycopg2
pip3 install pandas
pip3 install mlxtend
pip3 install pycountry
pip3 install luigi

yum install -y java-1.8.0-openjdk-devel.x86_64
yum install -y git
```

Then execute the following commands to install PostgreSQL client.

```
cd ~
wget http://mirror.centos.org/centos/8/AppStream/x86_64/os/Packages/compat-openssl10-1.0.2o-3.el8.x86_64.rpm
rpm -i compat-openssl10-1.0.2o-3.el8.x86_64.rpm
wget http://docs-aliyun.cn-hangzhou.oss.aliyun-inc.com/assets/attach/181125/cn_zh/1598426198114/adbpg_client_package.el7.x86_64.tar.gz
tar -xzvf adbpg_client_package.el7.x86_64.tar.gz
```

Execute the command to start luigi daemon. Once it is up and running, navigate to ``http://<ECS_EIP>:8082/``

```
luigid
```

This tutorial is modified based on [https://github.com/abhishekzambre/data-warehouse](https://github.com/abhishekzambre/data-warehouse) to running on Alibaba Cloud.
Loading

0 comments on commit aff4677

Please sign in to comment.