io.trino.plugin.hive.rubix.DummyBookKeeper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trino-hive Show documentation
Show all versions of trino-hive Show documentation
This is a Databricks build of Trino's Hive plugin which includes support for HTTP based transport
for it's Hive metastore thrift interface.
The newest version!
/*
* 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.hive.rubix;
import com.qubole.rubix.spi.thrift.BookKeeperService;
import com.qubole.rubix.spi.thrift.CacheStatusRequest;
import com.qubole.rubix.spi.thrift.CacheStatusResponse;
import com.qubole.rubix.spi.thrift.FileInfo;
import com.qubole.rubix.spi.thrift.HeartbeatStatus;
import com.qubole.rubix.spi.thrift.ReadResponse;
import org.apache.thrift.shaded.TException;
import java.util.Map;
public class DummyBookKeeper
implements BookKeeperService.Iface
{
@Override
public CacheStatusResponse getCacheStatus(CacheStatusRequest cacheStatusRequest)
{
throw new UnsupportedOperationException();
}
@Override
public void setAllCached(String remotePath, long fileLength, long lastModified, long startBlock, long endBlock, int generationNumber)
{
throw new UnsupportedOperationException();
}
@Override
public Map getCacheMetrics()
{
throw new UnsupportedOperationException();
}
@Override
public Map getReadRequestChainStats()
throws TException
{
throw new UnsupportedOperationException();
}
@Override
public ReadResponse readData(String remotePath, long offset, int length, long fileSize, long lastModified, int clusterType)
{
throw new UnsupportedOperationException();
}
@Override
public void handleHeartbeat(String workerHostname, HeartbeatStatus heartbeatStatus)
{
throw new UnsupportedOperationException();
}
@Override
public FileInfo getFileInfo(String remotePath)
{
throw new UnsupportedOperationException();
}
@Override
public boolean isBookKeeperAlive()
{
throw new UnsupportedOperationException();
}
@Override
public void invalidateFileMetadata(String remotePath)
{
throw new UnsupportedOperationException();
}
}