You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datafu.apache.org by ey...@apache.org on 2021/10/19 14:42:42 UTC

[datafu] branch master updated: Post release site/scaladoc update

This is an automated email from the ASF dual-hosted git repository.

eyal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datafu.git


The following commit(s) were added to refs/heads/master by this push:
     new 4cd8f5d  Post release site/scaladoc update
4cd8f5d is described below

commit 4cd8f5dd4299dd29423254e3dc7da68aa6adbb56
Author: Eyal Allweil <ey...@apache.org>
AuthorDate: Tue Oct 19 17:42:08 2021 +0300

    Post release site/scaladoc update
---
 datafu-spark/src/main/scala/datafu/spark/SparkDFUtils.scala | 2 +-
 site/config.rb                                              | 2 +-
 site/source/docs/download.html.markdown.erb                 | 9 +--------
 3 files changed, 3 insertions(+), 10 deletions(-)

diff --git a/datafu-spark/src/main/scala/datafu/spark/SparkDFUtils.scala b/datafu-spark/src/main/scala/datafu/spark/SparkDFUtils.scala
index b459da4..46cc803 100644
--- a/datafu-spark/src/main/scala/datafu/spark/SparkDFUtils.scala
+++ b/datafu-spark/src/main/scala/datafu/spark/SparkDFUtils.scala
@@ -172,7 +172,7 @@ object SparkDFUtils {
   /**
     * Used to get the 'latest' record (after ordering according to the provided order columns)
     * in each group.
-    * the same functionality as {@link #dedup} but implemented using UDAF to utilize
+    * the same functionality as {@link #dedupWithOrder} but implemented using UDAF to utilize
     * map side aggregation.
     * this function should be used in cases when you expect a large number of rows to get combined,
     * as they share the same group column.
diff --git a/site/config.rb b/site/config.rb
index 0d52386..44d72ca 100644
--- a/site/config.rb
+++ b/site/config.rb
@@ -61,7 +61,7 @@ Dir['./lib/*'].each { |f| require f }
 helpers do
   # Use this for the current release.
   def current_source_release_link(version)
-    "<a href=\"http://www.apache.org/dyn/closer.cgi/datafu/apache-datafu-#{version}/\">
+    "<a href=\"http://www.apache.org/dyn/closer.cgi/datafu/apache-datafu-#{version}/apache-datafu-sources-#{version}.tgz\">
      apache-datafu-#{version}</a>
      [ <a href=\"https://www.apache.org/dist/datafu/apache-datafu-#{version}/apache-datafu-sources-#{version}.tgz.asc\">
      PGP</a> ]
diff --git a/site/source/docs/download.html.markdown.erb b/site/source/docs/download.html.markdown.erb
index 99d2ddc..d65db6f 100644
--- a/site/source/docs/download.html.markdown.erb
+++ b/site/source/docs/download.html.markdown.erb
@@ -44,18 +44,11 @@ gpg --import KEYS
 gpg --verify apache-datafu-sources-<%= current_page.data.version %>.tgz.asc apache-datafu-sources-<%= current_page.data.version %>.tgz
 ```
 
-The `md5sum` tool can be used to compute an MD5 hash that can be compared against the `.md5` file:
-
-```
-md5sum apache-datafu-sources-<%= current_page.data.version %>.tgz
-cat apache-datafu-sources-<%= current_page.data.version %>.tgz.md5
-```
-
 The `sha512sum` tool can be used to compute a SHA-512 hash that can be compared against the `.sha512` file:
 
 ```
 sha512sum apache-datafu-sources-<%= current_page.data.version %>.tgz
-cat apache-datafu-sources-<%= current_page.data.version %>.tgz.md5
+cat apache-datafu-sources-<%= current_page.data.version %>.tgz.sha512
 ```
 
 Note that the hashes are only intended to check that the file has been downloaded correctly.  They do not provide guarantees on the authenticity of the file.  The signature should instead be used for this purpose.  For more information see [here](https://www.apache.org/info/verification.html).