Commit b4ce46fc authored by Verdan Mahmood's avatar Verdan Mahmood Committed by Tamika Tannis

Add the setup line for amundsen data builder (#24)

It is important to install the amundsen data builder before running the test script locally, 
otherwise the imports won't work in the test script.
parent 321311b8
...@@ -69,8 +69,9 @@ $ docker-compose -f docker-amundsen.yml up ...@@ -69,8 +69,9 @@ $ docker-compose -f docker-amundsen.yml up
```bash ```bash
# in ~/<your-path-to-cloned-repo>/amundsendatabuilder # in ~/<your-path-to-cloned-repo>/amundsendatabuilder
$ virtualenv -p python3 venv3 $ virtualenv -p python3 venv3
$ source venv3/bin/activate $ source venv3/bin/activate
$ pip3 install -r requirements.txt $ pip3 install -r requirements.txt
$ python setup.py install
$ python example/scripts/sample_data_loader.py $ python example/scripts/sample_data_loader.py
``` ```
8. Verify dummy data has been ingested by viewing in Neo4j by visiting `http://YOUR-DOCKER-HOST-IP:7474/browser/` and run `MATCH (n:Table) RETURN n LIMIT 25` in the query box. You should see two tables -- `hive.core.test_driver` and `dynamo.core.test_pax`. 8. Verify dummy data has been ingested by viewing in Neo4j by visiting `http://YOUR-DOCKER-HOST-IP:7474/browser/` and run `MATCH (n:Table) RETURN n LIMIT 25` in the query box. You should see two tables -- `hive.core.test_driver` and `dynamo.core.test_pax`.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment