blob: bae3931401b3ec4a3da8640df24317580366ddde [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.hyracks.storage.common;
import org.apache.hyracks.api.exceptions.HyracksDataException;
import org.apache.hyracks.dataflow.common.data.accessors.ITupleReference;
import org.apache.hyracks.storage.common.buffercache.IPageWriteFailureCallback;
public interface IIndexBulkLoader extends IPageWriteFailureCallback {
/**
* Append a tuple to the index in the context of a bulk load.
*
* @param tuple
* Tuple to be inserted.
* @throws IndexException
* If the input stream is invalid for bulk loading (e.g., is not sorted).
* @throws HyracksDataException
* If the BufferCache throws while un/pinning or un/latching.
*/
public void add(ITupleReference tuple) throws HyracksDataException;
/**
* Finalize the bulk loading operation in the given context and release all resources.
* After this method is called, caller can't add more tuples nor abort
*
* @throws HyracksDataException
* If the BufferCache throws while un/pinning or un/latching.
*/
public void end() throws HyracksDataException;
/**
* Release all resources held by this bulkloader, with no guarantee of
* persisted content.
*
* @throws HyracksDataException
* If the operation was completed through end() invocation before abort is called
*/
void abort() throws HyracksDataException;
/**
* Force all pages written by this bulkloader to disk.
* @throws HyracksDataException
*/
void force() throws HyracksDataException;
}