Git Product home page Git Product logo

mvbench's Introduction

MATERIALIZED VIEW BENCHMARK

Summary

This tools will run a synthetic workload against Apache Cassandra with the intention of stressing the system. It can maintain multiple views of data either manually (in app) or via Materialized Views (in server)

Workload Story

Imagine we run a music service that allows users to create playlists. The core table for our service is:

CREATE TABLE user_playlists
(
  user_name           text,
  playlist_name       text,
  song_id             text,
  added_time          bigint,
  artist_name         text,
  genre               text,
  last_played         bigint,
  PRIMARY KEY (user_name, playlist_name, song_id) 
);

Now with this information we can create add, update, delete playlists in our system. But we want to answer other questions using this data like:

Which users like the same song? Which users like the same artist? Which users like the same genre? What was the recently played tracks for a given user?

So our system maintains other views on this data (defined in the schema)

How to use?

   # Load the schema into your C* cluster
   cqlsh < bench_schema.cql
   
   # compile 
   mvn compile
   
   # run with server based materialized view mode
   mvn exec:java -Dexec.args=""

   # To with in app based manual view mode
   mvn exec:java -Dexec.args="--manual" 

   # To see all options
   mvn exec:java -Dexec.args="--help"
   

After running, there will be a detailed csv files under ./reports/view and ./reports/manual

by @tjake

mvbench's People

Contributors

tjake avatar aboudreault avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.