This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12/05/14 14:42:57 INFO multitool.Main: key: source | |
12/05/14 14:42:58 INFO multitool.Main: key: expr | |
12/05/14 14:42:58 INFO multitool.Main: key: gen | |
12/05/14 14:42:58 INFO multitool.Main: key: group | |
12/05/14 14:42:58 INFO multitool.Main: key: count | |
12/05/14 14:42:58 INFO multitool.Main: key: group | |
12/05/14 14:42:58 INFO multitool.Main: key: sink | |
12/05/14 14:43:01 INFO util.HadoopUtil: resolving application jar from found main method on: multitool.Main | |
12/05/14 14:43:01 INFO planner.HadoopPlanner: using application jar: /Users/paco/src/concur/cascading.multitool/./build/multitool.jar | |
12/05/14 14:43:01 INFO property.AppProps: using app.id: 1C9D0188E5018B980067AAC12AE43BBA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Begin MailChimp Signup Form --> | |
<link href="http://cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css"> | |
<style type="text/css"> | |
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; } | |
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block. We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */ | |
/* #mc_embed_signup { max-width: 50em; } */ | |
#mc_embed_signup .mc-field-group { min-height: 1em; padding-bottom: 1em; max-width: 50em; } | |
</style> | |
<div id="mc_embed_signup"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e -x | |
# Usage: | |
# --user-home - an alternative user to install into, default /home/hadoop | |
# --tmpdir - an alternative temporary directory, default TMPDIR or /tmp if not set | |
# --no-screen - do not install screen, screen is installed by default on the master as a convenience | |
# --latest - url to text file referencing the latest version | |
# --no-bash - do not update .bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class | |
Main | |
{ | |
public static void | |
main( String[] args ) | |
{ | |
String inPath = args[ 0 ]; | |
String outPath = args[ 1 ]; | |
Properties properties = new Properties(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash-3.2$ elastic-mapreduce --create --name "Sample Recommender" \ | |
> --jar s3n://temp.cascading.org/sample/recommender.jar \ | |
> --arg s3n://temp.cascading.org/sample/en.stop \ | |
> --arg s3n://temp.cascading.org/sample/tweets/ \ | |
> --arg s3n://temp.cascading.org/sample/out/token \ | |
> --arg s3n://temp.cascading.org/sample/out/similarity | |
Created job flow j-2HA2BVCBJGMVX | |
bash-3.2$ elastic-mapreduce --list | |
j-2HA2BVCBJGMVX STARTING Sample Recommender | |
PENDING Example Jar Step |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class | |
Main | |
{ | |
public static void | |
main( String[] args ) | |
{ | |
String docPath = args[ 0 ]; | |
String wcPath = args[ 1 ]; | |
Properties properties = new Properties(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class | |
Main | |
{ | |
public static void | |
main( String[] args ) | |
{ | |
String docPath = args[ 0 ]; | |
String wcPath = args[ 1 ]; | |
Properties properties = new Properties(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class | |
Main | |
{ | |
public static void | |
main( String[] args ) | |
{ | |
String docPath = args[ 0 ]; | |
String wcPath = args[ 1 ]; | |
String stopPath = args[ 2 ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class | |
Main | |
{ | |
public static void | |
main( String[] args ) | |
{ | |
String docPath = args[ 0 ]; | |
String wcPath = args[ 1 ]; | |
String stopPath = args[ 2 ]; | |
String tfidfPath = args[ 3 ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class | |
Main | |
{ | |
public static void | |
main( String[] args ) | |
{ | |
String docPath = args[ 0 ]; | |
String wcPath = args[ 1 ]; | |
String stopPath = args[ 2 ]; | |
String tfidfPath = args[ 3 ]; |
OlderNewer