<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>DataStax Support Forums &#187; Topic: cassandra 1,2 beta multinode setup</title>
		<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup</link>
		<description>Software, Support, and Training for Apache Cassandra</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 00:29:31 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.3</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.datastax.com/support-forums/search.php</link>
		</textInput>
		<atom:link href="http://www.datastax.com/support-forums/rss/topic/cassandra-12-beta-multinode-setup" rel="self" type="application/rss+xml" />

		<item>
			<title>Scheidecker on "cassandra 1,2 beta multinode setup"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup#post-7959</link>
			<pubDate>Tue, 11 Dec 2012 23:33:06 +0000</pubDate>
			<dc:creator>Scheidecker</dc:creator>
			<guid isPermaLink="false">7959@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I've done something simpler. I've tried to migrate 1.1 to 1.2 and failed with the nodes tokens. Since I have 5 nodes, then I've done initial_tokens for each like this: 0,1,2,3,4 and it worked. Each node got a number starting with zero.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nickmbailey on "cassandra 1,2 beta multinode setup"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup#post-7735</link>
			<pubDate>Fri, 30 Nov 2012 16:03:17 +0000</pubDate>
			<dc:creator>nickmbailey</dc:creator>
			<guid isPermaLink="false">7735@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;The DataStax Documentation for 1.2 is still being worked on at the moment. Unfortunately your best bet for the moment is looking at the code or jira.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>matteraf on "cassandra 1,2 beta multinode setup"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup#post-7733</link>
			<pubDate>Fri, 30 Nov 2012 12:14:27 +0000</pubDate>
			<dc:creator>matteraf</dc:creator>
			<guid isPermaLink="false">7733@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi, Any documentation about this partitioner?&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sridanu on "cassandra 1,2 beta multinode setup"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup#post-7706</link>
			<pubDate>Thu, 29 Nov 2012 11:23:55 +0000</pubDate>
			<dc:creator>sridanu</dc:creator>
			<guid isPermaLink="false">7706@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Tx nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nickmbailey on "cassandra 1,2 beta multinode setup"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup#post-7691</link>
			<pubDate>Wed, 28 Nov 2012 17:04:59 +0000</pubDate>
			<dc:creator>nickmbailey</dc:creator>
			<guid isPermaLink="false">7691@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;The token generator tool currently only works with the Random Partitioner. Unfortunately there currently isn't much documentation on the 1.2 beta. You have a couple of options&#60;/p&#62;
&#60;p&#62;* Use RandomPartitioner. You can change this in cassandra.yaml. With this the token generating tool will work.&#60;br /&#62;
* Use vnodes. The 1.2 release includes the concept of vnodes where instead of one range, a node owns many distinct ranges. You can set this in cassandra.yaml as well and there are instructions in that file.&#60;br /&#62;
* If you want to use the Murmur3Partitioner without vnodes you can run this python command to get appropriate tokens. Replacing &#34;X&#34; with the number of nodes you have:&#60;/p&#62;
&#60;p&#62;python -c 'print [((2**64 / X) * i) - 2**63 for i in range(X)]'
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sridanu on "cassandra 1,2 beta multinode setup"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup#post-7687</link>
			<pubDate>Wed, 28 Nov 2012 09:07:24 +0000</pubDate>
			<dc:creator>sridanu</dc:creator>
			<guid isPermaLink="false">7687@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Tx nick for your reply. &#60;/p&#62;
&#60;p&#62;I just used the token gen tool within the Cassandra release. Could you kindly point me to where you got this info from.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nickmbailey on "cassandra 1,2 beta multinode setup"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup#post-7658</link>
			<pubDate>Fri, 23 Nov 2012 18:10:18 +0000</pubDate>
			<dc:creator>nickmbailey</dc:creator>
			<guid isPermaLink="false">7658@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Cassandra 1.2 uses a new partitioner called 'Murmur3Partitioner'. The murmur 3 partitioner uses tokens in the range -2^63 to 2^63 - 1. It looks like the token you are specifying is outside of that range.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sridanu on "cassandra 1,2 beta multinode setup"</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-12-beta-multinode-setup#post-7646</link>
			<pubDate>Thu, 22 Nov 2012 17:06:56 +0000</pubDate>
			<dc:creator>sridanu</dc:creator>
			<guid isPermaLink="false">7646@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;im testing the beta on a 2 node setup. Problem is i cant seem to get the 2nd node to connect to the 1st node. &#60;/p&#62;
