Package org.lilyproject.repository.api

Examples of org.lilyproject.repository.api.TableNotFoundException


        try {
            HTableInterface nonAuthHTable = LilyHBaseSchema.getRecordTable(hbaseTableFactory, key.getRepositoryName(), key.getTableName(), true);
            HTableInterface htable = wrapWithAuthorization(nonAuthHTable);
            return new HBaseRepository(key, this, htable, nonAuthHTable, blobManager, tableManager, getRecordFactory());
        } catch (org.apache.hadoop.hbase.TableNotFoundException e) {
            throw new TableNotFoundException(key.getRepositoryName(), key.getTableName());
        } catch (IOException e) {
            throw new RepositoryException(e);
        }
    }
View Full Code Here


            if ("true".equals(System.getProperty("lilyclient.trace"))) {
                repo = TracingRepository.wrap(repo);
            }
            return repo;
        } catch (org.apache.hadoop.hbase.TableNotFoundException e) {
            throw new TableNotFoundException(key.getRepositoryName(), key.getTableName());
        } catch (IOException e) {
            throw new RepositoryException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.lilyproject.repository.api.TableNotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.