Skip to content

Instantly share code, notes, and snippets.

@rkroll
Created April 18, 2013 18:11
Show Gist options
  • Save rkroll/5414944 to your computer and use it in GitHub Desktop.
Save rkroll/5414944 to your computer and use it in GitHub Desktop.
faunus pom.xml diff
faunus_pom.xml.diff
diff --git a/bin/titan-cassandra-input.properties b/bin/titan-cassandra-input.properties
index 073ca9b..4b92305 100644
--- a/bin/titan-cassandra-input.properties
+++ b/bin/titan-cassandra-input.properties
@@ -1,6 +1,7 @@
# input graph parameters
faunus.graph.input.format=com.thinkaurelius.faunus.formats.titan.cassandra.TitanCassandraInputFormat
faunus.graph.input.titan.storage.backend=com.thinkaurelius.titan.diskstorage.cassandra.thrift.CassandraThriftStoreManager
+#faunus.graph.input.titan.storage.backend=com.thinkaurelius.titan.diskstorage.cassandra.astyanax.AstyanaxStoreManager
faunus.graph.input.titan.storage.hostname=localhost
faunus.graph.input.titan.storage.port=9160
faunus.graph.input.titan.storage.keyspace=titan
diff --git a/pom.xml b/pom.xml
index 1a92422..25fb636 100644
--- a/pom.xml
+++ b/pom.xml
@@ -73,6 +73,7 @@
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>1.1.2</version>
+ <!--<version>1.0.4</version>-->
<scope>provided</scope>
</dependency>
<!-- TITAN -->
@@ -85,7 +86,18 @@
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-cassandra</artifactId>
<version>${titan.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.cassandra</groupId>
+ <artifactId>cassandra-all</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
+ <dependency>
+ <groupId>org.apache.cassandra</groupId>
+ <artifactId>cassandra-all</artifactId>
+ <version>1.2.1</version>
+ </dependency>
<dependency>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-hbase</artifactId>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment