Posted by jaymepobre748 May - 7 - 2012 ADD COMMENTS

Most popular Hadoop eBay auctions:



Tags : , , , , Big Data Analytics
Posted by admin May - 1 - 2012 20 COMMENTS

Cloudera is a company that helps developers with big database problems. Here the CEO Mike Olson gives us a tour through the major database changes that are hitting lots of startups now.
Video Rating: 4 / 5

In this webcast, Cloudera founder Christophe Bisciglia and O’Reilly author Tom White will provide an introduction to Hadoop/MapReduce, the open source project that allows organizations to process, store and analyze massive application datasets.

Tags : , , , , , , , , , Big Data Analytics
Posted by BlairMABEL25 April - 24 - 2012 ADD COMMENTS


Joe Stein – All Things Hadoop
from All Things Hadoop
Price: USD 0
View Details about Joe Stein

Tags : , , , Big Data Analytics
Posted by jaymepobre748 April - 2 - 2012 ADD COMMENTS

Some cool Hadoop images:

hadoop+php

Image by Cesar Rodas
This is why I love Hadoop with PHP.

Hadoop Summit audience

Image by niallkennedy
The audience towards the end of the day at Hadoop Summit

Taller Hadoop

Image by SeedRocket_
Juanjo explica algunas claves a saber sobre Hadoop utilizando la pizarra.

Tags : , , , Big Data Analytics
Posted by gildenshelton565 March - 24 - 2012 ADD COMMENTS

Question by : Can hadoop be used to play games?
I have been researching lately about “hadoop” over the web since our professor at the university told us about it(i am a Computer Science student).So far I have found out that it can be used to all sorts of things, like searching,compilling large texts, image recognitioning and many many more, but then when I searched at google I couldn’t find anything about hadoop and game developing.So here is my question, can “hadoop”, with its “Map-Reduce”, be used to program 2-3 CPUs so that they can run the same game at the same time?
example:
Let’s say that a game requires 2.6 GHz CPU processor and you got 2 laptops with 1.5 GHz CPU processor each, can I apply that somehow so I can run the game smoothly??

P.S.Sorry if I said too much this is the first time that I use Yahoo Answers.

Best answer:

Answer by abhishek j
if a game requires large set of data (like to be searched or processed) or some calculation which cannot be handled by one cpu than it might help..

Add your own answer in the comments!

Tags : , , , , Big Data Analytics
Posted by gildenshelton565 March - 18 - 2012 ADD COMMENTS


Manassas, VA (PRWEB) December 01, 2011

CTOLabs.com, a subsidiary of Crucial Point LLC focused on open concept development for CTOs, is pleased to announce the five top winners and Judges Choice of the 2011 Government Big Data Solutions Award. The Government Big Data Solutions Award Program was established to highlight innovative solutions and facilitate the exchange of best practices, lessons learned and creative ideas for utilizing Apache Hadoop to solve Big Data challenges. The winners were announced at Hadoop World in New York City on November 8 and a presentation outlining the award is available online at http://hadoopworld.com

The top five honorees of the Government Big Data Solutions Award are:

Tags : , , , , , , , , , , Big Data Challenges
Posted by mod198 March - 13 - 2012 ADD COMMENTS

Hadoop is an open-source software platform by the Apache Foundation for building clusters of servers for use in distributed computing. Server clustering is really nothing new or revolutionary but Hadoop is designed specifically for mass-scale computing, which involves thousands of servers. Based on a paper originally written by Google about their MapReduce system, Hadoop leverages concepts from functional programming to solve large computing problems. Hadoop is an ideal solution for working with large volumes of data in a variety of applications from scientific to searching through web pages.

Leveraging the Power of Functional Programming
Functional programming is a style of programming that has its roots in lambda calculus. Functional programming is based largely on the idea of applying functions to a set of data.

In this style of programming there is no state or mutable data. This makes functional programming a natural style of development for systems that analyze large sets of data. In functional programming, a function is applied to each member of a set of data and the result is the output. However, the data that was input remains unchanged. This is exactly what you need when you’re working through very large set of data to analyze or transform them in some way.

MapReduce: Splitting a Big Problem into Little Pieces
Google applied the ideas of functional programming to the problem of how to manipulate large amounts of data about the contents of pages on the world wide web. The system they developed was called MapReduce and was described in a paper published by Google.

MapReduce is what allows Google to search and index the huge volume of web pages that their bot spiders. Maps are an element of functional programming languages in which a function is applied to a set of data items. The number of parameters in the original input is immaterial as the function will be applied to each one.

