# Copyright 2019 JanusGraph Authors | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
# Hadoop Graph Configuration | |
# | |
gremlin.graph=org.apache.tinkerpop.gremlin.hadoop.structure.HadoopGraph | |
gremlin.hadoop.graphReader=org.janusgraph.hadoop.formats.cassandra.CassandraInputFormat | |
gremlin.hadoop.graphWriter=org.apache.hadoop.mapreduce.lib.output.NullOutputFormat | |
gremlin.hadoop.jarsInDistributedCache=true | |
gremlin.hadoop.inputLocation=none | |
gremlin.hadoop.outputLocation=output | |
# | |
# JanusGraph Cassandra InputFormat configuration | |
# | |
janusgraphmr.ioformat.conf.storage.backend=cassandra | |
janusgraphmr.ioformat.conf.storage.hostname=localhost | |
janusgraphmr.ioformat.conf.storage.port=9160 | |
janusgraphmr.ioformat.conf.storage.cassandra.keyspace=janusgraph | |
# | |
# Apache Cassandra InputFormat configuration | |
# | |
cassandra.input.partitioner.class=org.apache.cassandra.dht.Murmur3Partitioner | |
cassandra.input.widerows=true | |
# | |
# SparkGraphComputer Configuration | |
# | |
spark.master=local[*] | |
spark.executor.memory=1g | |
spark.serializer=org.apache.spark.serializer.KryoSerializer | |
spark.kryo.registrator=org.janusgraph.hadoop.serialize.JanusGraphKryoRegistrator | |