Scherzinger, S. ; Thor, A.

AutoShard - Declaratively Managing Hot Spot Data Objects in NoSQL Data Stores

17th International Workshop on the Web and Databases (WebDB@SIGMOD)

2014 / 06

Paper

Futher information: https://arxiv.org/abs/2111.01086

Abstract

NoSQL document stores are becoming increasingly popular backends in Web development.
Not only do they scale out to large volumes of data, many systems are even
custom-tailored for this domain: NoSQL document stores like Google Cloud Datastore
have been designed to support massively parallel reads,
and even guarantee strong consistency in updating single data objects.
However, strongly consistent updates cannot be implemented
arbitrarily fast in large-scale distributed systems.
Consequently, data objects that experience high-frequent writes
can turn into severe performance bottlenecks.
In this paper, we present AutoShard, a ready-to-use object mapper for Java applications
running against NoSQL data stores. AutoShard's unique
feature is its capability to
gracefully shard
hot spot data objects that are suffering under write contention.
Using AutoShard, developers can easily handle hot spot data objects
by adding minimally intrusive annotations to their code.
Our experiments show the significant impact of
sharding on both the write throughput and the execution time.