-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Init add Luigi Metabase project files.
- Loading branch information
1 parent
ab571a3
commit aff4677
Showing
14 changed files
with
83,399 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.