Google’s system took it a step further though. Their MapReduce system consists of thousands of servers. The process of applying a function to each element of the input can all happen on one machine or it could be split over as many servers as needed. This allows Google to leverage the computing power of many less expensive machines to sort, analyze and transform large sets of data.

A Java Based Open Source Implementation of MapReduce
While Google’s system is proprietary, they did publish the concepts behind it. This lead to the creation of Hadoop. Hadoop is implemented in the Java programming language and contains a suite of tools for creating mass-scale computer clusters. Hadoop consists of a number of components including a distributed file system, a scalable database, and a programming framework for building code that uses the MapReduce concepts to solve problems based on large sets of data. The system allows one to build highly reliable and scalable architectures for distributed computing.

Hadoop Uses and Benefits
While it is pretty easy to see that Hadoop is a powerful suite of tools, it may not be readily apparent why it might be useful or the kinds of tasks that would benefit from it. You can get some ideas by looking at who is using Hadoop and the kinds of tasks they are running on Hadoop.

Log File & Web Analytics
Large web sites generate tremendous amounts of data about their visitors. These log files can grow to be hundreds of gigabytes in size. Log files contain important information, however, about how users interact with a site, where they are coming from and can even help detect attacks and suspicious activity. Analyzing that data is a great job for Hadoop and that is exactly what companies like Facebook and Rackspace are using it for.

Ad Targeting
The amount of data that is analyzed to decide which ads should display on your favorite web site is staggering. Large advertising networks also have to collect data on millions of clicks and provide useful information to their clients about how users are responding to those ads. Analyzing this data to determine how to best serve ads is another ideal application for Hadoop. Advertising networks like Adknowledge use Hadoop to analyze the millions of clicks and determine which ads to display and when.

Scientific Applications
There are more applications that require analyzing large volumes of data beside web logs and advertising. There are a number of practical scientific applications for a system like Hadoop. Physics, biochemistry and genetics research all require analyzing each item in a large set of data. One company, Spadac.com, is using Hadoop to power geospatial processing.

Financial Analysis
The finance industry is another segment that generates large volumes of data. Hadoop can help solve financial problems by analyzing large sets of transactions or stock prices. It can be used to spot trends that might suggest fraud, find ways to improve the bottom line or discover trends in the stock market to help investors pick better investments. Pronux is a company that uses Hadoop to analyze transactions being posted by the bookkeeping department of large organizations. Another company uses it to do technical analysis of various stocks.

Search
Of course, searching a large data set, like Google does, lead to the concepts that inspired Hadoop. Hadoop is a powerful tool for indexing large amounts of data and searching through that data. It is used for this exact purpose by BaiDu, China’s leading Internet search engine; Amazon, for searching the many products they carry; and by LinkedIn, for suggesting people you might know and fun facts.

Based on the idea that a large problem could be split into smaller pieces and tackled by many computers, Hadoop provides an open source, scalable system to build clusters of thousands of servers. It is primarily designed to apply the concepts of functional programming to the analysis of large volumes of data. As such, Hadoop powers numerous systems in the web, search, finance, and scientific market segments.

Michael Dorf is a professional software architect and instructor with M.S. in Software Engineering and 12 years of industry experience. He teaches for LearnComputer! (learncomputer.com), which offers instructor-led local, online, and onsite Hadoop Training for companies and individuals. Our Hadoop Training with MapReduce course is recognized in the industry. See our Hadoop Training schedule for the list of upcoming Hadoop courses!

Tags : , Big Data Opportunities
Posted by mod198 March - 12 - 2012 ADD COMMENTS

Karmasphere Launches "The Analyst's Guide to Big Data" Hadoop Webinar Series
CUPERTINO, Calif., Mar 12, 2012 (BUSINESS WIRE) — Karmasphere(TM), the leader in Big Data Intelligence, today announced their new webinar series, "The Analyst's Guide to Big Data". Drawing from over two years of experience working with the Hadoop …
Read more on MarketWatch (press release)

Next Hadoop confirms data as a platform
By Brian Proffitt | ITworld You may have heard the news out of last week's Strata: the next version of Hadoop is going to be bigger and badder than ever. But hidden within the hype about size and speed is a new feature that could radically shift the …
Read more on InfoWorld

SAS Delivers Hadoop Integration for Big Data Support
Analytics software provider SAS has increased access to big data sources with Hadoop support in its updated SAS Enterprise Data Integration Server. By employing the popular open-source data architecture, customers using analytics from SAS can increase …
Read more on eWeek

Tags : , , , , , , , , , , Big Data Opportunities
Posted by jaymepobre748 March - 11 - 2012 1 COMMENT

Big Data Enterprise eBay auctions you should keep an eye on:


Tags : , , , , , , , Big Data Opportunities