Tested with Cloudera 5.12.0 Quickstart VM (https://www.cloudera.com/downloads/quickstart_vms/5-12.html)
| Library | Version |
|---|---|
| JanusGraph | 0.3.0-SNAPSHOT |
| TinkerPop | 3.3.0 |
| Spark | 2.2.0 |
| HBase | 1.2.0 |
| Cassandra | 2.2.11 |
| Java | 1.8.0_151 |
| { | |
| "type": "Polygon", | |
| "coordinates": [ | |
| [ | |
| [100.0, 1.0], | |
| [101.0, 1.0], | |
| [101.0, 0.0], | |
| [100.5, 0.0], | |
| [101.0, 1.0], | |
| [100.0, 0.0], |
| #!/usr/bin/python | |
| """ | |
| Script re-creates status_s index for testing. | |
| """ | |
| import os,json,sys,tempfile | |
| os.chdir(os.path.dirname(os.path.realpath(__file__))) | |
| index_name = 'status_s3' | |
| f_active = 'active_mappings.json' |
Tested with Cloudera 5.12.0 Quickstart VM (https://www.cloudera.com/downloads/quickstart_vms/5-12.html)
| Library | Version |
|---|---|
| JanusGraph | 0.3.0-SNAPSHOT |
| TinkerPop | 3.3.0 |
| Spark | 2.2.0 |
| HBase | 1.2.0 |
| Cassandra | 2.2.11 |
| Java | 1.8.0_151 |
| FROM centos:7 | |
| RUN yum -y update && \ | |
| yum install -y java-1.8.0-openjdk-devel maven git && \ | |
| yum clean all && \ | |
| useradd test | |
| WORKDIR /opt/janusgraph |
| { | |
| "AWSTemplateFormatVersion" : "2010-09-09", | |
| "Description" : "Create an Amazon EC2 instance running the CentOS 7 AMI. Install JanusGraph.", | |
| "Parameters" : { | |
| "KeyName": { | |
| "Description" : "Name of an existing EC2 KeyPair to enable SSH access to the instance", | |
| "Type": "AWS::EC2::KeyPair::KeyName", | |
| "ConstraintDescription" : "must be the name of an existing EC2 KeyPair." |