<?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; Forum: DataStax Community - Recent Posts</title>
		<link>http://www.datastax.com/support-forums/forum/datastax-community</link>
		<description>Software, Support, and Training for Apache Cassandra</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 02:31: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/forum/datastax-community" rel="self" type="application/rss+xml" />

		<item>
			<title>pico303 on "Cassandra startup error."</title>
			<link>http://www.datastax.com/support-forums/topic/cassandra-startup-error#post-11154</link>
			<pubDate>Thu, 16 May 2013 18:27:31 +0000</pubDate>
			<dc:creator>pico303</dc:creator>
			<guid isPermaLink="false">11154@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I'm in the same situation, and seeing the same thing.  I'm on a MacBook Pro.  Could there be a problem when I leave Cassandra running and close the lid of my laptop, putting everything to sleep?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gibu on "java driver InvalidQueryException: no keyspace has been specified"</title>
			<link>http://www.datastax.com/support-forums/topic/java-driver-invalidqueryexception-no-keyspace-has-been-specified#post-10964</link>
			<pubDate>Mon, 13 May 2013 08:54:56 +0000</pubDate>
			<dc:creator>Gibu</dc:creator>
			<guid isPermaLink="false">10964@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I was running the SimpleClient example provided with  Java Driver for Apache Cassandra 1.0 using CQL 3. &#60;/p&#62;
&#60;p&#62;I spent quite some time to figure out why I was getting the error. I get the error &#34;no keyspace has been specified&#34; even though I explicitly mention the keyspace in the query. Later figured out that I need to explicitly set it in the &#34;session&#34; in the case of PreparedStatement usage as seen in the code attached. &#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
log4j:WARN See &#60;a href=&#34;http://logging.apache.org/log4j/1.2/faq.html#noconfig&#34; rel=&#34;nofollow&#34;&#62;http://logging.apache.org/log4j/1.2/faq.html#noconfig&#60;/a&#62; for more info.&#60;br /&#62;
Connected to cluster: MyCluster&#60;br /&#62;
Datatacenter: datacenter1; Host: localhost/127.0.0.1; Rack: rack1&#60;br /&#62;
Exception in thread &#34;main&#34; com.datastax.driver.core.exceptions.InvalidQueryException: no keyspace has been specified&#60;br /&#62;
	at com.datastax.driver.core.exceptions.InvalidQueryException.copy(InvalidQueryException.java:32)&#60;br /&#62;
	at com.datastax.driver.core.ResultSetFuture.extractCause(ResultSetFuture.java:242)&#60;br /&#62;
	at com.datastax.driver.core.Session.toPreparedStatement(Session.java:243)&#60;br /&#62;
	at com.datastax.driver.core.Session.prepare(Session.java:167)&#60;br /&#62;
	at com.example.cassandra.SimpleClient.loadDataUsingBoundStatements(SimpleClient.java:30)&#60;br /&#62;
	at com.example.cassandra.SimpleClient.main(SimpleClient.java:152)&#60;br /&#62;
Caused by: com.datastax.driver.core.exceptions.InvalidQueryException: no keyspace has been specified&#60;br /&#62;
	at com.datastax.driver.core.ResultSetFuture.convertException(ResultSetFuture.java:272)&#60;/p&#62;
