[Cassandra Wiki] Update of "GettingStarted" by JonathanEllis

2016-08-10 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for 
change notification.

The "GettingStarted" page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diff=111=112

Comment:
Apparently refresh directive is not supported, use a normal link.

- #refresh 0 http://cassandra.apache.org/doc/latest/getting_started/index.html
+ [[http://cassandra.apache.org/doc/latest/getting_started/index.html|See 
"Getting Started" in the documentation here]].
  


[Cassandra Wiki] Update of "GettingStarted" by JonathanEllis

2016-08-10 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for 
change notification.

The "GettingStarted" page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diff=110=111

Comment:
Redirect to in-tree documentation

- == Trying Cassandra in a VM ==
+ #refresh 0 http://cassandra.apache.org/doc/latest/getting_started/index.html
  
- Try Cassandra with [[http://www.planetcassandra.org/try-cassandra|these ten 
minute developer and admin walkthroughs]].
- 
- == Installing Cassandra Locally ==
- This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to running single node Cassandra, and 
overview to configure multinode cluster. Cassandra is meant to run on a cluster 
of nodes, but will run equally well on a single machine. This is a handy way of 
getting familiar with the software while avoiding the complexities of a larger 
system.
- 
- == Step 0: Prerequisites and Connecting to the Community ==
- Cassandra 3.0+ requires the most stable version of Java 8 you can deploy, 
preferably the 
[[http://www.oracle.com/technetwork/java/javase/downloads/index.html|Oracle/Sun 
JVM]].  Cassandra also runs on OpenJDK, Zing, and the IBM JVM.  (It will NOT 
run on JRockit, which is only compatible with Java 6.)
- 
- The best way to ensure you always have up to date information on the project, 
releases, stability, bugs, and features is to subscribe to the users mailing 
list ([[mailto:user-subscr...@cassandra.apache.org|subscription required]]) and 
participate in the #cassandra channel on 
[[http://webchat.freenode.net/?channels=#cassandra|IRC]].
- 
- <> <>
- 
- == Step 1: Download Cassandra ==
-  * Download links for the latest stable release can always be found on the 
[[http://cassandra.apache.org/download|website]].
-  * Users of Debian or Debian-based derivatives can install the latest stable 
release in package form, see DebianPackaging for details.
-  * Users of RPM-based distributions can get packages from 
[[www.datastax.com/documentation/latest-dsc-InsRhel|Datastax]].
-  * If you are interested in building Cassandra from source, please refer to 
[[HowToBuild|How to Build]] page.
- 
- For more details about misc builds, please refer to 
[[VersionsAndBuilds|Cassandra versions and builds]] page.
- 
- <>
- 
- == Step 2: Basic Configuration ==
- The Cassandra configuration files can be found in the `conf` directory of 
binary and source distributions. If you have installed Cassandra from a deb or 
rpm package, the configuration files will be located in `/etc/cassandra`.
- 
- === Step 2.1: Directories Used by Cassandra ===
- If you've installed Cassandra with a deb or rpm package, the directories that 
Cassandra will use should already be created an have the correct permissions. 
Otherwise, you will want to check the following config settings from 
`conf/cassandra.yaml`: `data_file_directories` (`/var/lib/cassandra/data`), 
`commitlog_directory` (`/var/lib/cassandra/commitlog`), and 
`saved_caches_directory` (`/var/lib/cassandra/saved_caches`).  Make sure these 
directories exist and can be written to.
- 
- By default, Cassandra will write its logs in `/var/log/cassandra/`.  Make 
sure this directory exists and is writeable, or change this line in 
`conf/log4j-server.properies`:
- 
- {{{
- log4j.appender.R.File=/var/log/cassandra/system.log
- }}}
- 
- Note that in Cassandra 2.1+, the logger in use is logback, so change this 
logging directory in your conf/logback.xml file such as:
- 
- {{{
- /var/log/cassandra/system.log
- }}}
- 
- JVM-level settings such as heap size can be set in `conf/cassandra-env.sh`.
- 
- == Step 3: Start Cassandra ==
- And now for the moment of truth, start up Cassandra by invoking 
'`bin/cassandra -f`' from the command line<>. The 
service should start in the foreground and log gratuitously to the console. 
Assuming you don't see messages with scary words like "error", or "fatal", or 
anything that looks like a Java stack trace, then everything should be working.
- 
- Press "Control-C" to stop Cassandra.
- 
- If you start up Cassandra without the "-f" option, it will run in the 
background. You can stop the process by killing it, using '`pkill -f 
CassandraDaemon`', for example.
- 
-  . Cassandra Users of recent Linux distributions and Mac OS X Snow Leopard 
should be able to start up Cassandra simply by untarring and invoking 
`bin/cassandra -f`.  Since Cassandra 2.1, the tar.gz download has shipped with 
the log and data directories defaulting to the Cassandra directory.  Versions 
prior defaulted to `/var/log/cassandra` and `/var/lib/cassandra/`.  Due to this 
it is necessary to either start Cassandra with root privileges or change the 
`conf/cassandra.yaml` to use a directory owned by the 

[Cassandra Wiki] Update of "GettingStarted" by JonathanEllis

2016-06-12 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for 
change notification.

The "GettingStarted" page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diff=109=110

Comment:
point to http://cassandra.apache.org/doc/cql3/CQL.html

  }}}
  
  == Write your Application ==
- To connect to Cassandra, you'll need a database driver for your language of 
choice. DataStax sponsors development of CQL drivers at 
https://github.com/datastax. A full list of CQL drivers can be found on the 
ClientOptions page.
+ To connect to Cassandra, you'll need a database driver for your language of 
choice. A full list of CQL drivers can be found on the ClientOptions page.
  
  When deciding how to design your schema and layout your data, it will be 
helpful to review the resources on how to DataModel.
  
- You may also want to read the 
[[http://www.datastax.com/documentation/cql/3.0/webhelp/index.html|full CQL 
documentation]].
+ You may also want to read the 
[[http://cassandra.apache.org/doc/cql3/CQL.html|full CQL documentation]].
  
  == Configuring Multinode Clusters ==
  Now you have single working Cassandra node. It is a Cassandra cluster which 
has only one node. By adding more nodes, you can make it a multi node cluster.


[Cassandra Wiki] Update of "GettingStarted" by JonathanEllis

2016-06-12 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for 
change notification.

The "GettingStarted" page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diff=109=110

  }}}
  
  == Write your Application ==
- To connect to Cassandra, you'll need a database driver for your language of 
choice. DataStax sponsors development of CQL drivers at 
https://github.com/datastax. A full list of CQL drivers can be found on the 
ClientOptions page.
+ To connect to Cassandra, you'll need a database driver for your language of 
choice. A full list of CQL drivers can be found on the ClientOptions page.
  
  When deciding how to design your schema and layout your data, it will be 
helpful to review the resources on how to DataModel.
  
- You may also want to read the 
[[http://www.datastax.com/documentation/cql/3.0/webhelp/index.html|full CQL 
documentation]].
+ You may also want to read the 
[[http://cassandra.apache.org/doc/cql3/CQL.html|full CQL documentation]].
  
  == Configuring Multinode Clusters ==
  Now you have single working Cassandra node. It is a Cassandra cluster which 
has only one node. By adding more nodes, you can make it a multi node cluster.


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2015-08-26 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=106rev2=107

Comment:
add Zing

  This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to running single node Cassandra, and 
overview to configure multinode cluster. Cassandra is meant to run on a cluster 
of nodes, but will run equally well on a single machine. This is a handy way of 
getting familiar with the software while avoiding the complexities of a larger 
system.
  
  == Step 0: Prerequisites and Connecting to the Community ==
- Cassandra requires the most stable version of Java 7 or 8 you can deploy, 
preferably the 
[[http://www.oracle.com/technetwork/java/javase/downloads/index.html|Oracle/Sun 
JVM]].  Cassandra also runs on OpenJDK and the IBM JVM.  (It will NOT run on 
JRockit, which is only compatible with Java 6.)
+ Cassandra requires the most stable version of Java 7 or 8 you can deploy, 
preferably the 
[[http://www.oracle.com/technetwork/java/javase/downloads/index.html|Oracle/Sun 
JVM]].  Cassandra also runs on OpenJDK, Zing, and the IBM JVM.  (It will NOT 
run on JRockit, which is only compatible with Java 6.)
  
  The best way to ensure you always have up to date information on the project, 
releases, stability, bugs, and features is to subscribe to the users mailing 
list ([[mailto:user-subscr...@cassandra.apache.org|subscription required]]) and 
participate in the #cassandra channel on 
[[http://webchat.freenode.net/?channels=#cassandra|IRC]].
  


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2015-03-25 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=104rev2=105

  This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to running single node Cassandra, and 
overview to configure multinode cluster. Cassandra is meant to run on a cluster 
of nodes, but will run equally well on a single machine. This is a handy way of 
getting familiar with the software while avoiding the complexities of a larger 
system.
  
  == Step 0: Prerequisites and Connecting to the Community ==
- Cassandra requires the most stable version of Java 7 you can deploy, 
preferably the 
[[http://www.oracle.com/technetwork/java/javase/downloads/index.html|Oracle/Sun 
JVM]].  Cassandra also runs on OpenJDK and the IBM JVM.  Because Cassandra 
requires Java 7, it will NOT run on JRockit.
+ Cassandra requires the most stable version of Java 7 or 8 you can deploy, 
preferably the 
[[http://www.oracle.com/technetwork/java/javase/downloads/index.html|Oracle/Sun 
JVM]].  Cassandra also runs on OpenJDK and the IBM JVM.  (It will NOT run on 
JRockit, which is only compatible with Java 6.)
  
  The best way to ensure you always have up to date information on the project, 
releases, stability, bugs, and features is to subscribe to the users mailing 
list ([[mailto:user-subscr...@cassandra.apache.org|subscription required]]) and 
participate in the #cassandra channel on 
[[http://webchat.freenode.net/?channels=#cassandra|IRC]].
  


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2014-06-05 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=102rev2=103

Comment:
add VM intro

  == Cassandra documentation from DataStax ==
  !DataStax's latest 
[[http://www.datastax.com/documentation/cassandra/2.0/cassandra/gettingStartedCassandraIntro.html|Cassandra
 documentation]] covers topics from installation to troubleshooting, including 
a [[http://www.datastax.com/docs/quick_start/quickstart|Quick Start Guide]].  
Documentation for older releases is also available.
  
- == Introduction ==
+ == Trying Cassandra in a VM ==
+ 
+ Try Cassandra with [[http://www.planetcassandra.org/try-cassandra|these ten 
minute developer and admin walkthroughs]].
+ 
+ == Installing Cassandra Locally ==
  This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to running single node Cassandra, and 
overview to configure multinode cluster. Cassandra is meant to run on a cluster 
of nodes, but will run equally well on a single machine. This is a handy way of 
getting familiar with the software while avoiding the complexities of a larger 
system.
  
  == Step 0: Prerequisites and Connecting to the Community ==


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2013-11-08 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=93rev2=94

Comment:
move multinode setup to after data modeling

  1745 |  john | smith
  1746 |  john | smith
  }}}
+ 
+ == Write your application ==
+ Review the resources on DataModeling.  The full CQL documentation is 
[[http://www.datastax.com/documentation/cql/3.0/webhelp/index.html|here]].
+ 
+ DataStax sponsors development of the CQL drivers at 
https://github.com/datastax.  The full list of CQL drivers is on the 
ClientOptions page.
+ 
  == Configuring Multinode Clusters ==
  Now you have single working Cassandra node. It is a Cassandra cluster which 
has only one node. By adding more nodes, you can make it a multi node cluster.
  
@@ -147, +153 @@

  
  If you don't yet have access to hardware for a real Cassandra cluster, you 
can manage local clusters easily with [[https://github.com/pcmanus/ccm|ccm]] 
(Cassandra Cluster Manager).
  
- For more details about configuring multi node cluster, please refer to 
MultinodeCluster.
- 
- == Write your application ==
- Review the resources on DataModeling.  The full CQL documentation is 
[[http://www.datastax.com/documentation/cql/3.0/webhelp/index.html|here]].
- 
- DataStax sponsors development of the CQL drivers at 
https://github.com/datastax.  The full list of CQL drivers is on the 
ClientOptions page.
- 
  Anchor(if_something_goes_wrong)
- 
  == If Something Goes Wrong ==
  If you followed the steps in this guide and failed to get up and running, 
we'd love to help. Here's what we need.
  


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2013-11-08 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=94rev2=95

Comment:
update for java7

  This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to running single node Cassandra, and 
overview to configure multinode cluster. Cassandra is meant to run on a cluster 
of nodes, but will run equally well on a single machine. This is a handy way of 
getting familiar with the software while avoiding the complexities of a larger 
system.
  
  == Step 0: Prerequisites and Connecting to the Community ==
+ Cassandra requires the most stable version of Java 7 you can deploy, 
preferably the Oracle/Sun JVM.  Cassandra also runs on OpenJDK and the IBM JVM. 
 Because Cassandra requires Java 7, it will NOT run on JRockit.
- Cassandra requires the most stable version of Java 1.6 you can deploy, 
preferably the Oracle/Sun JVM.  Cassandra also runs on the IBM JVM, and should 
run on jrockit as well.
- 
-  . Note for OS X users:
-  Some people running OS X have trouble getting Java 6 to work. If you've kept 
up with Apple's updates, Java 6 should already be installed (it comes in Mac OS 
X 10.5  Update 1). Unfortunately, Apple does not default to using it. What you 
have to do is change your `JAVA_HOME` environment setting to 
`/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home` and add 
`/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/bin` to the 
beginning of your `PATH`.
  
  The best way to ensure you always have up to date information on the project, 
releases, stability, bugs, and features is to subscribe to the users mailing 
list ([[mailto:user-subscr...@cassandra.apache.org|subscription required]]) and 
participate in the #cassandra channel on 
[[http://webchat.freenode.net/?channels=#cassandra|IRC]].
  


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2013-08-29 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
https://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=91rev2=92

Comment:
update for cqlsh

  == Cassandra documentation from DataStax ==
  !DataStax's latest [[http://www.datastax.com/docs/1.2/index|Cassandra 
documentation]] covers topics from installation to troubleshooting, including a 
[[http://www.datastax.com/docs/quick_start/quickstart|Quick Start Guide]].  
Documentation for older releases is also available.
-  
+ 
  == Introduction ==
+ This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to running single node Cassandra, and 
overview to configure multinode cluster. Cassandra is meant to run on a cluster 
of nodes, but will run equally well on a single machine. This is a handy way of 
getting familiar with the software while avoiding the complexities of a larger 
system.
+ 
- This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to running single node Cassandra, and 
overview to configure multinode cluster.
- Cassandra is meant to run on a cluster of nodes, but will run equally well on 
a single machine. This is a handy way of getting familiar with the software 
while avoiding the complexities of a larger system.
-   
  == Step 0: Prerequisites and Connecting to the Community ==
  Cassandra requires the most stable version of Java 1.6 you can deploy, 
preferably the Oracle/Sun JVM.  Cassandra also runs on the IBM JVM, and should 
run on jrockit as well.
  
-  Note for OS X users:
+  . Note for OS X users:
   Some people running OS X have trouble getting Java 6 to work. If you've kept 
up with Apple's updates, Java 6 should already be installed (it comes in Mac OS 
X 10.5  Update 1). Unfortunately, Apple does not default to using it. What you 
have to do is change your `JAVA_HOME` environment setting to 
`/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home` and add 
`/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/bin` to the 
beginning of your `PATH`.
-  
+ 
  The best way to ensure you always have up to date information on the project, 
releases, stability, bugs, and features is to subscribe to the users mailing 
list ([[mailto:user-subscr...@cassandra.apache.org|subscription required]]) and 
participate in the #cassandra channel on 
[[http://webchat.freenode.net/?channels=#cassandra|IRC]].
+ 
+ Anchor(picking_a_version) Anchor(download_a_kit)
+ 
-  
- Anchor(picking_a_version)
- Anchor(download_a_kit)
-  
  == Step 1: Download Cassandra ==
-  
   * Download links for the latest stable release can always be found on the 
[[http://cassandra.apache.org/download|website]].
   * Users of Debian or Debian-based derivatives can install the latest stable 
release in package form, see DebianPackaging for details.
-  * Users of RPM-based distributions can get packages from 
[[http://www.datastax.com/docs/1.1/install/install_rpm|Datastax]].
+  * Users of RPM-based distributions can get packages from 
[[http://www.datastax.com/documentation/cassandra/1.2/webhelp/index.html#cassandra/install/installRHEL_t.html|Datastax]].
   * If you are interested in building Cassandra from source, please refer to 
[[HowToBuild|How to Build]] page.
-  
+ 
  For more details about misc builds, please refer to 
[[VersionsAndBuilds|Cassandra versions and builds]] page.
-  
+ 
  Anchor(running_a_single_node)
-  
+ 
  == Step 2: Basic Configuration ==
+ The Cassandra configuration files can be found in the `conf` directory of 
binary and source distributions. If you have installed Cassandra from a deb or 
rpm package, the configuration files will be located in `/etc/cassandra`.
+ 
-  
- The Cassandra configuration files can be found in the `conf` directory of 
binary and source distributions.
- If you have installed Cassandra from a deb or rpm package, the configuration 
files will be located in `/etc/cassandra`.
-  
  === Step 2.1: Directories Used by Cassandra ===
+ If you've installed Cassandra with a deb or rpm package, the directories that 
Cassandra will use should already be created an have the correct permissions. 
Otherwise, you will want to check the following config settings from 
`conf/cassandra.yaml`: `data_file_directories` (`/var/lib/cassandra/data`), 
`commitlog_directory` (`/var/lib/cassandra/commitlog`), and 
`saved_caches_directory` (`/var/lib/cassandra/saved_caches`).  Make sure these 
directories exist and can be written to.
- If you've installed Cassandra with a deb or rpm package, the directories that 
Cassandra will use should already be created an have the correct permissions. 
Otherwise, you will want to check the following config settings.
- 
- In `conf/cassandra.yaml` you will find the following configuration options: 
`data_file_directories` (`/var/lib/cassandra/data`), `commitlog_directory` 

[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2012-02-16 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
http://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=59rev2=60

Comment:
fix datastax docs link

  == Cassandra documentation from DataStax ==
- !DataStax's latest [[http://datastax.com|Cassandra documentation]] covers 
topics from installation to troubleshooting.  Documentation for older releases 
is also available.
+ !DataStax's latest [[http://www.datastax.com/docs/1.0/index|Cassandra 
documentation]] covers topics from installation to troubleshooting.  
Documentation for older releases is also available.
  
  == Introduction ==
  This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to an operational Cassandra cluster.


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2012-01-13 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
http://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=55rev2=56

Comment:
link datastax docs

- ## page was renamed from GettingStarted2
+ == Cassandra documentation from DataStax == 
+ 
+ DataStax's latest Cassandra documentation is [[datastax.com/docs|here]].  
Documentation for older releases is also available.
+ 
  == Introduction ==
- Cassandra is an advanced topic, and while work is always underway to make 
things easier, it can still be daunting to get up and running for the first 
time. This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to an operational Cassandra cluster.
+ This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to an operational Cassandra cluster.
  
  == Step 0: Prerequisites and connection to the community ==
  Cassandra requires the most stable version of Java 1.6 you can deploy.  For 
Sun's jvm, this means at least u19; u21 is better.  Cassandra also runs on the 
IBM jvm, and should run on jrockit as well.


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2012-01-13 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
http://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=56rev2=57

- == Cassandra documentation from DataStax == 
+ == Cassandra documentation from !DataStax == 
  
- DataStax's latest Cassandra documentation is [[datastax.com/docs|here]].  
Documentation for older releases is also available.
+ !DataStax's latest [[http://datastax.com|Cassandra documentation]] covers 
topics from installation to troubleshooting.  Documentation for older releases 
is also available.
  
  == Introduction ==
  This document aims to provide a few easy to follow steps to take the 
first-time user from installation, to an operational Cassandra cluster.


[Cassandra Wiki] Update of GettingStarted by JonathanEllis

2012-01-13 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Cassandra Wiki for 
change notification.

The GettingStarted page has been changed by JonathanEllis:
http://wiki.apache.org/cassandra/GettingStarted?action=diffrev1=57rev2=58

- == Cassandra documentation from !DataStax == 
+ == Cassandra documentation from DataStax ==
- 
  !DataStax's latest [[http://datastax.com|Cassandra documentation]] covers 
topics from installation to troubleshooting.  Documentation for older releases 
is also available.
  
  == Introduction ==
@@ -69, +68 @@

  }}}
  Advanced cluster management is described in [[Operations]].
  
- If you don't yet have access to hardware for a Cassandra cluster you can try 
it out on EC2 with [[CloudConfig]].
+ If you don't yet have access to hardware for a Cassandra cluster you can try 
it out on EC2 with CloudConfig.
  
  == Step 4: Write your application ==
  The recommended way to communicate with Cassandra in your application is to 
use a [[http://wiki.apache.org/cassandra/ClientOptions|higher-level client]]. 
These provide programming language specific API:s for talking to Cassandra in a 
variety of languages. The details will vary depending on programming language 
and client, but in general using a higher-level client will mean that you have 
to write less code and get several features for free that you would otherwise 
have to write yourself.
  
  That said, it is useful to know that Cassandra uses 
[[http://thrift.apache.org/|Thrift]] for its external client-facing API. 
Cassandra's main API/RPC/Thrift port is 9160. Thrift supports a 
[[http://svn.apache.org/viewvc/thrift/trunk/lib/|wide variety of languages]] so 
you can code your application to use Thrift directly if you so chose (but again 
we recommend a [[http://wiki.apache.org/cassandra/ClientOptions|high-level 
client]] where available).
  
- Important note: If you intend to use thrift directly, you need to install a 
version of thrift that matches the revision that your version of Cassandra 
uses. [[InstallThrift]]
+ Important note: If you intend to use thrift directly, you need to install a 
version of thrift that matches the revision that your version of Cassandra 
uses. InstallThrift
  
  Cassandra's main API/RPC/Thrift port is 9160. It is a common mistake for API 
clients to connect to the JMX port instead.