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
{ | |
"list": [ | |
[{ | |
"id": 0, | |
"type": "relationship", | |
"label": "KNOWS", | |
"properties": { | |
"since": 1993 | |
}, | |
"start": { |
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
{ | |
"list": [ | |
[{ | |
"id": 0, | |
"type": "relationship", | |
"label": "KNOWS", | |
"properties": { | |
"since": 1993 | |
}, | |
"start": { |
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
version: '3' | |
services: | |
neo4j: | |
image: neo4j | |
networks: | |
- host | |
ports: | |
- 7474:7474 | |
- 7687:7687 |
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
FROM apache/zeppelin:0.8.0 | |
# Workaround to "fix" https://issues.apache.org/jira/browse/ZEPPELIN-3586 | |
RUN echo "$LOG_TAG Download Spark binary" && \ | |
wget -O /tmp/spark-2.3.1-bin-hadoop2.7.tgz http://apache.panu.it/spark/spark-2.3.1/spark-2.3.1-bin-hadoop2.7.tgz && \ | |
tar -zxvf /tmp/spark-2.3.1-bin-hadoop2.7.tgz && \ | |
rm -rf /tmp/spark-2.3.1-bin-hadoop2.7.tgz && \ | |
mv spark-2.3.1-bin-hadoop2.7 /spark-2.3.1-bin-hadoop2.7 | |