.





Jeffery yuan (https://plus.google.com/101157854606139706613/posts/NVqxqH3m7N4) via Christian jofre silva (https://plus.google.com/108949932154834297673/posts/3GRmTmoSxur)



from Google Plus RSS Feed for 101157854606139706613 https://lh4.googleusercontent.com/-wki56cfNc28/UryIIMwDgUI/AAAAAAABD6Y/yBqQ7WhZde4/w267-h200/tumblr-my8m65kioc1s9sszto1-400.gif

via LifeLong Community

“People You May Know” Friendship Recommendation with Hadoop | Important Fish

People You May Know” Friendship Recommendation with Hadoop

http://importantfish.com/people-you-may-know-friendship-recommendation-with-hadoop/



from Google Plus RSS Feed for 101157854606139706613 http://importantfish.com/people-you-may-know-friendship-recommendation-with-hadoop

via LifeLong Community

Maven - Introduction to the Dependency Mechanism

Differences between dependencymanagement and dependencies in maven

The dependency management section is a mechanism for centralizing dependency information. When you have a set of projects that inherits a common parent it's possible to put all information about the dependency in the common POM and have simpler references to the artifacts in the child POMs.



It can used to pull all the dependency information into a common POM file, simplifying the references in the child POM file.

It becomes useful when you have multiple attributes that you don't want to retype in under multiple children projects.

http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Management

http://stackoverflow.com/questions/2619598/differences-between-dependencymanagement-and-dependencies-in-maven



from Google Plus RSS Feed for 101157854606139706613 http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Management

via LifeLong Community

I’m sorry, can I have one?



I’m sorry, can I have one?

Jeffery yuan (https://plus.google.com/101157854606139706613/posts/TQZqb5DyyhA) via Funny GIF (https://plus.google.com/105436005014426447387/posts/UGhA3zi3LPs)



from Google Plus RSS Feed for 101157854606139706613 https://lh5.googleusercontent.com/-vR4kXMiNj2M/UrlvO7ZYZBI/AAAAAAABhjM/1rWMvVQ4Q8w/w250-h234/377.gif

via LifeLong Community

Remote Debugging of Hadoop Job with Eclipse

REMOTE DEBUGGING OF HADOOP JOB WITH ECLIPSE

http://pravinchavan.wordpress.com/2013/04/05/remote-debugging-of-hadoop-job-with-eclipse/

edit hadoop-env.sh

YARN_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=9999 $YARN_OPTS"

HADOOP_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=9999 $HADOOP_OPTS"



from Google Plus RSS Feed for 101157854606139706613 http://pravinchavan.wordpress.com/2013/04/05/remote-debugging-of-hadoop-job-with-eclipse

via LifeLong Community

WordCount - Hadoop Wiki

WordCount Example in MapReduce, Pig and Hive

WordCount Example in Hadoop

http://wiki.apache.org/hadoop/WordCount



WordCount Example in Pig

http://salsahpc.indiana.edu/ScienceCloud/pig_word_count_tutorial.htm#IV._Cluster

input = load 'mary' as (line);

words = foreach input generate flatten(TOKENIZE(line)) as word;

grpd = group words by word;

cntd = foreach grpd generate group, COUNT(words);

dump cntd;



WordCount Example in Hive

http://www.amazon.com/Programming-Hive-Edward-Capriolo/dp/1449319335/ref=sr_1_2?s=books&ie=UTF8&qid=1387858046&sr=1-2&keywords=hive

CREATE TABLE docs (line STRING);

LOAD DATA INPATH 'docs' OVERWRITE INTO TABLE docs;

CREATE TABLE word_counts AS

SELECT word, count(1) AS count FROM

(SELECT explode(split(line, '\s')) AS word FROM docs) w

GROUP BY word

ORDER BY word;



from Google Plus RSS Feed for 101157854606139706613 http://wiki.apache.org/hadoop/WordCount

via LifeLong Community

Windows PowerShell Management Cmdlets

PowerShell Resources

http://technet.microsoft.com/en-us/library/hh849827.aspx

http://ss64.com/ps/

http://searchwindowsserver.techtarget.com/tip/Top-25-Windows-PowerShell-commands-for-administrators



from Google Plus RSS Feed for 101157854606139706613 http://technet.microsoft.com/en-us/library/hh849827.aspx

via LifeLong Community