You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datafu.apache.org by mh...@apache.org on 2014/05/11 20:58:59 UTC

[1/2] git commit: Fix blog post link

Repository: incubator-datafu
Updated Branches:
  refs/heads/master 9708a8323 -> 4d02d119e


Fix blog post link


Project: http://git-wip-us.apache.org/repos/asf/incubator-datafu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-datafu/commit/fe244050
Tree: http://git-wip-us.apache.org/repos/asf/incubator-datafu/tree/fe244050
Diff: http://git-wip-us.apache.org/repos/asf/incubator-datafu/diff/fe244050

Branch: refs/heads/master
Commit: fe2440505235404af01eb6b9cf731e231f6e7dca
Parents: 9708a83
Author: Matthew Hayes <ma...@gmail.com>
Authored: Sun May 11 11:51:01 2014 -0700
Committer: Matthew Hayes <ma...@gmail.com>
Committed: Sun May 11 11:51:01 2014 -0700

----------------------------------------------------------------------
 site/source/blog/2012-01-10-introducing-datafu.html.markdown | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-datafu/blob/fe244050/site/source/blog/2012-01-10-introducing-datafu.html.markdown
----------------------------------------------------------------------
diff --git a/site/source/blog/2012-01-10-introducing-datafu.html.markdown b/site/source/blog/2012-01-10-introducing-datafu.html.markdown
index 749b119..54512d5 100644
--- a/site/source/blog/2012-01-10-introducing-datafu.html.markdown
+++ b/site/source/blog/2012-01-10-introducing-datafu.html.markdown
@@ -14,7 +14,7 @@ DataFu includes UDFs for common statistics tasks, PageRank, set operations, bag
 Here's a taste of what you can do with DataFu:
 
 * Run [PageRank](/docs/datafu/1.2.0/datafu/pig/linkanalysis/PageRank.html) on a large number of independent graphs.
-* Perform set operations such as [intersect](/docs/datafu/1.2.0/datafu/pig/sets/SetIntersect.html) and [union](http://localhost:4567/docs/datafu/1.2.0/datafu/pig/sets/SetUnion.html).
+* Perform set operations such as [intersect](/docs/datafu/1.2.0/datafu/pig/sets/SetIntersect.html) and [union](/docs/datafu/1.2.0/datafu/pig/sets/SetUnion.html).
 * Compute the [haversine distance](/docs/datafu/1.2.0/datafu/pig/geo/HaversineDistInMiles.html) between two points on the globe.
 * Create an [assertion](/docs/datafu/1.2.0/datafu/pig/util/Assert.html) on input data which will cause the script to fail if the condition is not met.
 * Perform various operations on bags such as [append a tuple](/docs/datafu/1.2.0/datafu/pig/bags/AppendToBag.html), [prepend a tuple](/docs/datafu/1.2.0/datafu/pig/bags/PrependToBag.html), [concatenate bags](/docs/datafu/1.2.0/datafu/pig/bags/BagConcat.html), [generate unordered pairs](/docs/datafu/1.2.0/datafu/pig/bags/UnorderedPairs.html), etc.


[2/2] git commit: Update blog post link

Posted by mh...@apache.org.
Update blog post link


Project: http://git-wip-us.apache.org/repos/asf/incubator-datafu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-datafu/commit/4d02d119
Tree: http://git-wip-us.apache.org/repos/asf/incubator-datafu/tree/4d02d119
Diff: http://git-wip-us.apache.org/repos/asf/incubator-datafu/diff/4d02d119

Branch: refs/heads/master
Commit: 4d02d119e19a588cab3b5f1e380290fd3444662d
Parents: fe24405
Author: Matthew Hayes <ma...@gmail.com>
Authored: Sun May 11 11:56:50 2014 -0700
Committer: Matthew Hayes <ma...@gmail.com>
Committed: Sun May 11 11:56:50 2014 -0700

----------------------------------------------------------------------
 site/source/blog/2012-01-10-introducing-datafu.html.markdown | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-datafu/blob/4d02d119/site/source/blog/2012-01-10-introducing-datafu.html.markdown
----------------------------------------------------------------------
diff --git a/site/source/blog/2012-01-10-introducing-datafu.html.markdown b/site/source/blog/2012-01-10-introducing-datafu.html.markdown
index 54512d5..8e2a064 100644
--- a/site/source/blog/2012-01-10-introducing-datafu.html.markdown
+++ b/site/source/blog/2012-01-10-introducing-datafu.html.markdown
@@ -5,7 +5,7 @@ author: Matthew Hayes
 
 At LinkedIn, we make extensive use of [Apache Pig](http://pig.apache.org/) for performing [data analysis on Hadoop](http://engineering.linkedin.com/hadoop/user-engagement-powered-apache-pig-and-hadoop). Pig is a simple, high-level programming language that consists of just a few dozen operators and makes it easy to write MapReduce jobs. For more advanced tasks, Pig also supports [User Defined Functions](http://pig.apache.org/docs/r0.9.1/udf.html) (UDFs), which let you integrate custom code in Java, Python, and JavaScript into your Pig scripts.
 
-Over time, as we worked on data intensive products such as [People You May Know](http://www.linkedin.com/pymk-results) and [Skills](http://www.linkedin.com/skills/), we developed a large number of UDFs at LinkedIn. Today, I'm happy to announce that we have consolidated these UDFs into a single, general-purpose library called [DataFu](https://github.com/linkedin/datafu) and we are open sourcing it under the Apache 2.0 license.
+Over time, as we worked on data intensive products such as [People You May Know](http://www.linkedin.com/pymk-results) and [Skills](http://www.linkedin.com/skills/), we developed a large number of UDFs at LinkedIn. Today, I'm happy to announce that we have consolidated these UDFs into a single, general-purpose library called [DataFu](http://datafu.incubator.apache.org/) and we are open sourcing it under the Apache 2.0 license.
 
 DataFu includes UDFs for common statistics tasks, PageRank, set operations, bag operations, and a comprehensive suite of tests. Read on to learn more.
 
@@ -112,4 +112,4 @@ We have also integrated the code coverage tracking tool [Cobertura](http://cober
 
 ### Conclusion
 
-We hope this gives you a taste of what you can do with DataFu. We are accepting contributions, so if you are interested in helping out, please fork the [code](https://github.com/linkedin/datafu) and send us your pull requests!
\ No newline at end of file
+We hope this gives you a taste of what you can do with DataFu. We are accepting contributions, so if you are interested in helping out, please fork the code and send us your pull requests!
\ No newline at end of file