All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tsfile.read.controller.IMetadataQuerier Maven / Gradle / Ivy

The newest version!
/*
 * 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
 *
 *     http://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.tsfile.read.controller;

import org.apache.tsfile.enums.TSDataType;
import org.apache.tsfile.exception.write.NoMeasurementException;
import org.apache.tsfile.file.metadata.IChunkMetadata;
import org.apache.tsfile.file.metadata.TsFileMetadata;
import org.apache.tsfile.read.common.Path;
import org.apache.tsfile.read.common.TimeRange;

import java.io.IOException;
import java.util.List;
import java.util.Map;

public interface IMetadataQuerier {

  List getChunkMetaDataList(Path path) throws IOException;

  Map> getChunkMetaDataMap(List paths) throws IOException;

  TsFileMetadata getWholeFileMetadata();

  /**
   * this will load all chunk metadata of given paths into cache.
   *
   * 

call this method before calling getChunkMetaDataList() will accelerate the reading of chunk * metadata, which will only read TsMetaData once */ void loadChunkMetaDatas(List paths) throws IOException; /** * @return the corresponding data type. * @throws NoMeasurementException if the measurement not exists. */ TSDataType getDataType(Path path) throws NoMeasurementException, IOException; /** * Convert the space partition constraint to the time partition constraint. * * @param paths selected paths in a query expression * @param spacePartitionStartPos the start position of the space partition * @param spacePartitionEndPos the end position of the space partition * @return the converted time partition constraint */ List convertSpace2TimePartition( List paths, long spacePartitionStartPos, long spacePartitionEndPos) throws IOException; /** clear caches (if used) to release memory. */ void clear(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy