August 31, 2012 2:37 PM
Posted by: Michael Tidmarsh
IT Books,
NoSQLThe following is an excerpt from the book Making Sense of NoSQL from Manning Publications.
 |
Making Sense of NoSQL
By Dan McCreary and Ann Kelly
The four main patterns—key value store, graph store, Bigtable store, and document store—are the major architecture patterns associated with NoSQL. As in most things in life there are always variations on a theme. In this article, part of Making Sense of NoSQL, the authors discuss a representative sample of the types of pattern variations and how they can be combined to build NoSQL solutions in organizations.
You may also be interested in… |
We’re giving away a free copy of Making Sense of NoSQL to one lucky ITKE member. Share your data management story with us and we’ll pick the most compelling tale.
Variations of NoSQL Architectural Patterns
In this article, we will look at how each of the NoSQL patterns—key-value store, graph store, Bigtable store, and document store—can be varied by focusing on a different aspect of system implementation. We’ll look at how the architectures can be varied to use RAM or solid state drives (SSD) and then talk about how the patterns can be used on distributed systems or modified to create enhanced-availability. Finally, we’ll look at how database items can be grouped together in different ways to make navigation over many items easier.
Customization for Random Access Memory (RAM) or Solid State Drive (SSD) Stores
Some NoSQL products are designed to specifically work with one type of memory; for example, memcache, a key-value store, was specifically designed to see if items are in RAM on multiple servers. A key-value store that only uses RAM is called a RAM cache; it’s flexible and has general tools that application developers can use to store global variables, configuration files, or intermediate results of document transformations, A RAM cache is fast, reliable, and can be thought of as another programming construct like an array, a map, or a lookup system. There are, however, several items that should be considered:
- Simple RAM resident key-values stores are generally empty when the server starts up and can only be populated with values on demand.
- You need to define the rules about how memory is partitioned between the RAM cache and the rest of your application.
- RAM resident information must be saved to another storage system if you want it to persist between server restarts.
The key is to understand that RAM caches must be re-created from scratch each time a server restarts. A RAM cache that has no data in it is called a “cold-cache” and is a good reason why some systems get faster the more they are used after a reboot.
SSD systems provide permanent storage and are almost as fast as RAM for read operations. The Amazon DynamoDB key-value store service uses SSD for all its storage resulting is very high-performance read operations. Write operations to SSD can often be buffered in large RAM caches resulting in very fast write times until the RAM becomes full.
As you will see, using RAM and SSD drives efficiently is critical when using distributed systems that provide for higher volume and availability.
Continued »
April 16, 2012 7:05 PM
Posted by: Guest Author
Book Review,
SQL Server
Member Batye agreed to review Microsoft SQL Server 2012 Pocket Consultant. Disclosure: The publisher of the book provided a free copy for this review.
This small pocket book is a great resource for IT admins that need to have a quick guide at their fingertips to conquer SQL Server 2012. It’s easy to read and simple to use, whether as a day-to-day manual or a reference guide to Microsoft SQL Server 2012.
I found it had a good balance of both step-by-step implementation and as well as sections with more expanded detail. The thing I really like about this book though was the size. It easily fits in your hand and is a perfect traveling companion. This book was also helpful figuring out a few things I didn’t see in the other reference guides for SQL Server 2012.
The material is covered in a detailed manner that remains pretty easy to digest and absorb on the go. The author, William R. Stanek, is a Microsoft technical guru and is the best of the best in computer writing for a reason.
Overall, he wrote a good book.
August 9, 2011 4:42 PM
Posted by: Guest Author
Cisco,
Cisco Press,
Network Security
Member Batye agreed to review Computer Incident Response and Product Security. Disclosure: The publisher of the book provided a free copy for this review.
This is a good little book as a reference when dealing with the after effects and investigation of a security breach in your company’s network. I would recommend this book as a manual for a network security admin or a student in the field of the forensic IT.
The book provides a good overview of the security topic and is up to date. Keep in mind the book is written from the point of view of a Cisco employee; nevertheless, the author gives the reader a manual and practical guide on how to setup and run a security incident response team. The book gives true to life examples and training to help in a job in network security.
If you’d like to review a book for the Bookworm Blog, send me an email at Melanie at ITKnowledgeExchange.com to express your interest.
July 26, 2011 2:22 PM
Posted by: Guest Author
Ed Tittel,
Windows Sysinternals Administrator's Reference
Check out Ed Tittel’s quickie book review of Windows Sysinternals Administrator’s Reference over at the Windows Enterprise Desktop blog. As someone who knows Mark Russinovich, the author and Technical Fellow at Microsoft, Tittel has some valuable insight into the book.
Interested in writing a review? Send me a little information about your IT background and your interest in reviewing IT books at Melanie@ITKnowledgeExchange.com.