ALL COVERED TOPICS

NoSQL Benchmarks NoSQL use cases NoSQL Videos NoSQL Hybrid Solutions NoSQL Presentations Big Data Hadoop MapReduce Pig Hive Flume Oozie Sqoop HDFS ZooKeeper Cascading Cascalog BigTable Cassandra HBase Hypertable Couchbase CouchDB MongoDB OrientDB RavenDB Jackrabbit Terrastore Amazon DynamoDB Redis Riak Project Voldemort Tokyo Cabinet Kyoto Cabinet memcached Amazon SimpleDB Datomic MemcacheDB M/DB GT.M Amazon Dynamo Dynomite Mnesia Yahoo! PNUTS/Sherpa Neo4j InfoGrid Sones GraphDB InfiniteGraph AllegroGraph MarkLogic Clustrix CouchDB Case Studies MongoDB Case Studies NoSQL at Adobe NoSQL at Facebook NoSQL at Twitter

NAVIGATE MAIN CATEGORIES

Close

Redis: All content tagged as Redis in NoSQL databases and polyglot persistence

Redis: You Shall Never Be Blamed

Mariano Valles with a story of Ruby, Redis and concurrency:

  • Concurrency issues and high loads are best friends.
  • When using unicorn or any other app server using forking to have multiple process, be careful, forks are process clones
  • Servers used as databases or willing to handle many incoming connections should be tuned accordingly: e.gprlimit —nofile 10000
  • Don’t rely on the GC for cleaning up your mess. It might work in Java, not so much in Ruby.

Original title and link: Redis: You Shall Never Be Blamed | (NoSQL database©myNoSQL)

via: http://marianovalles.wordpress.com/2013/04/01/redis-you-shall-never-be-blamed/


Rackspace: BYOD to Your Preferred Storage

While Amazon Web Services approach is bring-your-own-data to our storage and processing solutions, Rackspace’s strategy seems to be “whatever popular NoSQL storage engine you like, we have your back. Just bring your data“.

Last month Rackspace bought MongoDB hosting provider ObjectRocket and now they acquired Exceptional Cloud Service which brings Redis hosting on board.

It’s difficult to say how well is Amazon’s strategy working as the company doesn’t do a lot to get their customers’ case studies out there—I still need to find a list of 10 companies that are using Amazon Dynamo. But this doesn’t mean a thing. On the other hand, I can see Rackspace’s strategy working and getting a lot of traction considering they’re looking after the most popular NoSQL tools.

✚ The Register writes about this acquisition too: Rackspace gobbles Exceptional Cloud Services for Redis smarts. I assume many others are asking the same question:

So, with Redis and MongoDB due to make their way into the Rackspace cloud proper, what other technologies are catching the web hoster turned cloud whisperer’s eyes?

Original title and link: Rackspace: BYOD to Your Preferred Storage (NoSQL database©myNoSQL)


FnordMetric: A Framework for Collecting and Visualizing Timeseries

FnordMetric looks like an interesting library for collecting and visualizing timeseries:

FnordMetric

According to the docs, the framework has 3 components:

  1. FnordMetric Classic: a DSL for processing data streams and building web-based dashboards.

    It’s built in Ruby and uses Redis.

  2. FnordMetric Enterprise: a JVM-based timeseries databases

  3. FnordMetricUI: HTML5 and Javascript API for embeding charts into web pages. It works with either the Classic or Enterprise backends.

My only question is why building a new storage engine for the Enterprise component when there are already so many good tools for doing this. Other than that, I really liked the screenshot.

Original title and link: FnordMetric: A Framework for Collecting and Visualizing Timeseries (NoSQL database©myNoSQL)


Redis - Pick the Right Data Structure

Brian O’Rourke in a post with tips about Redis:

Here’s our standard reference table for Redis datatypes, their most common uses, and their most common misuses.

Redis Pick the Right Data Structures

Even if most of these are just common sense, it’s good to have some sort of cheat sheet around when modeling your data.

Original title and link: Redis - Pick the Right Data Structure (NoSQL database©myNoSQL)

via: http://www.redisgreen.net/blog/2013/02/18/redis-201/


NoSQL Bug Fix Releases: Redis 2.6.10 and RavenDB 2.01

The RavenDB team has released mostly a bug fix new version RavenDB 2.01. The change log is here.

Redis also has a new bug fix release: 2.6.10 including non-critical fixes and 5 small improvements. Change log is here

Original title and link: NoSQL Bug Fix Releases: Redis 2.6.10 and RavenDB 2.01 (NoSQL database©myNoSQL)


NoSQL Hosting: Redis and RavenDB

