Uses of Class
com.nhncorp.neptune.tablet.TableSchema

Packages that use TableSchema
com.nhncorp.neptune.client Neptune Client API, Shell, Scanner, Utility 
com.nhncorp.neptune.client.browser Neptune GUI Client Tool. 
com.nhncorp.neptune.client.shell neptune command line shell 
com.nhncorp.neptune.common   
com.nhncorp.neptune.common.ipc Most classes in this package from Apache Hadoop. 
com.nhncorp.neptune.master Neptune Master Server 
com.nhncorp.neptune.tablet Table, Tablet 관련 Value Object 
com.nhncorp.neptune.tabletserver TabletServer 
 

Uses of TableSchema in com.nhncorp.neptune.client
 

Methods in com.nhncorp.neptune.client that return TableSchema
 TableSchema NTable.descTable()
          테이블의 상세 정보를 조회한다.
 TableSchema NTable.getTableSchema()
           
static TableSchema[] NTableManager.listTables(NConfiguration conf)
          모든 테이블 목록을 조회한다.
 

Methods in com.nhncorp.neptune.client that return types with arguments of type TableSchema
 java.util.Map<java.lang.String,TableSchema> TabletLocationCache.getTableInfos()
           
 

Methods in com.nhncorp.neptune.client with parameters of type TableSchema
static void NTable.createTable(NConfiguration conf, TableSchema tableSchema)
          테이블을 생성한다.
static void NTable.createTable(NConfiguration conf, TableSchema tableSchema, Row.Key[] endRowKeys)
          NTable에 설정된 TableInfo를 이용하여 테이블을 생성한다.
static NTable NTable.openTable(NConfiguration conf, TableSchema tableSchema, boolean create)
          NTable 객체를 가져온다.
 

Uses of TableSchema in com.nhncorp.neptune.client.browser
 

Methods in com.nhncorp.neptune.client.browser that return TableSchema
 TableSchema TableListTableModel.getTableInfo(int minSelectionIndex)
           
 

Uses of TableSchema in com.nhncorp.neptune.client.shell
 

Methods in com.nhncorp.neptune.client.shell with parameters of type TableSchema
static void ConsoleTable.printTable(int count, TableSchema tableSchema)
           
 

Uses of TableSchema in com.nhncorp.neptune.common
 

Fields in com.nhncorp.neptune.common declared as TableSchema
static TableSchema GlobalConstants.META_TABLE
           
static TableSchema GlobalConstants.ROOT_TABLE
           
 

Uses of TableSchema in com.nhncorp.neptune.common.ipc
 

Method parameters in com.nhncorp.neptune.common.ipc with type arguments of type TableSchema
static void AclManager.checkOwner(com.nhncorp.pleiades.client.LockService lockService, java.util.Map<java.lang.String,TableSchema> tables, java.lang.String tableName)
           
static void AclManager.checkPermission(com.nhncorp.pleiades.client.LockService lockService, java.util.Map<java.lang.String,TableSchema> tables, java.lang.String tableName, java.lang.String readWrite)
           
static void AclManager.checkPermission(com.nhncorp.pleiades.client.LockService lockService, java.lang.String userId, java.util.Map<java.lang.String,TableSchema> tables, java.lang.String tableName, java.lang.String readWrite)
           
 

Uses of TableSchema in com.nhncorp.neptune.master
 

Methods in com.nhncorp.neptune.master that return TableSchema
 TableSchema[] TableManagerProtocol.listTables()
          테이블 목록을 조회한다.
 TableSchema[] NeptuneMaster.listTables()
           
 

Methods in com.nhncorp.neptune.master with parameters of type TableSchema
 void TableManagerProtocol.createTable(TableSchema table, Row.Key[] endRowKeys)
          테이블을 생성한다.
 void NeptuneMaster.createTable(TableSchema table, Row.Key[] endRowKeys)
          테이블을 생성한다. endRowKeys에 초기에 생성할 tablet에 대한 목록이 있는 경우 tablet을 여러개 생성시키고 그렇지 않는 경우 min ~ max 범위를 저장하는 하나의 tablet만 생성한다.
 

Uses of TableSchema in com.nhncorp.neptune.tablet
 

Methods in com.nhncorp.neptune.tablet that return TableSchema
static TableSchema TableSchema.loadTableSchema(NConfiguration conf, java.lang.String tableName)
           
 

Methods in com.nhncorp.neptune.tablet with parameters of type TableSchema
 int TableSchema.compareTo(TableSchema o)
           
 

Uses of TableSchema in com.nhncorp.neptune.tabletserver
 

Methods in com.nhncorp.neptune.tabletserver that return TableSchema
 TableSchema Tablet.getTable()
           
 

Constructors in com.nhncorp.neptune.tabletserver with parameters of type TableSchema
Tablet(NConfiguration conf, TableSchema table, TabletServer tabletServer, TabletInfo tabletInfo)