&#60;p&#62;below are the cassandra.yaml files (i only put the parts needed for the config)&#60;/p&#62;
&#60;p&#62;seed node:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;initial_token: 0
seed_provider:
    - class_name: org.apache.cassandra.locator.SimpleSeedProvider
      parameters:
          - seeds: &#38;quot;1.1.1.1&#38;quot;
listen_address: 1.1.1.1
rpc_address: 1.1.1.1
rpc_port: 9161&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2nd node:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;initial_token: 85070591730234615865843651857942052864
seed_provider:
    - class_name: org.apache.cassandra.locator.SimpleSeedProvider
      parameters:
          - seeds: &#38;quot;1.1.1.1&#38;quot;
listen_address: 2.2.2.2
rpc_address: 2.2.2.2
rpc_port: 9161&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the error i get is&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[search@ics-sc-sr01r02f2 apache-cassandra-120-beta]$ export CASSANDRA_HOME=/usr/fast/apache-cassandra-120-beta;export JAVA_HOME=/usr/fast/jdk1.6.0_24;/usr/fast/apache-cassandra-120-beta/bin/cassandra -f
xss =  -ea -javaagent:/usr/fast/apache-cassandra-120-beta/lib/jamm-0.2.5.jar -XX:+UseThreadPriorities -XX:ThreadPriorityPolicy=42 -Xms5994M -Xmx5994M -Xmn1498M -XX:+HeapDumpOnOutOfMemoryError -Xss180k
 INFO 15:55:06,329 Logging initialized
 INFO 15:55:06,559 Loading settings from file:/usr/fast/apache-cassandra-120-beta/conf/cassandra.yaml
 INFO 15:55:06,718 DiskAccessMode &#38;#039;auto&#38;#039; determined to be mmap, indexAccessMode is mmap
 INFO 15:55:06,718 disk_failure_policy is stop
 INFO 15:55:06,724 Global memtable threshold is enabled at 1948MB
ERROR 15:55:06,840 Fatal configuration error
org.apache.cassandra.exceptions.ConfigurationException: For input string: &#38;quot;85070591730234615865843651857942052864&#38;quot;
        at org.apache.cassandra.dht.Murmur3Partitioner$1.validate(Murmur3Partitioner.java:178)
        at org.apache.cassandra.config.DatabaseDescriptor.loadYaml(DatabaseDescriptor.java:443)
        at org.apache.cassandra.config.DatabaseDescriptor.&#38;lt;clinit&#38;gt;(DatabaseDescriptor.java:120)
        at org.apache.cassandra.utils.FBUtilities.getLocalAddress(FBUtilities.java:129)
        at org.apache.cassandra.tracing.Tracing.&#38;lt;init&#38;gt;(Tracing.java:79)
        at org.apache.cassandra.tracing.Tracing.&#38;lt;clinit&#38;gt;(Tracing.java:67)
        at org.apache.cassandra.tracing.TracingAppender.append(TracingAppender.java:44)
        at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:251)
        at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:66)
        at org.apache.log4j.Category.callAppenders(Category.java:206)
        at org.apache.log4j.Category.forcedLog(Category.java:391)
        at org.apache.log4j.Category.info(Category.java:666)
        at org.apache.cassandra.service.CassandraDaemon.initLog4j(CassandraDaemon.java:100)
        at org.apache.cassandra.service.CassandraDaemon.&#38;lt;clinit&#38;gt;(CassandraDaemon.java:57)
For input string: &#38;quot;85070591730234615865843651857942052864&#38;quot;
Fatal configuration error; unable to start server.  See log for stacktrace.&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;i can keep the token value empty and start the server but when i check the ring via the nodetool the 2nd node does not show up.&#60;/p&#62;
&#60;p&#62;appreciate any help you can provide. Thanks in advance.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
