MapReduce + SQL from Greenplum
Permalink Comments off
Permalink Comments off
Source: http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html
…


In this solution, the schema has got just one table, it is denormalized.
This type is called “MySQLicious solution” because MySQLicious imports del.icio.us data into a table with this structure.
Query for “search+webservice+semweb”:
SELECT *
FROM `delicious`
WHERE tags LIKE "%search%"
AND tags LIKE "%webservice%"
AND tags LIKE "%semweb%"
Query for “search|webservice|semweb”:
SELECT *
FROM `delicious`
WHERE tags LIKE "%search%"
OR tags LIKE "%webservice%"
OR tags LIKE "%semweb%"
Query for “search+webservice-semweb”
SELECT *
FROM `delicious`
WHERE tags LIKE "%search%"
AND tags LIKE "%webservice%"
AND tags NOT LIKE "%semweb%"
Permalink Comments off
Source : http://www.readwriteweb.com/archives/…compute_clouds.php
A traditional relational database architecture >

A compute cloud architecture, to resolve multiple issues, looks like >

Permalink Comments off