io.trino.plugin.kudu.KuduClientWrapper Maven / Gradle / Ivy
/*
* Licensed 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 io.trino.plugin.kudu;
import org.apache.kudu.Schema;
import org.apache.kudu.client.AlterTableOptions;
import org.apache.kudu.client.AlterTableResponse;
import org.apache.kudu.client.CreateTableOptions;
import org.apache.kudu.client.DeleteTableResponse;
import org.apache.kudu.client.KuduException;
import org.apache.kudu.client.KuduScanToken;
import org.apache.kudu.client.KuduScanner;
import org.apache.kudu.client.KuduSession;
import org.apache.kudu.client.KuduTable;
import org.apache.kudu.client.ListTablesResponse;
import java.io.IOException;
public interface KuduClientWrapper
extends AutoCloseable
{
KuduTable createTable(String name, Schema schema, CreateTableOptions builder)
throws KuduException;
DeleteTableResponse deleteTable(String name)
throws KuduException;
AlterTableResponse alterTable(String name, AlterTableOptions ato)
throws KuduException;
ListTablesResponse getTablesList()
throws KuduException;
ListTablesResponse getTablesList(String nameFilter)
throws KuduException;
boolean tableExists(String name)
throws KuduException;
KuduTable openTable(String name)
throws KuduException;
KuduScanner.KuduScannerBuilder newScannerBuilder(KuduTable table);
KuduScanToken.KuduScanTokenBuilder newScanTokenBuilder(KuduTable table);
KuduSession newSession();
KuduScanner deserializeIntoScanner(byte[] serializedScanToken)
throws IOException;
@Override
void close()
throws KuduException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy