blob: db1fbef2499a555c48470ac0bb297654e64c6d9e [file] [log] [blame]
/*
* 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.druid.metadata;
import com.google.common.annotations.VisibleForTesting;
import org.apache.druid.client.DataSourcesSnapshot;
import org.apache.druid.client.ImmutableDruidDataSource;
import org.apache.druid.timeline.DataSegment;
import org.apache.druid.timeline.SegmentId;
import org.joda.time.Interval;
import javax.annotation.Nullable;
import java.util.Collection;
import java.util.List;
import java.util.Set;
/**
*/
public interface MetadataSegmentManager
{
void start();
void stop();
/**
* Enables all segments for a dataSource which will not be overshadowed.
*/
boolean enableDataSource(String dataSource);
boolean enableSegment(String segmentId);
/**
* Enables all segments contained in the interval which are not overshadowed by any currently enabled segments.
*/
int enableSegments(String dataSource, Interval interval);
/**
* Enables the segments passed which are not overshadowed by any currently enabled segments.
*/
int enableSegments(String dataSource, Collection<String> segmentIds);
boolean removeDataSource(String dataSource);
/**
* Removes the given segmentId from metadata store. Returns true if one or more rows were affected.
*/
boolean removeSegment(String segmentId);
long disableSegments(String dataSource, Collection<String> segmentIds);
int disableSegments(String dataSource, Interval interval);
boolean isStarted();
@Nullable
ImmutableDruidDataSource getDataSource(String dataSourceName);
/**
* Returns a collection of known datasources.
*
* Will return null if we do not have a valid snapshot of segments yet (perhaps the underlying metadata store has
* not yet been polled.)
*/
@Nullable
Collection<ImmutableDruidDataSource> getDataSources();
/**
* Returns an iterable to go over all segments in all data sources. The order in which segments are iterated is
* unspecified. Note: the iteration may not be as trivially cheap as, for example, iteration over an ArrayList. Try
* (to some reasonable extent) to organize the code so that it iterates the returned iterable only once rather than
* several times.
*
* Will return null if we do not have a valid snapshot of segments yet (perhaps the underlying metadata store has
* not yet been polled.)
*/
@Nullable
Iterable<DataSegment> iterateAllSegments();
Collection<String> getAllDataSourceNames();
/**
* Returns a set of overshadowed segment Ids
*
* Will return null if we do not have a valid snapshot of segments yet (perhaps the underlying metadata store has
* not yet been polled.)
*/
@Nullable
Set<SegmentId> getOvershadowedSegments();
/**
* Returns a snapshot of DruidDataSources and overshadowed segments
*
*/
@Nullable
DataSourcesSnapshot getDataSourcesSnapshot();
/**
* Returns top N unused segment intervals in given interval when ordered by segment start time, end time.
*/
List<Interval> getUnusedSegmentIntervals(String dataSource, Interval interval, int limit);
@VisibleForTesting
void poll();
}