You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by da...@apache.org on 2017/05/18 15:57:37 UTC

[5/5] kudu git commit: Fix broken url to "Building a Better Bloom Filter"

Fix broken url to "Building a Better Bloom Filter"

Change-Id: Ic113677c7ff4c2080c0ac07cb8f90db77aaeaa52
Reviewed-on: http://gerrit.cloudera.org:8080/6920
Reviewed-by: Dan Burkert <da...@apache.org>
Tested-by: Dan Burkert <da...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/4347174d
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/4347174d
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/4347174d

Branch: refs/heads/master
Commit: 4347174d7e78f27a69c28ef1c8e551649d2173c5
Parents: 36debad
Author: André Laszlo <an...@meltwater.com>
Authored: Thu May 18 16:38:10 2017 +0200
Committer: Dan Burkert <da...@apache.org>
Committed: Thu May 18 15:57:10 2017 +0000

----------------------------------------------------------------------
 src/kudu/util/bloom_filter.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/4347174d/src/kudu/util/bloom_filter.h
----------------------------------------------------------------------
diff --git a/src/kudu/util/bloom_filter.h b/src/kudu/util/bloom_filter.h
index cbf5250..419de3b 100644
--- a/src/kudu/util/bloom_filter.h
+++ b/src/kudu/util/bloom_filter.h
@@ -33,7 +33,7 @@ namespace kudu {
 // This is implemented based on the idea of double-hashing from the following paper:
 //   "Less Hashing, Same Performance: Building a Better Bloom Filter"
 //   Kirsch and Mitzenmacher, ESA 2006
-//   http://www.eecs.harvard.edu/~kirsch/pubs/bbbf/esa06.pdf
+//   https://www.eecs.harvard.edu/~michaelm/postscripts/tr-02-05.pdf
 //
 // Currently, the implementation uses the 64-bit City Hash.
 // TODO: an SSE CRC32 hash is probably ~20% faster. Come back to this