mirror of https://github.com/apache/lucene.git
SOLR-5441: the null-pointer patch addition
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1542142 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
afb1c8d693
commit
7b608c2e1f
|
@ -842,8 +842,10 @@ public class DirectUpdateHandler2 extends UpdateHandler implements SolrCoreState
|
||||||
lst.add("cumulative_deletesById", deleteByIdCommandsCumulative.get());
|
lst.add("cumulative_deletesById", deleteByIdCommandsCumulative.get());
|
||||||
lst.add("cumulative_deletesByQuery", deleteByQueryCommandsCumulative.get());
|
lst.add("cumulative_deletesByQuery", deleteByQueryCommandsCumulative.get());
|
||||||
lst.add("cumulative_errors", numErrorsCumulative.get());
|
lst.add("cumulative_errors", numErrorsCumulative.get());
|
||||||
lst.add("transaction_logs_total_size", ulog.getTotalLogsSize());
|
if (this.ulog != null) {
|
||||||
lst.add("transaction_logs_total_number", ulog.getTotalLogsNumber());
|
lst.add("transaction_logs_total_size", ulog.getTotalLogsSize());
|
||||||
|
lst.add("transaction_logs_total_number", ulog.getTotalLogsNumber());
|
||||||
|
}
|
||||||
return lst;
|
return lst;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -564,7 +564,10 @@ public class TransactionLog {
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getLogSize() {
|
public long getLogSize() {
|
||||||
return tlogFile.length();
|
if (tlogFile != null) {
|
||||||
|
return tlogFile.length();
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a reader that can be used while a log is still in use.
|
/** Returns a reader that can be used while a log is still in use.
|
||||||
|
@ -579,7 +582,6 @@ public class TransactionLog {
|
||||||
return new FSReverseReader();
|
return new FSReverseReader();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public class LogReader {
|
public class LogReader {
|
||||||
private ChannelFastInputStream fis;
|
private ChannelFastInputStream fis;
|
||||||
private LogCodec codec = new LogCodec(resolver);
|
private LogCodec codec = new LogCodec(resolver);
|
||||||
|
|
Loading…
Reference in New Issue