&#60;/blockquote&#62;
&#60;p&#62;Can someone confirm if this is the expected behavior as I am setting it in the query as keyspace.table name. &#60;/p&#62;
&#60;p&#62;Code attached.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Gibu&#60;br /&#62;
ps: If its the expected behaviour, we could change the tutorial here to include that.&#60;br /&#62;
&#60;a href=&#34;http://www.datastax.com/doc-source/developer/java-driver/index.html#quick_start/qsSimpleClientBoundStatements_t.html&#34; rel=&#34;nofollow&#34;&#62;http://www.datastax.com/doc-source/developer/java-driver/index.html#quick_start/qsSimpleClientBoundStatements_t.html&#60;/a&#62;&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
//$Id$&#60;br /&#62;
package com.example.cassandra;&#60;/p&#62;
&#60;p&#62;import com.datastax.driver.core.Cluster;&#60;/p&#62;
&#60;p&#62;import com.datastax.driver.core.Host;&#60;br /&#62;
import com.datastax.driver.core.Row;&#60;br /&#62;
import com.datastax.driver.core.Session;&#60;br /&#62;
import com.datastax.driver.core.ResultSet;&#60;br /&#62;
import com.datastax.driver.core.SimpleStatement;&#60;br /&#62;
import com.datastax.driver.core.Metadata;&#60;br /&#62;
import com.datastax.driver.core.*;&#60;br /&#62;
import java.util.*;&#60;/p&#62;
&#60;p&#62;public class SimpleClient {&#60;br /&#62;
   private Cluster cluster;&#60;br /&#62;
   private Session session;&#60;/p&#62;
&#60;p&#62;   public Session getSession() {&#60;/p&#62;
&#60;p&#62;	   return session;&#60;br /&#62;
   }&#60;/p&#62;
&#60;p&#62;   public void loadDataUsingBoundStatements() {&#60;/p&#62;
&#60;p&#62;	   //Bug ? comment this line and this gives an exception that there is no keyspace set even though its set in the query.&#60;br /&#62;
	   //getSession().execute(&#34;use simplex&#34;);&#60;/p&#62;
