Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.
The "BookieRecoveryPage" page has been changed by FlavioJunqueira: http://wiki.apache.org/hadoop/BookieRecoveryPage?action=diff&rev1=10&rev2=11 Our current plan is to use a client to perform recovery of a bookie. The high-level idea is that a client calls recover(bookie id), and executes the recovery procedure. In slightly more detail, here is the pseudo-code: {{{ - recover(''bid'') + recover(bid) - For each ledger '''lid''' of '''bid''' + For each ledger lid of bid - Select new bookie '''nbid''' + Select new bookie nbid - Use bk client to read entries of '''lid''' that correspond to '''bid''' + Use bk client to read entries of lid that correspond to bid Write to '''nbid''' }}}
