Close
Contact Us info@learnquest.com

??WelcomeName??
??WelcomeName??
« Important Announcement » Contact Us 877-206-0106 | USA Flag
Close
Close
Close
photo

Thank you for your interest in LearnQuest.

Your request is being processed and LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

photo

Thank you for your interest in Private Training.

We look forward to helping you develop the perfect training solution to help you meet your company's goals.

For immediate assistance, speak with one of our representatives using the chat module below. Otherwise, LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

Close
photo

Thank you for your interest in LearnQuest!

Now, you will be able to stay up-to-date on our latest course offerings, promotions, and training discounts. Watch your inbox for upcoming special offers.

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

Cassandra 3 for Developers

Price
2,100 USD
3 Days
EJCJ-560
Classroom Training, Online Training
Other

AWS Training Pass

Take advantage of flexible training options with the AWS Training Pass and get Authorized AWS Training for a full year.

Learn More

Prices reflect a 22.5% discount for IBM employees (wherever applicable).
Prices reflect a 24% discount for Kyndryl employees (wherever applicable).
Prices reflect the Accenture employee discount.
Prices shown are the special AWS Partner Prices.
Prices reflect the Capgemini employee discount.
Prices reflect the UPS employee discount.
Prices reflect the ??democompanyname?? employee discount.
GSA Private/Onsite Price: ??gsa-private-price??
For GSA pricing, please go to GSA Advantage.

Class Schedule

Delivery Formats

Sort results

Filter Classes

Guaranteed to Run

Modality

Location

Language

Date

    Sorry, there are no public classes currently scheduled in your country.

    Please complete this form, and a Training Advisor will be in touch with you shortly to address your training needs.

View Global Schedule

Course Description

Overview

The Cassandra (C*) database is a massively scalable NoSQL database that provides high availability and fault tolerance, as well as linear scalability when adding new nodes to a cluster. It has many powerful capabilities, such as tunable and eventual consistency, that allow it to meet the needs of modern applications, but also introduce a new paradigm for data modeling that many organizations do not have the expertise to use in the best way.

This course provides an in-depth introduction to using Cassandra and creating good data models with Cassandra. It is technical and comprehensive, with a focus on the practical aspects of working with C*. It introduces all the important concepts needed to understand Cassandra, including enough coverage of internal architecture to make good decisions. It is hands-on, with labs that provide experience in all the important areas. It covers CQL (Cassandra Query Language) in depth, as well as covering the Java API for writing Cassandra clients.

After taking this course, you will have learned what you need to productively work with Cassandra as well as guidelines for using it in an optimal manner. You’ll also understand some of the “anti-patterns” that lead to non-optimal C* data models. You’ll be familiar with CQL and with the Java client library and be ready to work on production systems involving Cassandra.
 

Objectives

Upon completion of the Cassandra 3 for Developers course, students will be able to:
  • Discuss the needs that C* addresses
  • Explain the operation and structure of C*
  • Install and set up a C* database
  • Use the C* tools, including cqlsh, nodetool, and ccm (Cassandra Cluster Manager)
  • Describe the C* architecture, and how a C* cluster is structured
  • Explain how data is distributed and replicated in a C* cluster
  • Discuss core C* data modeling concepts, and use them to create well-structured data models
  • Use data replication and eventual consistency intelligently
  • Use CQL to create tables and query for data
  • Know and use the CQL data types (numerical, textual, uuid, etc.)
  • Describe the various kinds of primary keys available (simple, compound, and composite primary keys)
  • Use more advanced capabilities like collections, counters, secondary indexes, CAS (Compare and Set), static columns, and batches
  • Explain the Java client API and use it to write client programs that work with C*
  • Build and use dynamic queries with QueryBuilder
  • Create and use asynchronous queries with the Java API

Audience

  • Java programmers wishing to expand their knowledge in the use of Big Data using Cassandra

Prerequisites

    • Working knowledge of Java programming, including use of inheritance, interfaces, and exceptions