&#60;p&#62;	   PreparedStatement statement = getSession().prepare(&#60;br /&#62;
	         &#34;INSERT INTO simplex.songs &#34; +&#60;br /&#62;
	         &#34;(id, title, album, artist, tags) &#34; +&#60;br /&#62;
	         &#34;VALUES (?, ?, ?, ?, ?);&#34;);&#60;br /&#62;
	   BoundStatement boundStatement = new BoundStatement(statement);&#60;br /&#62;
	   Set&#38;lt;String&#38;gt; tags = new HashSet&#38;lt;String&#38;gt;();&#60;br /&#62;
	   tags.add(&#34;jazz&#34;);&#60;br /&#62;
	   tags.add(&#34;2013&#34;);&#60;br /&#62;
	   getSession().execute(boundStatement.bind(&#60;br /&#62;
	         UUID.fromString(&#34;756716f7-2e54-4715-9f00-91dcbea6cf50&#34;),&#60;br /&#62;
	         &#34;La Petite Tonkinoise'&#34;,&#60;br /&#62;
	         &#34;Bye Bye Blackbird'&#34;,&#60;br /&#62;
	         &#34;Joséphine Baker&#34;,&#60;br /&#62;
	         tags ) );&#60;br /&#62;
	   statement = getSession().prepare(&#60;br /&#62;
	         &#34;INSERT INTO simplex.playlists &#34; +&#60;br /&#62;
	         &#34;(id, song_id, title, album, artist) &#34; +&#60;br /&#62;
	         &#34;VALUES (?, ?, ?, ?, ?);&#34;);&#60;br /&#62;
	   boundStatement = new BoundStatement(statement);&#60;br /&#62;
	   getSession().execute(boundStatement.bind(&#60;br /&#62;
	         UUID.fromString(&#34;2cc9ccb7-6221-4ccb-8387-f22b6a1b354d&#34;),&#60;br /&#62;
	         UUID.fromString(&#34;756716f7-2e54-4715-9f00-91dcbea6cf50&#34;),&#60;br /&#62;
	         &#34;La Petite Tonkinoise&#34;,&#60;br /&#62;
	         &#34;Bye Bye Blackbird&#34;,&#60;br /&#62;
	         &#34;Joséphine Baker&#34;) );&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;   public void querySchema() {&#60;br /&#62;
	   ResultSet results = session.execute(&#34;SELECT * FROM simplex.playlists &#34; +&#60;br /&#62;
		        &#34;WHERE id = 2cc9ccb7-6221-4ccb-8387-f22b6a1b354d;&#34;);&#60;br /&#62;
	   System.out.println(&#34;\n&#34;+String.format(&#34;%-30s\t%-20s\t%-20s\n%s&#34;, &#34;title&#34;, &#34;album&#34;, &#34;artist&#34;,&#60;br /&#62;
		       &#34;-------------------------------+-----------------------+--------------------&#34;));&#60;br /&#62;
		for (Row row : results) {&#60;br /&#62;
		    System.out.println(String.format(&#34;%-30s\t%-20s\t%-20s&#34;, row.getString(&#34;title&#34;),&#60;br /&#62;
		    row.getString(&#34;album&#34;),  row.getString(&#34;artist&#34;)));&#60;br /&#62;
		}&#60;br /&#62;
		System.out.println();&#60;/p&#62;
&#60;p&#62;   }&#60;/p&#62;
&#60;p&#62;   public void loadData() {&#60;br /&#62;
	   session.execute(&#60;br /&#62;
			      &#34;INSERT INTO simplex.songs (id, title, album, artist, tags) &#34; +&#60;br /&#62;
			      &#34;VALUES (&#34; +&#60;br /&#62;
			          &#34;756716f7-2e54-4715-9f00-91dcbea6cf50,&#34; +&#60;br /&#62;
			          &#34;'La Petite Tonkinoise',&#34; +&#60;br /&#62;
			          &#34;'Bye Bye Blackbird',&#34; +&#60;br /&#62;
			          &#34;'Joséphine Baker',&#34; +&#60;br /&#62;
			          &#34;{'jazz', '2013'})&#34; +&#60;br /&#62;
			          &#34;;&#34;);&#60;br /&#62;
			session.execute(&#60;br /&#62;
			      &#34;INSERT INTO simplex.playlists (id, song_id, title, album, artist) &#34; +&#60;br /&#62;
			      &#34;VALUES (&#34; +&#60;br /&#62;
			          &#34;2cc9ccb7-6221-4ccb-8387-f22b6a1b354d,&#34; +&#60;br /&#62;
			          &#34;756716f7-2e54-4715-9f00-91dcbea6cf50,&#34; +&#60;br /&#62;
			          &#34;'La Petite Tonkinoise',&#34; +&#60;br /&#62;
			          &#34;'Bye Bye Blackbird',&#34; +&#60;br /&#62;
			          &#34;'Joséphine Baker'&#34; +&#60;br /&#62;
			          &#34;);&#34;);&#60;/p&#62;
&#60;p&#62;   }&#60;/p&#62;
&#60;p&#62;   public void createSchema() { &#60;/p&#62;
&#60;p&#62;	   session.execute(&#34;CREATE KEYSPACE simplex WITH replication &#34; +&#60;br /&#62;
			      &#34;= {'class':'SimpleStrategy', 'replication_factor':1};&#34;);&#60;/p&#62;
&#60;p&#62;	   session.execute(&#60;br /&#62;
			      &#34;CREATE TABLE simplex.songs (&#34; +&#60;br /&#62;
			            &#34;id uuid PRIMARY KEY,&#34; +&#60;br /&#62;
			            &#34;title text,&#34; +&#60;br /&#62;
			            &#34;album text,&#34; +&#60;br /&#62;
			            &#34;artist text,&#34; +&#60;br /&#62;
			            &#34;tags set&#38;lt;text&#38;gt;,&#34; +&#60;br /&#62;
			            &#34;data blob&#34; +&#60;br /&#62;
			            &#34;);&#34;);&#60;br /&#62;
			session.execute(&#60;br /&#62;
			      &#34;CREATE TABLE simplex.playlists (&#34; +&#60;br /&#62;
			            &#34;id uuid,&#34; +&#60;br /&#62;
			            &#34;title text,&#34; +&#60;br /&#62;
			            &#34;album text, &#34; +&#60;br /&#62;
			            &#34;artist text,&#34; +&#60;br /&#62;
			            &#34;song_id uuid,&#34; +&#60;br /&#62;
			            &#34;PRIMARY KEY (id, title, album, artist)&#34; +&#60;br /&#62;
			            &#34;);&#34;);&#60;/p&#62;
&#60;p&#62;   }&#60;/p&#62;
&#60;p&#62;   public void connect(String node) {&#60;br /&#62;
      cluster = Cluster.builder()&#60;br /&#62;
            .addContactPoint(node).build();&#60;br /&#62;
      session = cluster.connect();&#60;br /&#62;
      Metadata metadata = cluster.getMetadata();&#60;br /&#62;
      System.out.printf(&#34;Connected to cluster: %s\n&#34;,&#60;br /&#62;
            metadata.getClusterName());&#60;br /&#62;
      for ( Host host : metadata.getAllHosts() ) {&#60;br /&#62;
         System.out.printf(&#34;Datatacenter: %s; Host: %s; Rack: %s\n&#34;,&#60;br /&#62;
               host.getDatacenter(), host.getAddress(), host.getRack());&#60;br /&#62;
      }&#60;br /&#62;
   }&#60;/p&#62;
&#60;p&#62;   public void close() {&#60;br /&#62;
      cluster.shutdown();&#60;br /&#62;
   }&#60;/p&#62;
&#60;p&#62;   public static void main(String[] args) {&#60;br /&#62;
      SimpleClient client = new SimpleClient();&#60;br /&#62;
      client.connect(&#34;localhost&#34;);&#60;br /&#62;
      try {&#60;br /&#62;
    	  client.createSchema();&#60;br /&#62;
      }&#60;br /&#62;
      catch(Exception alreadyExists)&#60;br /&#62;
      {&#60;/p&#62;
&#60;p&#62;    	  System.out.print(&#34;Exception: Schema already exists.&#34;);&#60;br /&#62;
      }&#60;br /&#62;
      //client.loadData();&#60;br /&#62;
      client.loadDataUsingBoundStatements();&#60;br /&#62;
      client.querySchema();&#60;/p&#62;
&#60;p&#62;      client.close();&#60;br /&#62;
   }&#60;br /&#62;
}&#60;/p&#62;
&#60;/blockquote&#62;</description>
		</item>
		<item>
			<title>Steven Lowenthal on "Datastax ODBC driver error &#039;...ThriftHiveClient: Unknown: errno = 10053&#039;"</title>
			<link>http://www.datastax.com/support-forums/topic/datastax-odbc-driver-error-thrifthiveclient-unknown-errno-10053#post-10847</link>
			<pubDate>Thu, 09 May 2013 22:19:36 +0000</pubDate>
			<dc:creator>Steven Lowenthal</dc:creator>
			<guid isPermaLink="false">10847@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;The ODBC driver for Hive only works against DataStax Enterprise addition when running Hadoop.   We have a new ODBC driver which runs directly against Cassandra coming out shortly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>joaquin on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10845</link>
			<pubDate>Thu, 09 May 2013 20:38:41 +0000</pubDate>
			<dc:creator>joaquin</dc:creator>
			<guid isPermaLink="false">10845@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Sure, no problem.&#60;/p&#62;
&#60;p&#62;I've gone through and patched the code to include a non-documented workaround for Spot instances. You may now bring up clusters by using:&#60;/p&#62;
&#60;p&#62;--clustername DevCassandra --totalnodes 3 --version community --customreservation unique_key&#60;/p&#62;
&#60;p&#62;where unique_key is a private hash. Be sure to choose a long hash key to avoid other nodes from joining your cluster. If you were to choose a unique_key of &#34;1&#34; and someone else launched their cluster within 10 minutes of yours, using the same key, both of your clusters could merge together, depending on your firewall settings.&#60;/p&#62;
&#60;p&#62;Also, all instances must come up at the same time, or not at all, so do make sure to set a Launch Group when starting your Spot Instances.&#60;/p&#62;
&#60;p&#62;Also, if any nodes go offline, then reappear, the code is not set to have them auto-join the existing ring.&#60;/p&#62;
&#60;p&#62;Hope this helps!&#60;br /&#62;
Joaquin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Sven on "Datastax ODBC driver error &#039;...ThriftHiveClient: Unknown: errno = 10053&#039;"</title>
			<link>http://www.datastax.com/support-forums/topic/datastax-odbc-driver-error-thrifthiveclient-unknown-errno-10053#post-10844</link>
			<pubDate>Thu, 09 May 2013 18:00:17 +0000</pubDate>
			<dc:creator>Sven</dc:creator>
			<guid isPermaLink="false">10844@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;For Cassandra questions, this forum is no longer the best place to look for help, it's mostly kept around for old references.  I suggest subscribing to the Cassandra users list linked at the bottom of &#60;a href=&#34;http://cassandra.apache.org/&#34; rel=&#34;nofollow&#34;&#62;http://cassandra.apache.org/&#60;/a&#62;, visiting &#60;a href=&#34;http://http://planetcassandra.org/&#34; rel=&#34;nofollow&#34;&#62;http://http://planetcassandra.org/&#60;/a&#62; and using &#60;a href=&#34;http://stackoverflow.com/search?q=cassandra&#34; rel=&#34;nofollow&#34;&#62;http://stackoverflow.com/search?q=cassandra&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Sven
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brwnba2010 on "Datastax ODBC driver error &#039;...ThriftHiveClient: Unknown: errno = 10053&#039;"</title>
			<link>http://www.datastax.com/support-forums/topic/datastax-odbc-driver-error-thrifthiveclient-unknown-errno-10053#post-10843</link>
			<pubDate>Thu, 09 May 2013 17:53:45 +0000</pubDate>
			<dc:creator>brwnba2010</dc:creator>
			<guid isPermaLink="false">10843@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Update: Installed Datastax CE and Datastax ODBC driver on the same machine to remove the vm environment (skytap) from the equation...after updating the server address to reflect the non network data source (now 10.20.23.1), I am still seeing the same behavior.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brwnba2010 on "Datastax ODBC driver error &#039;...ThriftHiveClient: Unknown: errno = 10053&#039;"</title>
			<link>http://www.datastax.com/support-forums/topic/datastax-odbc-driver-error-thrifthiveclient-unknown-errno-10053#post-10839</link>
			<pubDate>Thu, 09 May 2013 16:36:34 +0000</pubDate>
			<dc:creator>brwnba2010</dc:creator>
			<guid isPermaLink="false">10839@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Installed Datastax CE and then installed the Datastax ODBC driver on a client machine, Turned off Windows Firewall, here are my settings and the error message when attempting to test the ODBC driver.  Note I am using Skytap VM images in this environment:&#60;/p&#62;
&#60;p&#62;Host is set to the ip of the host: 10.20.25.3 in my case.&#60;br /&#62;
Port :8888&#60;br /&#62;
Database: default&#60;br /&#62;
Advanced setting are their default settings:&#60;/p&#62;
&#60;p&#62;Row fetched per block: 10000&#60;br /&#62;
Default string column length: 255&#60;br /&#62;
Everything else unchecked.&#60;/p&#62;
&#60;p&#62;ODBC Driver hangs, and then after killing with Task Manager. I get this ODBC error.&#60;/p&#62;
&#60;p&#62;Connector Version: V1.0.0.1007&#60;/p&#62;
&#60;p&#62;Running connectivity tests...&#60;/p&#62;
&#60;p&#62;Attempting connection&#60;br /&#62;
Failed to establish connection&#60;br /&#62;
SQLSTATE: HY000[DataStax][Hardy] (22) Error from ThriftHiveClient: Unknown: errno = 10053&#60;/p&#62;
&#60;p&#62;TESTS COMPLETED WITH ERROR.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>amey on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10831</link>
			<pubDate>Thu, 09 May 2013 13:36:48 +0000</pubDate>
			<dc:creator>amey</dc:creator>
			<guid isPermaLink="false">10831@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Thanks for your help Joaquin. I tried it with Non Spot instances yesterday night and it works perfectly fine. For some reason while using Spot instances, it creates 3 different clusters when three instances are specified in arguments.&#60;br /&#62;
I am going ahead with the solution you have recommended starting with one node cluster on Spot and then provisioning others.&#60;br /&#62;
Would be interested to know if your team gets a chance to test it once on Spot instances and see if this can be fixed with some minor changes.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Amey
&#60;/p&#62;</description>
		</item>
		<item>
			<title>joaquin on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10796</link>
			<pubDate>Thu, 09 May 2013 00:00:52 +0000</pubDate>
			<dc:creator>joaquin</dc:creator>
			<guid isPermaLink="false">10796@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Yeah, Spot Instances may be causing issues if not the instance metadata is different, the nodes do not come up at the same time, or the networking between Spot instances are different.&#60;/p&#62;
&#60;p&#62;We do not support VPC, since some metadata is missing from the instances, and we typically run our AMI's with standard instances. If spot instances are a requirement, you may want to spin up one node, install OpsCenter, then have that one instance provision the rest of the spot instances for you.&#60;/p&#62;
&#60;p&#62;Yes, we will maintain only one AMI at a time. If we ever need to re-bake, we will destroy the old AMI and create a new one based off the same branch, with whatever major fixes are needed.&#60;/p&#62;
&#60;p&#62;All minor fixes, however, are pushed to the AMI during it's launch cycle.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>amey on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10792</link>
			<pubDate>Wed, 08 May 2013 20:57:31 +0000</pubDate>
			<dc:creator>amey</dc:creator>
			<guid isPermaLink="false">10792@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Ok I am allowed only to use Spot Instances here at work, but I will definitely try with Non Spot instances on my personal id in sometime. Just wanted to confirm, this is the URL to launch the latest AMI correct ?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://aws.amazon.com/amis/datastax-auto-clustering-ami-2-2&#34; rel=&#34;nofollow&#34;&#62;https://aws.amazon.com/amis/datastax-auto-clustering-ami-2-2&#60;/a&#62;&#60;br /&#62;
AMI: DataStax Auto-Clustering AMI 2.4&#60;br /&#62;
AMI ID : ami-814ec2e8
&#60;/p&#62;</description>
		</item>
		<item>
			<title>joaquin on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10791</link>
			<pubDate>Wed, 08 May 2013 20:54:01 +0000</pubDate>
			<dc:creator>joaquin</dc:creator>
			<guid isPermaLink="false">10791@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Let's try non-spot instances. I've yet to test on spot instances, so that could be causing the issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>amey on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10790</link>
			<pubDate>Wed, 08 May 2013 20:51:53 +0000</pubDate>
			<dc:creator>amey</dc:creator>
			<guid isPermaLink="false">10790@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Thanks Joaquin. Let me try to repeat the process right now. The firewall rules are as relaxed as possible. Also, would it matter if I am using Spot instances on EC2 ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>joaquin on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10789</link>
			<pubDate>Wed, 08 May 2013 20:48:41 +0000</pubDate>
			<dc:creator>joaquin</dc:creator>
			<guid isPermaLink="false">10789@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I just tried a launch with similar parameters without issue:&#60;/p&#62;
&#60;p&#62;Cluster started with these options:&#60;br /&#62;
--clustername 'dev' --totalnodes 3 --version Community&#60;/p&#62;
&#60;p&#62;Raiding complete.&#60;br /&#62;
Waiting for nodetool...&#60;br /&#62;
The cluster is now in it's finalization phase. This should only take a moment...&#60;/p&#62;
&#60;p&#62;Note: You can also use CTRL+C to view the logs if desired:&#60;br /&#62;
    AMI log: ~/datastax_ami/ami.log&#60;br /&#62;
    Cassandra log: /var/log/cassandra/system.log&#60;/p&#62;
&#60;p&#62;Datacenter: us-east&#60;br /&#62;
===================&#60;br /&#62;
Status=Up/Down&#60;br /&#62;
&#124;/ State=Normal/Leaving/Joining/Moving&#60;br /&#62;
--  Address        Load       Tokens  Owns (effective)  Host ID                               Rack&#60;br /&#62;
UN  10.241.85.220  100.03 KB  256     30.5%             bb7761f8-9f1e-4851-8815-1b4521f206e4  1c&#60;br /&#62;
UN  10.46.218.52   ?          256     32.2%             43f7f497-b8ed-4b11-9d73-c9ffedc7781a  1c&#60;br /&#62;
UN  10.96.250.185  51.13 KB   256     37.3%             ca9915b0-b8ae-4a73-8125-e727faeab13e  1c&#60;/p&#62;
&#60;p&#62;....&#60;/p&#62;
&#60;p&#62;Perhaps your firewall settings are too strict? Make sure the following ports are open between each node in the cluster:&#60;br /&#62;
&#60;a href=&#34;http://www.datastax.com/docs/1.2/install/install_ami#creating-an-ec2-security-group-for-datastax-community-edition&#34; rel=&#34;nofollow&#34;&#62;http://www.datastax.com/docs/1.2/install/install_ami#creating-an-ec2-security-group-for-datastax-community-edition&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>amey on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10788</link>
			<pubDate>Wed, 08 May 2013 20:39:18 +0000</pubDate>
			<dc:creator>amey</dc:creator>
			<guid isPermaLink="false">10788@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Sorry that was a typo.... Here is the startup log from one of the machines.. just hiding some IP addresses.&#60;/p&#62;
&#60;p&#62;Cluster started with these options:&#60;br /&#62;
--clustername DevCassandra --totalnodes 3 --version community&#60;/p&#62;
&#60;p&#62;Waiting for nodetool...&#60;br /&#62;
The cluster is now in it's finalization phase. This should only take a moment...&#60;/p&#62;
&#60;p&#62;Note: You can also use CTRL+C to view the logs if desired:&#60;br /&#62;
    AMI log: ~/datastax_ami/ami.log&#60;br /&#62;
    Cassandra log: /var/log/cassandra/system.log&#60;/p&#62;
&#60;p&#62;Datacenter: us-east&#60;br /&#62;
===================&#60;br /&#62;
Status=Up/Down&#60;br /&#62;
&#124;/ State=Normal/Leaving/Joining/Moving&#60;br /&#62;
--  Address       Load       Tokens  Owns (effective)  Host ID                               Rack&#60;br /&#62;
UN  10.47.xx.xxx  67.14 KB   256     100.0%            1d610ec1-ae34-4a73-8a1f-96db8993afe5  1c&#60;/p&#62;
&#60;p&#62;    Please wait 60 seconds if this is the cluster's first start...&#60;/p&#62;
&#60;p&#62;Tools:&#60;br /&#62;
    Run: datastax_tools&#60;br /&#62;
Demos:&#60;br /&#62;
    Run: datastax_demos&#60;br /&#62;
Support:&#60;br /&#62;
    Run: datastax_support&#60;/p&#62;
&#60;p&#62;------------------------------------&#60;br /&#62;
DataStax AMI for DataStax Enterprise&#60;br /&#62;
and DataStax Community&#60;br /&#62;
AMI version 2.4&#60;br /&#62;
DataStax Community version 1.2.4-1&#60;/p&#62;
&#60;p&#62;------------------------------------&#60;/p&#62;
&#60;p&#62;ubuntu@ip-10-47-xx-xxx:~$
&#60;/p&#62;</description>
		</item>
		<item>
			<title>joaquin on "EC2 AMI 2.4 Issue"</title>
			<link>http://www.datastax.com/support-forums/topic/ec2-ami-24-issue#post-10787</link>
			<pubDate>Wed, 08 May 2013 20:16:45 +0000</pubDate>
			<dc:creator>joaquin</dc:creator>
			<guid isPermaLink="false">10787@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Hello Amey,&#60;/p&#62;
&#60;p&#62;It seems as though you're missing a space in your parameters after DevCassandra and before the double-dashes.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Joaquin
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
