48394840484148424843484448454846
public void heartbeat(HeartbeatRequest ids) throws NoSuchLockException, NoSuchTxnException, TxnAbortedException, TException { try { getTxnHandler().heartbeat(ids); } catch (MetaException e) { throw new TException(e); } }
48494850485148524853485448554856
public HeartbeatTxnRangeResponse heartbeat_txn_range(HeartbeatTxnRangeRequest rqst) throws TException { try { return getTxnHandler().heartbeatTxnRange(rqst); } catch (MetaException e) { throw new TException(e); } }
48584859486048614862486348644865
@Override public void compact(CompactionRequest rqst) throws TException { try { getTxnHandler().compact(rqst); } catch (MetaException e) { throw new TException(e); } }
48674868486948704871487248734874
@Override public ShowCompactResponse show_compact(ShowCompactRequest rqst) throws TException { try { return getTxnHandler().showCompact(rqst); } catch (MetaException e) { throw new TException(e); } }
6667686970717273
}); try { latch.await(); return ref.get(); } catch (Exception e) { throw new TException("failed to generate response", e); } }
310311312313314315316317
try { getConnector(login).tableOperations().clearLocatorCache(tableName); } catch (TableNotFoundException e) { throw new org.apache.accumulo.proxy.thrift.TableNotFoundException(e.toString()); } catch (Exception e) { throw new TException(e.toString()); } }
369370371372373374375376
@Override public boolean tableExists(ByteBuffer login, String tableName) throws TException { try { return getConnector(login).tableOperations().exists(tableName); } catch (Exception e) { throw new TException(e); } }
464465466467468469470471
@Override public Set<String> listTables(ByteBuffer login) throws TException { try { return getConnector(login).tableOperations().list(); } catch (Exception e) { throw new TException(e); } }
591592593594595596597598
@Override public Map<String,String> tableIdMap(ByteBuffer login) throws TException { try { return getConnector(login).tableOperations().tableIdMap(); } catch (Exception e) { throw new TException(e); } }
622623624625626627628629
@Override public List<String> getTabletServers(ByteBuffer login) throws TException { try { return getConnector(login).instanceOperations().getTabletServers(); } catch (Exception e) { throw new TException(e); } }