Skip to content

Commit b1f45e2

Browse files
smkniaziGautier Berthou
authored and
Gautier Berthou
committed
[HOPS-1652] Adding metadata log entries in small batches for setMetaStatus Operation
1 parent d34c208 commit b1f45e2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/io/hops/metadata/ndb/dalimpl/hdfs/MetadataLogClusterj.java

+6
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import io.hops.metadata.hdfs.entity.INodeMetadataLogEntry;
2929
import io.hops.metadata.hdfs.entity.MetadataLogEntry;
3030
import io.hops.metadata.ndb.ClusterjConnector;
31+
import io.hops.metadata.ndb.mysqlserver.MySQLQueryHelper;
3132
import io.hops.metadata.ndb.wrapper.HopsPredicate;
3233
import io.hops.metadata.ndb.wrapper.HopsQuery;
3334
import io.hops.metadata.ndb.wrapper.HopsQueryBuilder;
@@ -219,6 +220,11 @@ public Collection<MetadataLogEntry> find(long fileId) throws StorageException {
219220
return mlel;
220221
}
221222

223+
@Override
224+
public int countAll() throws StorageException {
225+
return MySQLQueryHelper.countAll(TABLE_NAME);
226+
}
227+
222228
private Collection<MetadataLogEntry> createCollection(
223229
Collection<MetadataLogEntryDto> collection)
224230
throws UnknownMetadataOperationType {

0 commit comments

Comments
 (0)