More service providers for hosted NoSQL solutions:

  1. Garantia Data to Offer its Redis & Memcached Hosting Services in Europe: “In-memory NoSQL Company extends Redis Cloud and Memcached Cloud to European Amazon Web Services users.”
  2. CloudBird Launch, now with RavenDB 2.0 support - The CloudBird Blog: “Today we’re cracking open the Champagne as we peel off the beta label and officially welcome production databases to our RavenDB hosting service. What’s more we’re also introducing support for the Raven 2.0 RTM.”

It’s not anymore just “a database for every taste”, but steadly becoming more of “a database for every taste served from anywhere you like”,

Original title and link: NoSQL Hosting: Redis and RavenDB (NoSQL database©myNoSQL)


Get Your Redis on Windows with Redis Hobo

Jason Punyon about the somehow alleviated hassle of getting Redis to work on Windows using redishobo:

TL;DR: Want a virtual machine running redis in however long it takes you to download 400MB + a little completely automated install time? Follow the instructions here and you’ll be on your way.

Vagrant is great, but the user experience it’s still not awesome for a great tool like Redis. I’m wondering when Microsoft will pull themselves together to maintain a Redis fork that actually works on Windows.

Original title and link: Get Your Redis on on Windows With Redis Hobo (NoSQL database©myNoSQL)

via: http://jasonpunyon.com/blog/2013/01/28/get-your-redis-on-on-windows/


Redis-Stat: Redis Monitoring With Netflix’s Hystrix Flavor

A very early stage of a Redis monitoring tool using hiredis1and express2 on Node.js presenting a dashboard inspired by Netflix’s Hystrix3:

redis-stat2

The project is on GitHub so you can send some pull requests with improvements.

Original title and link: Redis-Stat: Redis Monitoring With Netflix’s Hystrix Flavor (NoSQL database©myNoSQL)


11 Interesting Releases From the First Weeks of January

The list of releases I wanted to post about has been growing fast these last couple of weeks, so instead of waiting leaving it to Here it is (in no particular order1):

  1. (Jan.2nd) Cassandra 1.2 — announcement on DataStax’s blog. I’m currently learning and working on a post looking at what’s new in Cassandra 1.2.
  2. (Jan.10th) Apache Pig 0.10.1 — Hortonworks wrote about it
  3. (Jan.10th) DataStax Community Edition 1.2 and OpsCenter 2.1.3 — DataStax announcement
  4. (Jan.10th) CouchDB 1.0.4, 1.1.2, and 1.2.1 — releases fixing some security vulnerabilities
  5. (Jan.11th) MongoDB 2.3.2 unstable — announcement. This dev release includes support for full text indexing. For more details you can check:

    […] an open source project extending Hadoop and Hive with a collection of useful user-defined-functions. Its aim is to make the Hive Big Data developer more productive, and to enable scalable and robust dataflows.


  1. I’ve tried to order it chronologically, but most probably I’ve failed. 

Original title and link: 11 Interesting Releases From the First Weeks of January (NoSQL database©myNoSQL)


Redis Partial Resynchronization PSYNC, Plus Philosophy, Trade-Offs, and Making Decisions When Creating Tools for People to Use

There are way, way too many things I’d want to quote from Salvatore’s post. They are about the philosophy of a strong product, they are about the trade-offs that go into engineering solid but friendly products, they are about making decisions and not allowing misconceptions or old bad experiences have a bad influence on what you are building. You must read it.

Original title and link: Redis Partial Resynchronization PSYNC, Plus Philosophy, Trade-Offs, and Making Decisions When Creating Tools for People to Use (NoSQL database©myNoSQL)

via: http://antirez.com/news/47


Using Beaver to Ship Log Files via Redis to Logstash

Beaver’s explicit goal is to provide a shipper that can be used in environments where one or more of the following is true:

  • Operations cannot support the JVM on an instance
  • Developers are more experienced with debugging Python performance issues
  • The server does not have enough memory for a large JVM application
  • Simply shipping logs to an intermediary for later processing is enough

What I’m not very clear about is the need for Redis, but I assume the main reasons could be: 1) logstash doesn’t accept pushed events; or 2) logstash might drop/lose events if pushed to0 fast.

Original title and link: Using Beaver to Ship Log Files via Redis to Logstash (NoSQL database©myNoSQL)

via: http://josediazgonzalez.com/2013/01/01/setting-up-beaver-for-use-with-logstash/


What Is Thredis?

Gregory Trubetskoy about his Thredis project:

Thredis is Redis + SQL + Threads. Or perhaps it’s pure lunacy resulting from some mad winter hacking mixed with eggnog. Or perhaps it’s the first hybrid SQL/NoSQL server. You be the judge.

I only wish the community is not taking Redis this direction.

Original title and link: What Is Thredis? (NoSQL database©myNoSQL)

via: http://thredis.org/