• Download

Download the latest software from DataStax, including DataStax Enterprise, the distributed hybrid cloud database built on Apache Cassandra™, unified drivers, open source tools and sneak-preview items exclusively available in DataStax Labs. Jul 20, 2016. Install DSE OpsCenter on any Linux Distribution or Mac OS X using the OpsCenter binary tarball. Installing on Docker. Create an OpsCenter Docker container using a DataStax maintained Docker image. Uninstalling OpsCenter. Instructions to uninstall OpsCenter for all installation methods: standalone, RPM, Debian, or tarball. Besides Apache Cassandra™ itself, it includes the DataStax DevCenter tool, a Window’s installer, and DataStax’s professional documentation. To get started with your download, select a DataStax Distribution of Apache Cassandra™ installer from the table below.

Datastax

Download Datastax Dev Center For Mac Download

The program can not be downloaded: the download link is not available.External download links have become invalid for an unknown reason.Sorry, but we cannot ensure safeness of third party websites.

Often downloaded with

  • Integrated Data Viewer InstallerThe Integrated Data Viewer (IDV) from Unidata is a framework for analyzing and..DOWNLOAD
  • Clipboard CenterClipboard Center is a easy-to-use and powerful clipboard manager. Capture the..$4.99DOWNLOAD
  • Softtote Data Recovery【Update】Softtote Mac Data Recovery is fully compatible with latest Mac OS X..$59.99DOWNLOAD
  • Brave Browser DevBrave Browser Dev is the unpolished and unfinished early preview for new..DOWNLOAD
  • SwiftKitSwiftKit -a complete runescape toolkit Main Features: - Skill..DOWNLOAD

If you use Mac OS X as your platform for development work, then you may be interested to know how easy it is to use Apache Cassandra on the Mac. The following shows you how to download and setup Cassandra, its utilities, and also use DataStax OpsCenter, which is a browser-based, visual management and monitoring tool for Cassandra.

History viewer download for mac

Download the Software

DataStax makes available the DataStax Community Edition, which contains the latest community version of Apache Cassandra, along with the Cassandra Query Language (CQL) utility, and a free edition of DataStax OpsCenter. To get Datastax Community Edition, go to Planet Cassandra and download both Cassandra and OpsCenter, and select the tar downloads of both the DataStax Community Server and OpsCenter. You can also use the curl command on Mac to directly download the files to your machine. For example, to download the DataStax Community Server, you could enter the following at terminal prompt: curl -OL http://downloads.datastax.com/community/dsc.tar.gz

Devcenter Cassandra

Install Cassandra

Once your download of Cassandra finishes, move the file to whatever directory you’d like to use for testing Cassandra. Then uncompress the file (whose name will change depending on the version you’re downloading):

Then switch to the new Cassandra bin directory and start up Cassandra:

Now that you have Cassandra running, the next thing to do is connect to the server and begin creating database objects. This is done with the Cassandra Query Language (CQL) utility. CQL is a very SQL-like language that lets you create objects as you’re likely used to doing in the RDBMS world. The CQL utility (cqlsh) is in the same bin directory as the cassandra executable:

[cqlsh 2.3.0 Cassandra 1.2.2 CQL spec 3.0.0 Thrift protocol 19.35.0]

Cassandra has the concept of a keyspace, which is similar to a database in a RDBMS. A keyspace holds data objects and is the level where you specify options for a data partitioning and replication strategy. For this brief introduction, we’ll just create a basic keyspace to hold some example data objects we’ll create:

Now that you have a keyspace created, it’s time to create a data object to store data. Because Cassandra is based on Google Bigtable, you’ll use column families /tables to store data. Tables in Cassandra are similar to RDBMS tables, but are much more flexible and dynamic. Cassandra tables have rows like RDBMS tables, but they are a sparse column type of object, meaning that rows in a column family can have different columns depending on the data you want to store for a particular row. Let’s create a base table to hold employee data:

The column family is named emp and contains four columns, including the employee ID, which acts as the primary key of the table. Note that a column family must have a primary key that’s used for initial query activity. Let’s now go ahead and insert data into our new column family using the CQL INSERT command:

Notice how Cassandra’s CQL is literally identical to the RDBMS INSERT command. Other DML statements are as well:

Querying data uses the familiar SELECT statement:

However, look what happens when you try to use a WHERE predicate and reference a non-primary key column:

In Cassandra, if you want to query columns other than the primary key, you need to create a secondary index on them:

1.6.0

Installing and using DataStax OpsCenter

Installing DataStax OpsCenter on Mac involves working through the following steps in a terminal window:

  1. Untar the package (tar –xzf) in the directory you want to use for OpsCenter.
  2. Change directories to the OpsCenter home bin directory, and run the ./setup.py script.
  3. You can now start the primary OpsCenter process in the background by entering the command ./opscenter & from the bin directory.
  4. Now you need to get the agent configured to monitor the Cassandra instance you likely already have running on your Mac. Change to the agent/bin directory and run the setup script passing the localhost IP (usually 127.0.0.1) twice: ./setup 127.0.0.1 127.0.0.1.
  5. Start the agent from the agent/bin directory: ./datastax-agent.
  6. Open either a Firefox, Chrome, or Safari web browser and enter the following in the address bar: http://127.0.0.1:8888/opscenter/index.html.

Conclusion

That’s it – you’ve now got Cassandra and DataStax OpsCenter installed and running on your Mac. For other software such as various application drivers and client libraries, visit the DataStax downloads page.