Topics

  • Cassandra Overview
    • Why we need Cassandra
    • High level Cassandra overview
    • Cassandra features
    • Basic Cassandra installation and configuration
  • Cassandra Architecture and CQL Overview
    • Cassandra Cassandra Architecture Overview
    • Cassandra Clusters and Rings
    • Data Replication in Cassandra
    • Introduction to CQL
    • Defining Tables with a Single Primary Key
    • Using cqlsh for Interactive Querying
    • Selecting and Inserting/Upserting Data with CQL
    • Data Replication and Distribution
    • Basic Data Types (including uuid, timeuuid)
  • Data Modeling and CQL Core Concepts
    • Defining a compound primary key
      • CQL for compound primary keys
      • Partition keys and data distribution
      • Clustering columns
      • Overview of internal data organization
    • Additional querying capabilities
      • Result ordering
      • Update and delete queries
      • Result filtering
      • Batch queries
    • Data modeling guidelines
      • Denomalization
      • Data modeling workflow
      • Data modeling principles
      • Primary key considerations
    • Composite partition keys
      • Defining with CQL
      • Data distribution with composite partition key
      • Overview of internal data organization
  • Additional CQL Capabilities
    • Indexing
      • Primary/partition keys and pagination with token()
      • Secondary indexes and usage guidelines
    • Cassandra counters
      • Counter structure and definition
      • Using counters
      • Counter limitations
    • Cassandra collections
      • Collection structure and uses
      • Defining collections
      • Querying collections
      • Limitations
      • Overview of internal storage organization
    • Static column: overview and usage
    • Static column: guidelines
    • Materialized view: overview and usage
    • Materialized view: guidelines
  • Data Consistency in Cassandra
    • Overview of consistency in Cassandra
    • CAP theorem
    • Eventual (tunable) consistency in C*
    • Choosing CL ONE
    • Choosing CL QUORUM
    • Achieving immediate consistency
    • Using other consistency levels
    • Internal repair mechanisms
  • Lightweight Transactions (LWT) / Compare and Set (CAS)
    • Overview of lightweight transactions
    • Using LWT, the [applied] column
    • If exists, if not exists, other if conditions
    • Basic CAS internals
    • Overhead and guidelines
  • Practical Considerations
    • Dealing with write failure
      • Unavailable nodes and node failure
      • Requirements for write operations
    • Key and row caches
      • Cache overview
      • Usage guidelines
    • Multi-data center support
      • Overview
      • Replication factor configuration
      • Additional consistency levels
    • Deletes
      • CQL for deletion
      • Tombstones
      • Usage guidelines
  • The Java Client API
    • API overview
      • Introduction
      • Architecture and features
    • Connecting to a cluster
      • Cluster and cluster builder
      • Contact points, connection to a cluster
      • Session overview and API
      • Working with sessions
    • The query API
      • Overview
      • Dynamic queries, statement, simpleStatement
      • Processing query results, resultSet, row
      • PreparedStatement, boundStatement
      • Binding values and Querying with preparedStatements
      • CQL to java type mapping
      • Working with UUIDs
      • Working with time/date values
      • Working with batches of simpleStatement and preparedStatement
    • Dynamic queries and queryBuilder
      • QueryBuilder overview and API
      • Building SELECT, DELETE, INSERT, and UPDATE queries
      • Creating WHERE clauses
      • Other query examples
    • Configuring query behavior
      • Setting LIMIT and TTL
      • Working with consistency
      • Using LWT
      • Working with driver policies
      • Load balancing policies
      • Retry policies
      • Reconnection policies
    • Asynchronous querying overview
      • Synchronous vs asynchronous querying
      • Executing asynchronous queries
      • Java.util.concurrent.Future
      • Cassandra resultSetFuture
      • Future result processing
  • 2023 Top 20 Training Industry Company - IT Training

    Need Help?

    Call us at 877-206-0106 or e-mail us at info@learnquest.com

    Personalized Solutions

    Need a personalized solution for your Training? Contact us, and one of our training advisors will help you find the best solution.

    Contact Us

    Need Help?

    Do you have a question about the courses, instruction, or materials covered? Do you need help finding which course is best for you? We are here to help!

    Talk to us

    20% Off All AI Training Courses

    Achieve more with AI-powered tools and strategies.

    PROMO CODE: AI20
    VALID THROUGH APRIL 30, 2024

    20% Off All AI Training Courses

    Self-Paced Training Info

    Learn at your own pace with anytime, anywhere training

    • Same in-demand topics as instructor-led public and private classes.
    • Standalone learning or supplemental reinforcement.
    • e-Learning content varies by course and technology.
    • View the Self-Paced version of this outline and what is included in the SPVC course.
    • Learn more about e-Learning

    Course Added To Shopping Cart

    bla

    bla

    bla

    bla

    bla

    bla

    Self-Paced Training Terms & Conditions

    ??spvc-wbt-warning??
    ??group-training-form-area??
    ??how-can-we-help-you-area??
    ??personalized-form-area??
    ??request-quote-area??

    Sorry, there are no classes that meet your criteria.

    Please contact us to schedule a class.
    Close

    self-paced
    STOP! Before You Leave

    Save 0% on this course!

    Take advantage of our online-only offer & save 0% on any course !

    Promo Code skip0 will be applied to your registration

    Close
    Nothing yet
    here's the message from the cart

    To view the cart, you can click "View Cart" on the right side of the heading on each page
    Add to cart clicker.

    Purchase Information

    ??elearning-coursenumber?? ??coursename??
    View Cart

    Need more Information?

    Speak with our training specialists to continue your learning journey.

     

    Delivery Formats

    Close

    By submitting this form, I agree to LearnQuest's Terms and Conditions

    heres the new schedule
    This website uses third-party profiling cookies to provide services in line with the preferences you reveal while browsing the Website. By continuing to browse this Website, you consent to the use of these cookies. If you wish to object such processing, please read the instructions described in our Privacy Policy.
    Your use of this LearnQuest site affirms your consent to our use of session and persistent cookies to track how you use our website.