Return-Path: Delivered-To: apmail-hadoop-mapreduce-issues-archive@minotaur.apache.org Received: (qmail 22136 invoked from network); 30 Aug 2010 20:32:35 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 30 Aug 2010 20:32:35 -0000 Received: (qmail 3037 invoked by uid 500); 30 Aug 2010 20:32:35 -0000 Delivered-To: apmail-hadoop-mapreduce-issues-archive@hadoop.apache.org Received: (qmail 2885 invoked by uid 500); 30 Aug 2010 20:32:34 -0000 Mailing-List: contact mapreduce-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-issues@hadoop.apache.org Delivered-To: mailing list mapreduce-issues@hadoop.apache.org Received: (qmail 2876 invoked by uid 99); 30 Aug 2010 20:32:34 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Aug 2010 20:32:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Aug 2010 20:32:17 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o7UKVt7Q011722 for ; Mon, 30 Aug 2010 20:31:55 GMT Message-ID: <15020369.74911283200315454.JavaMail.jira@thor> Date: Mon, 30 Aug 2010 16:31:55 -0400 (EDT) From: "Wittawat Tantisiriroj (JIRA)" To: mapreduce-issues@hadoop.apache.org Subject: [jira] Commented: (MAPREDUCE-1969) Allow raid to use Reed-Solomon erasure codes In-Reply-To: <624346.10081280183056439.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/MAPREDUCE-1969?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12904327#action_12904327 ] Wittawat Tantisiriroj commented on MAPREDUCE-1969: -------------------------------------------------- How fast this RS implementation encode per sec? In case we need a faster encoder, I am thinking about porting Cauchy Reed-Solomon as described @ http://www.cs.utk.edu/~plank/plank/papers/FAST-2009.pdf to Java. James S. Plank, the author, has already given me a permission to release it with Apache License. > Allow raid to use Reed-Solomon erasure codes > -------------------------------------------- > > Key: MAPREDUCE-1969 > URL: https://issues.apache.org/jira/browse/MAPREDUCE-1969 > Project: Hadoop Map/Reduce > Issue Type: New Feature > Components: contrib/raid > Reporter: Scott Chen > Fix For: 0.22.0 > > > Currently raid uses one parity block per stripe which corrects one missing block on one stripe. > Using Reed-Solomon code, we can add any number of parity blocks to tolerate more missing blocks. > This way we can get a good file corrupt probability even if we set the replication to 1. > Here are some simple comparisons: > 1. No raid, replication = 3: > File corruption probability = O(p^3), Storage space = 3x > 2. Single parity raid with stripe size = 10, replication = 2: > File corruption probability = O(p^4), Storage space = 2.2x > 3. Reed-Solomon raid with parity size = 4 and stripe size = 10, replication = 1: > File corruption probability = O(p^5), Storage space = 1.4x > where p is the missing block probability. > Reed-Solomon code can save lots of space without compromising the corruption probability. > To achieve this, we need some changes to raid: > 1. Add a block placement policy that knows about raid logic and do not put blocks on the same stripe on the same node. > 2. Add an automatic block fixing mechanism. The block fixing will replace the replication of under replicated blocks. > 3. Allow raid to use general erasure code. It is now hard coded using Xor. > 4. Add a Reed-Solomon code implementation > We are planing to use it on the older data only. > Because setting replication = 1 hurts the data locality. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.