@Override
 public boolean shardExists(UUID uuid) {
   try {
     return store.shardExists(uuid);
   } catch (UncheckedTimeoutException e) {
     throw new PrestoException(RAPTOR_BACKUP_TIMEOUT, "Shard existence check timed out");
   }
 }