21 May 2012

The Tech Reflector

 
Star Following

  Source Favicon
On myNoSQL 8 months ago.
Email

I realized that ‘ NoSQL' systems obviously didn't use SQL to find data, but I had no idea what they used instead.

This is why the Ars article was so enlightening to me... there really isn't an alternative to SQL, except code.

That's disheartening to me. Yes, these large data structures make it possible to store a lot of data in a lot of places, but it clearly is a step backwards in allowing anyone who is not a developer to freely access that data. These products …

nosql.mypopescu.com Read
  Source Favicon
Email

SQL Servers along with the entire concept of relational database and object-relational impedance mismatch

Evolutionary databases and managing them (including upgrade scripts and unit tests working against mock databases to verify behaviors on continuous integration servers)

Another practical sample would be - planned replacement of API implemented as REST via WCF (with SOAP and all sorts of weird configuration problems) towards a dead-simple implementation on HttpListener…

abdullin.com Read
  Source Favicon
Email

…'s restaurants" is another one. Essentially read model is some view (precomputed result of an SQL Query in SQL World).

Since we have more flexibility with projecting events and passing them around, we can easily do more interesting things, reaching up to the speeds of LMAX (which was described by Martin Fowler ):

Keep read models (precomputed query results) directly in memory in some MemCached instances (if server goes down, we can always repopulate cache …

abdullin.com Read
  Source Favicon
On myNoSQL 8 months ago.
Email

6PB data warehouse for structured data and SQL access

40PB deep analytics ( Teradata)

20PB Hadoop system to support advanced analytic workload on unstructured data

Original title and link: Big Data Is Going Mainstream: Facebook, Yahoo!, eBay, Quantcast, and Many Others ( NoSQL database ©myNoSQL)

nosql.mypopescu.com Read
  Source Favicon
On The Basho Blog 9 months ago.
Email

…the sponsorship, Sean Cribbs will be giving a talk called Wrap Your SQL Head Around Riak MapReduce . And the community will be representing in a big way at Strange Loop: Kresten Krab Thorup, CTO of Trifork, will also be giving a talk called Bringing Riak to the Mobile Platform ; attendees will also have a chance to see Susan Potter talking about using riak_core to build distributed systems ( h/t to kenny for pointing this out ).

Sadly, …

blog.basho.com Read
  Source Favicon
Email

…atomically creates the purchase order and its initial items in a single operation. Just as with the SQL scenario, clients will never see a point in time where the purchase order is empty. It all succeeds in a single step.

Now what about modifying that purchase order? If we want to add some items to the PO, we can do so like this:

The $pushAll operator atomically appends values onto an array attribute. Just as with our RDBMS scenario, this update is atomic and the whole command either succeeds …

blog.mongodb.org Read
  Source Favicon
On antirez weblog 11 months ago.
Email

We never need to "refresh" the cache with this system, and the SQL database (or other type of on-disk data store) will only be pinged if the user is paginating "far" intervals. So never for the home page, and never for the first pages of our comments time line.

As you can see here Redis is working as a new element. It is not working as a traditional cache, there are no cache refreshes and the info in the Redis instance is always coherent. It is not either working as …

antirez.com Read
  Source Favicon
By Prof. Dr. Stefan Edlich of NoSQL Databases 12 months ago.
Email

http://www.odbms.org/blog/2011/05/measuring-the-scalability-of-sql-and-nosql-systems/

Adam Silberstein and Raghu Ramakrishnan, Yahoo! Research.

via odbms.org

(thanks Roberto!)

nosql-databases.blogspot.com Read
  Source Favicon
By Ambrish Choudhary of Large Data Matters 1 year ago.
Email

SQL is actually the name of a declarative query language, while more precisely this article concerns traditional relational database systems. Since it is common to talk about NoSQL as the opposite of relational database systems, we have taken the editorial liberty of using SQL as a synonym for relational database systems.

Read full article here .

india.paxcel.net Read
  Source Favicon
By editor of Foursquare Engineering Blog 1 year ago.
Email

Provide an easy-to-use end-point to run data exploration queries (using SQL and simple web-forms).

Cache the results of queries (in a database) to power reports, so that the data is available to everyone, whenever it is needed.

Allow our hadoop cluster to be totally dynamic without having to move data around (we shut it down at night and on weekends).

Add new data in a simple way (just put it in Amazon S3!).

Analyse data from several data sources (mongodb, postgres, log-files).

Importing Data…

engineering.foursquare.com Read