BigTable: All content tagged as BigTable in NoSQL databases and polyglot persistence
Friday, 12 April 2013
HBase Data Modeling Tips & Tricks - Timeshifting
Jeff Kolesky describing the data model they are using with HBase and one (strange) trick to reduce the roundtrips to the database:
The idea is to put all of the data about a single entity into a single row in HBase. When you need to run a computation that involves that entity’s data, you have quick access to it by the row key, and all of the data is stored close together on disk.
Additionally, against many suggestions from the HBase community, and general confusion about how timestamps work, we are using timestamps with logical values. Instead of just letting the region server assign a timestamp version to each cell, we are explicitly setting those values so that we can use timestamp as a true queryable dimension in our gets and scans.
In addition to the real timeseries data that is indexed using the cell timestamp, we also have other columns that store metadata about the entity.
It’s amazing how many smart and weird tricks engineers put in their production systems when having to deal with real requirements and SLAs.
Original title and link: HBase Data Modeling Tips & Tricks - Timeshifting (©myNoSQL)
via: http://www.heyitsopower.com/code/timeshifting-in-hbase/
Thursday, 4 April 2013
Kairosdb - Fast Scalable Time Series Database
kairosdb is introduced as a rewrite of the OpenTSDB written primarily for Cassandra (nb: OpenTSDB was based on HBase). In terms of what it brings new, this page lists:
- Uses Guice to load modules.
- Incorporates Jetty for Rest API and serving up UI.
- Pure Java build tool (Tablesaw)
- UI uses Flot and is client side rendered.
- Ability to customize UI.
- Relative time now includes month and supports leap years.
- Modular data store interface supports:
- HBase
- Cassandra
- H2 (For development)
- Milliseconds data support when using Cassandra.
- Rest API for querying and submitting data.
- Build produces deployable tar, rpm and deb packages.
- Linux start/stop service scripts.
- Faster.
- Made aggregations optional (easier to get raw data).
- Added abilities to import and export data.
- Aggregators can aggregate data for a specified period.
- Aggregators can be stacked or “piped” together.
Source code lives on GitHub. Let’s see where it goes.
Original title and link: Kairosdb - Fast Scalable Time Series Database (©myNoSQL)
Wednesday, 3 April 2013
5 Steps to Benchmarking Managed NoSQL - DynamoDB Vs Cassandra
Ben Bromhead (instaclustr) for High Scalability:
To determine the suitability of a provider, your first port of call is to benchmark. Choosing a service provider is often done in a number of stages. First is to shortlist providers based on capabilities and claimed performance, ruling out those that do not meet your application requirements. Second is to look for benchmarks conducted by third parties, if any. The final stage is to benchmark the service yourself.
✚ Peter Bailis asks a very valid question: if it’s the default YCSB and it’s a benchmark, where are the results?”
✚ instaclustr offers a totally managed hosting solution for Cassandra. (Disclaimer: they’ve sponsored myNoSQL in the past)
Original title and link: 5 Steps to Benchmarking Managed NoSQL - DynamoDB Vs Cassandra (©myNoSQL)
Tuesday, 2 April 2013
Improving Secondary Index Write Performance in Cassandra 1.2
Sam Tunnicliffe’s describes the old and new, optimized behavior of secondary indexes writes in Cassandra 1.2:
While secondary indexes can add a lot of flexibility to the way data is modelled and accessed, they do add complexity on the server side as the indexes need to be kept in sync with the primary data. Until recently, this has led to some significant trade offs in write throughput and IO utilisation as we always had to perform a read before the write in order to update any relevant secondary indexes. In Cassandra 1.2, this area has been substantially reworked to remove the need for read-before-write. New index entries are now written at the same time as the primary data is updated and old entries removed lazily at query time. Overall, this has lead to some decent performance improvements.
Original title and link: Improving Secondary Index Write Performance in Cassandra 1.2 (©myNoSQL)
via: http://www.datastax.com/dev/blog/improving-secondary-index-write-performance-in-1-2
Thursday, 28 March 2013
Graph Based Recommendation Systems at eBay
Slidedeck from eBay explaining how they have implemented a graph based recommendation system based on,—surprise! not a graph database—Cassandra.
Original title and link: Graph Based Recommendation Systems at eBay (©myNoSQL)
Wednesday, 27 March 2013
HBase Compactions Q&A
Ted Yu summarizes some of the most frequent questions related to compactions in HBase:
On user mailing list, questions about compaction are probably the most frequently asked.
Original title and link: HBase Compactions Q&A (©myNoSQL)
via: http://zhihongyu.blogspot.com/2013/03/compactions-q.html
Wednesday, 13 March 2013
RSS Reader With Cassandra and Netflix OSS Tools
This RSS reader app from Netflix can be a very good excuse to use Cassandra, some of the open source projects from Netflix and why not create an alternative to Google’s Reader which is declared defunct or alive every couple of months:
Projects you’ll use: Cassandra with Astyanax, Archaius, Blitz4j, Eurka, Governator, Hystrix, Karyon, Ribbon, Servo. As for myself, I’ve already checked out the code.
Original title and link: RSS Reader With Cassandra and Netflix OSS Tools (©myNoSQL)
via: http://techblog.netflix.com/2013/03/introducing-first-netflixoss-recipe-rss.html
Tuesday, 12 March 2013
Cassandra at Adobe: The Profile Cache Servers
The team I know at Adobe has invested a lot into HBase and they are offering their services globally. But according to this PDF, in a true polyglot database manner, it looks like other parts of the Adobe business have opted for a different solution: Cassandra. The size of the cluster mentioned in the whitepaper is pretty small, 16 nodes, but what is interesting is that these are beafy servers using solid state drives:
The PCS is comprised of large servers using solid state drives (SSDs) for storage […] The PCS is basically Cassandra with a set of custom APIs built on top of it.
Original title and link: Cassandra at Adobe: The Profile Cache Servers (©myNoSQL)
Introduction to Apache HBase Snapshots
Matteo Bertozzi introduces HBase snapshots:
Prior to CDH 4.2, the only way to back-up or clone a table was to use Copy/Export Table, or after disabling the table, copy all the hfiles in HDFS. Copy/Export Table is a set of tools that uses MapReduce to scan and copy the table but with a direct impact on Region Server performance. Disabling the table stops all reads and writes, which will almost always be unacceptable.
In contrast, HBase snapshots allow an admin to clone a table without data copies and with minimal impact on Region Servers. Exporting the snapshot to another cluster does not directly affect any of the Region Servers; export is just a distcp with an extra bit of logic.
The part that made me really curious and that didn’t make too much sense when first reading the post is “clone a table without data copies”. But the post clarifies what the snapshot is:
A snapshot is a set of metadata information that allows an admin to get back to a previous state of the table. A snapshot is not a copy of the table; it’s just a list of file names and doesn’t copy the data. A full snapshot restore means that you get back to the previous “table schema” and you get back your previous data losing any changes made since the snapshot was taken.
What I still don’t understand is how snapshots are working after a major compaction (which drops deletes and expired cells).
Original title and link: Introduction to Apache HBase Snapshots (©myNoSQL)
via: http://blog.cloudera.com/blog/2013/03/introduction-to-apache-hbase-snapshots/
Friday, 8 March 2013
Adding Value Through Graph Analysis Using Titan and Faunus
Interesting slidedeck by Matthias Broecheler introducing 3 graph-related tools developed by Vadas Gintautas, Marko Rodriguez, Stephen Mallette and Daniel LaRocque:
- Titan: a massive scale property graph allowing real-time traversals and updates
- Faunus: for batch processing of large graphs using Hadoop
- Fulgora: for global running graph algorithms on large, compressed, in-memory graphs
The first couple of slides are also showing some possible use cases where these tools would prove their usefulness:
Original title and link: Adding Value Through Graph Analysis Using Titan and Faunus (©myNoSQL)
Wednesday, 6 March 2013
Simplifying HBase Schema Development With KijiSchema
Jon Natkins from WibiData:
When building an HBase application, you need to be aware of the intricacies and quirks of HBase. For example, your choice of names for column families, or columns themselves can have a drastic effect on the amount of disk space necessary to store your data. In this article, we’ll see how building HBase applications with KijiSchema can help you avoid inefficient disk utilization.
The recommendations related to the length of column names is a one of those subtle signs of how young the NoSQL space is1.
-
This is not specific only to HBase, but also MongoDB, RethinkDB, etc. ↩
Original title and link: Simplifying HBase Schema Development With KijiSchema (©myNoSQL)
via: http://www.kiji.org/2012/03/01/using-disk-space-efficiently-with-kiji-schema
Brief Intro to Cassandra in 27 Slides
If you never looked into Apache Cassandra, Michaël Figuière’s slidedeck will give you a quick into Cassandra’s main concepts.
Apache Cassandra 1.2 introduces some new features such as a Binary Protocol and Collections datatype that together with the now finalized CQL3 query language provide a new interface to communicate with Cassandra that dramatically shrink its learning curve and simplify its daily use while still relying on its highly scalable architecture and storage engine. This presentation will iterate over all these new features including an overview of CQL3 query language, a look at the new client architecture, and an update on data modeling best practices. Then we’ll see how to implement an enterprise application using this new interface so that the audience can realize that a number of design principles are inspired from those commonly used with relational databases while some other entirely different, due to Cassandra partitioning approach.
Original title and link: Brief Intro to Cassandra in 27 Slides (©myNoSQL)
Most Popular Articles
- Translate SQL to MongoDB MapReduce
- Tutorial: Getting Started With Cassandra
- CouchDB vs MongoDB: An attempt for a More Informed Comparison
- Cassandra @ Twitter: An Interview with Ryan King
- A Couple of Nice GUI Tools for MongoDB
- NoSQL benchmarks and performance evaluations
- Ehcache: Distributed Cache or NoSQL Store?
- Document Databases Compared: CouchDB, MongoDB, RavenDB
- Quick Review of Existing Graph Databases
- NoSQL Data Modeling
