Revert "HBASE-21507 Compaction failed when execute AbstractMultiFileWriter.beforeShipped() method"
Email address is broken.
This reverts commit 3133d43859
.
This commit is contained in:
parent
3133d43859
commit
39bc458eab
|
@ -21,10 +21,12 @@ import java.io.IOException;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.hadoop.fs.Path;
|
||||
import org.apache.yetus.audience.InterfaceAudience;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.apache.hadoop.hbase.regionserver.CellSink;
|
||||
|
||||
/**
|
||||
* Base class for cell sink that separates the provided cells into multiple files.
|
||||
|
@ -117,13 +119,10 @@ public abstract class AbstractMultiFileWriter implements CellSink, ShipperListen
|
|||
|
||||
@Override
|
||||
public void beforeShipped() throws IOException {
|
||||
Collection<StoreFileWriter> writers = writers();
|
||||
if (writers != null) {
|
||||
for (StoreFileWriter writer : writers) {
|
||||
if (writer != null) {
|
||||
if (this.writers() != null) {
|
||||
for (StoreFileWriter writer : writers()) {
|
||||
writer.beforeShipped();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue