This is an automated email from the ASF dual-hosted git repository.
domgarguilo pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push:
new b1e28302ae Use correct type for HashMap in DatafileManager
b1e28302ae is described below
commit b1e28302ae54aa4e1b75ef95997d2a458f700a82
Author: Dom Garguilo <[email protected]>
AuthorDate: Mon Jun 23 13:30:13 2025 -0400
Use correct type for HashMap in DatafileManager
---
.../main/java/org/apache/accumulo/tserver/tablet/DatafileManager.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/DatafileManager.java
b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/DatafileManager.java
index e4bd761a71..df88ad6225 100644
---
a/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/DatafileManager.java
+++
b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/DatafileManager.java
@@ -86,7 +86,7 @@ class DatafileManager {
new AtomicReference<>(new MetadataUpdateCount(tablet.getExtent(), 0L,
0L));
}
- private final Set<TabletFile> filesToDeleteAfterScan = new HashSet<>();
+ private final Set<StoredTabletFile> filesToDeleteAfterScan = new HashSet<>();
private final Map<Long,Set<StoredTabletFile>> scanFileReservations = new
HashMap<>();
private final MapCounter<StoredTabletFile> fileScanReferenceCounts = new
MapCounter<>();
private long nextScanReservationId = 0;