| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * https://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| package org.apache.accumulo.tserver.tablet; |
| |
| import java.util.ArrayList; |
| import java.util.HashMap; |
| import java.util.HashSet; |
| import java.util.List; |
| import java.util.Map; |
| import java.util.SortedMap; |
| import java.util.TreeMap; |
| |
| import org.apache.accumulo.core.metadata.StoredTabletFile; |
| import org.apache.accumulo.core.metadata.TabletFile; |
| import org.apache.accumulo.core.metadata.schema.DataFileValue; |
| import org.apache.accumulo.core.metadata.schema.ExternalCompactionId; |
| import org.apache.accumulo.core.metadata.schema.ExternalCompactionMetadata; |
| import org.apache.accumulo.core.metadata.schema.MetadataTime; |
| import org.apache.accumulo.core.metadata.schema.TabletMetadata; |
| import org.apache.accumulo.core.metadata.schema.TabletMetadata.Location; |
| import org.apache.accumulo.core.tabletserver.log.LogEntry; |
| |
| /* |
| * Basic information needed to create a tablet. |
| */ |
| public class TabletData { |
| private MetadataTime time = null; |
| private SortedMap<StoredTabletFile,DataFileValue> dataFiles = new TreeMap<>(); |
| private List<LogEntry> logEntries = new ArrayList<>(); |
| private HashSet<StoredTabletFile> scanFiles = new HashSet<>(); |
| private long flushID = -1; |
| private long compactID = -1; |
| private Location lastLocation = null; |
| private Map<Long,List<TabletFile>> bulkImported = new HashMap<>(); |
| private long splitTime = 0; |
| private String directoryName = null; |
| private Map<ExternalCompactionId,ExternalCompactionMetadata> extCompactions; |
| |
| // Read tablet data from metadata tables |
| public TabletData(TabletMetadata meta) { |
| |
| this.time = meta.getTime(); |
| this.compactID = meta.getCompactId().orElse(-1); |
| this.flushID = meta.getFlushId().orElse(-1); |
| this.directoryName = meta.getDirName(); |
| this.logEntries.addAll(meta.getLogs()); |
| scanFiles.addAll(meta.getScans()); |
| |
| if (meta.getLast() != null) { |
| this.lastLocation = meta.getLast(); |
| } |
| |
| dataFiles.putAll(meta.getFilesMap()); |
| |
| meta.getLoaded().forEach((path, txid) -> { |
| bulkImported.computeIfAbsent(txid, k -> new ArrayList<>()).add(path); |
| }); |
| |
| this.extCompactions = meta.getExternalCompactions(); |
| } |
| |
| // Data pulled from an existing tablet to make a split |
| public TabletData(String dirName, SortedMap<StoredTabletFile,DataFileValue> highDatafileSizes, |
| MetadataTime time, long lastFlushID, long lastCompactID, Location lastLocation, |
| Map<Long,List<TabletFile>> bulkIngestedFiles) { |
| this.directoryName = dirName; |
| this.dataFiles = highDatafileSizes; |
| this.time = time; |
| this.flushID = lastFlushID; |
| this.compactID = lastCompactID; |
| this.lastLocation = lastLocation; |
| this.bulkImported = bulkIngestedFiles; |
| this.splitTime = System.currentTimeMillis(); |
| this.extCompactions = Map.of(); |
| } |
| |
| public MetadataTime getTime() { |
| return time; |
| } |
| |
| public SortedMap<StoredTabletFile,DataFileValue> getDataFiles() { |
| return dataFiles; |
| } |
| |
| public List<LogEntry> getLogEntries() { |
| return logEntries; |
| } |
| |
| public HashSet<StoredTabletFile> getScanFiles() { |
| return scanFiles; |
| } |
| |
| public long getFlushID() { |
| return flushID; |
| } |
| |
| public long getCompactID() { |
| return compactID; |
| } |
| |
| public Location getLastLocation() { |
| return lastLocation; |
| } |
| |
| public Map<Long,List<TabletFile>> getBulkImported() { |
| return bulkImported; |
| } |
| |
| public String getDirectoryName() { |
| return directoryName; |
| } |
| |
| public long getSplitTime() { |
| return splitTime; |
| } |
| |
| public Map<ExternalCompactionId,ExternalCompactionMetadata> getExternalCompactions() { |
| return extCompactions; |
| } |
| } |