Uses of Class
com.nhncorp.neptune.common.conf.NConfiguration

Packages that use NConfiguration
com.nhncorp.neptune.changelog Change log server 
com.nhncorp.neptune.changelog.previous 사용하지 않는 change log server 
com.nhncorp.neptune.client Neptune Client API, Shell, Scanner, Utility 
com.nhncorp.neptune.client.scanner scanner, ScannerFactory만 외부에 오픈되고 대부분은 protected 
com.nhncorp.neptune.common   
com.nhncorp.neptune.common.conf   
com.nhncorp.neptune.common.io Most classes in this package from Apache Hadoop. 
com.nhncorp.neptune.common.ipc Most classes in this package from Apache Hadoop. 
com.nhncorp.neptune.common.testhelper   
com.nhncorp.neptune.common.util   
com.nhncorp.neptune.fs neptune의 데이터 파일을 저장하는 file system에 대한 인터페이스 정의 및 이를 구현한 class 
com.nhncorp.neptune.fs.old   
com.nhncorp.neptune.master Neptune Master Server 
com.nhncorp.neptune.parallel.hadoop Table을 input으로 하는 Hadoop MapReduce job을 위한 유틸리티 
com.nhncorp.neptune.tablet Table, Tablet 관련 Value Object 
com.nhncorp.neptune.tabletserver TabletServer 
com.nhncorp.neptune.tabletserver.action   
com.nhncorp.neptune.util.matrix   
 

Uses of NConfiguration in com.nhncorp.neptune.changelog
 

Methods in com.nhncorp.neptune.changelog with parameters of type NConfiguration
static void ChangeLogClient.formatLogsAt(NConfiguration conf, java.net.InetSocketAddress addr)
           
 

Constructors in com.nhncorp.neptune.changelog with parameters of type NConfiguration
ChangeLogClient(NConfiguration conf, java.lang.String tabletName)
           
ChangeLogClient(NConfiguration conf, java.lang.String tabletName, java.net.InetSocketAddress[] addresses)
           
ChangeLogServer(NConfiguration conf)
           
RpcUtil(NConfiguration conf, java.net.InetSocketAddress[] rpcAddressList)
           
 

Uses of NConfiguration in com.nhncorp.neptune.changelog.previous
 

Methods in com.nhncorp.neptune.changelog.previous with parameters of type NConfiguration
 void ChangeLogServerIF.init(ChangeLogServerIF changeLogServer, NConfiguration configuration)
           
 void FileChangeLogServerIF.init(FileChangeLogServerIF changeLogServer, NConfiguration configuration)
           
 void FileChangeLogServer.init(FileChangeLogServerIF changeLogServer, NConfiguration configuration)
           
 

Constructors in com.nhncorp.neptune.changelog.previous with parameters of type NConfiguration
FileChangeLogManager(NConfiguration conf, java.lang.String tabletName, java.lang.String hostName)
           
 

Uses of NConfiguration in com.nhncorp.neptune.client
 

Fields in com.nhncorp.neptune.client declared as NConfiguration
static NConfiguration Shell.conf
           
 

Methods in com.nhncorp.neptune.client that return NConfiguration
 NConfiguration NTable.getConf()
          Neptune configuration 객체를 반환한다.
 

Methods in com.nhncorp.neptune.client with parameters of type NConfiguration
static DataServiceProtocol NTableManager.connectTabletServer(java.lang.String hostName, NConfiguration conf)
           
static DataServiceProtocol NTableManager.connectTabletServer(TabletInfo tabletInfo, NConfiguration conf)
           
static void NTable.createTable(NConfiguration conf, TableSchema tableSchema)
          테이블을 생성한다.
static void NTable.createTable(NConfiguration conf, TableSchema tableSchema, Row.Key[] endRowKeys)
          NTable에 설정된 TableInfo를 이용하여 테이블을 생성한다.
static void NTable.dropTable(NConfiguration conf, java.lang.String tableName)
          테이블을 drop 한다.
static void NTableManager.dropTable(NConfiguration conf, java.lang.String tableName)
          테이블을 drop한다.
static boolean NTable.existsTable(NConfiguration conf, java.lang.String tableName)
          테이블이 존재하는지 여부를 확인한다.
static TabletLocationCache TabletLocationCache.getInstance(NConfiguration conf)
           
static com.nhncorp.pleiades.client.LockService NTableManager.getLockService(NConfiguration conf)
           
static TableManagerProtocol NTableManager.getMasterServer(NConfiguration conf)
          NeptuneMaster에 연결한다.
static TableSchema[] NTableManager.listTables(NConfiguration conf)
          모든 테이블 목록을 조회한다.
static TabletInfo NTable.lookupTargetTablet(NConfiguration conf, java.lang.String tableName, Row.Key rowKey)
          특정 Row를 서비스하는 Tablet을 찾는다.
static NTable NTable.openTable(NConfiguration conf, java.lang.String tableName)
          NTable 객체를 가져온다.
static NTable NTable.openTable(NConfiguration conf, TableSchema tableSchema, boolean create)
          NTable 객체를 가져온다.
 

Uses of NConfiguration in com.nhncorp.neptune.client.scanner
 

Methods in com.nhncorp.neptune.client.scanner with parameters of type NConfiguration
static TableScanner ScannerFactory.openScanner(NConfiguration conf, TabletInfo tabletInfo, RowFilter rowFilter)
          특정 Tablet을 Scan하는 TableScanner를 오픈한다.
static TableScanner ScannerFactory.openScanner(NConfiguration conf, TabletInfo tabletInfo, java.lang.String columnName)
          특정 Tablet을 Scan하는 TableScanner를 오픈한다.
static TableScanner ScannerFactory.openScanner(NConfiguration conf, TabletInfo tabletInfo, java.lang.String[] columnNames)
          특정 Tablet을 Scan하는 TableScanner를 오픈한다.
 

Uses of NConfiguration in com.nhncorp.neptune.common
 

Methods in com.nhncorp.neptune.common with parameters of type NConfiguration
static com.nhncorp.pleiades.client.LockService LockServiceFactory.getLockService(NConfiguration conf, java.lang.String owner, boolean allowCallback)
           
 

Uses of NConfiguration in com.nhncorp.neptune.common.conf
 

Methods in com.nhncorp.neptune.common.conf that return NConfiguration
 NConfiguration NConfigured.getConf()
           
 NConfiguration NConfigurable.getConf()
          Return the configuration used by this object.
 

Methods in com.nhncorp.neptune.common.conf with parameters of type NConfiguration
 void NConfigured.setConf(NConfiguration conf)
           
 void NConfigurable.setConf(NConfiguration conf)
          Set the configuration to be used by this object.
 

Constructors in com.nhncorp.neptune.common.conf with parameters of type NConfiguration
NConfiguration(NConfiguration other)
          A new configuration with the same settings cloned from another.
NConfigured(NConfiguration conf)
          Construct a Configured.
 

Uses of NConfiguration in com.nhncorp.neptune.common.io
 

Methods in com.nhncorp.neptune.common.io that return NConfiguration
 NConfiguration NObjectWritable.getConf()
           
 

Methods in com.nhncorp.neptune.common.io with parameters of type NConfiguration
static NWritable NWritableUtils.clone(NWritable orig, NConfiguration conf)
          Make a copy of a writable object using serialization to a buffer.
static NWritable NWritableFactories.newInstance(java.lang.Class c, NConfiguration conf)
          Create a new instance of a class with a defined factory.
static java.lang.Object NObjectWritable.readObject(java.io.DataInput in, NConfiguration conf)
          Read a NWritable, String, primitive type, or an array of the preceding.
static java.lang.Object NObjectWritable.readObject(java.io.DataInput in, NObjectWritable objectWritable, NConfiguration conf)
           
static java.lang.Object NObjectWritable.readObject(java.io.DataInput in, NObjectWritable objectWritable, NConfiguration conf, boolean arrayComponent, java.lang.Class componentClass)
          Read a NWritable, String, primitive type, or an array of the preceding.
 void NObjectWritable.setConf(NConfiguration conf)
           
static void NObjectWritable.writeObject(java.io.DataOutput out, java.lang.Object instance, java.lang.Class declaredClass, NConfiguration conf)
           
static void NObjectWritable.writeObject(java.io.DataOutput out, java.lang.Object instance, java.lang.Class declaredClass, NConfiguration conf, boolean arrayComponent)
          Write a NWritable, String, primitive type, or an array of the preceding.
 

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

Methods in com.nhncorp.neptune.common.ipc with parameters of type NConfiguration
static java.lang.Object[] NRPC.call(java.lang.reflect.Method method, java.lang.Object[][] params, java.net.InetSocketAddress[] addrs, NConfiguration conf)
          Expert: Make multiple, parallel calls to a set of servers.
static java.lang.Object NRPC.getOnewayProxy(java.lang.Class<?> protocol, long clientVersion, java.net.InetSocketAddress addr, NConfiguration conf)
           
static NVersionedProtocol NRPC.getProxy(java.lang.Class<?> protocol, long clientVersion, java.net.InetSocketAddress addr, NConfiguration conf)
          Construct a client-side proxy object with the default SocketFactory
static NVersionedProtocol NRPC.getProxy(java.lang.Class<?> protocol, long clientVersion, java.net.InetSocketAddress addr, NConfiguration conf, javax.net.SocketFactory factory)
          Construct a client-side proxy object that implements the named protocol, talking to a server at the named address.
static NVersionedProtocol NRPC.getProxyWithoutVersionChecking(java.lang.Class<?> protocol, long clientVersion, java.net.InetSocketAddress addr, NConfiguration conf)
           
static NRPC.Server NRPC.getServer(com.nhncorp.pleiades.client.LockService lockService, java.lang.Object instance, java.lang.String bindAddress, int port, int numHandlers, boolean verbose, NConfiguration conf)
          Construct a server for a protocol implementation instance listening on a port and address.
static NRPC.Server NRPC.getServer(com.nhncorp.pleiades.client.LockService lockService, java.lang.Object instance, java.lang.String bindAddress, int port, NConfiguration conf)
          Construct a server for a protocol implementation instance listening on a port and address.
static java.util.Set<java.lang.String> AclManager.loadUserInfo(NConfiguration conf, com.nhncorp.pleiades.client.LockService lockService)
           
static NVersionedProtocol NRPC.waitForProxy(java.lang.Class protocol, long clientVersion, java.net.InetSocketAddress addr, NConfiguration conf)
           
 

Constructors in com.nhncorp.neptune.common.ipc with parameters of type NConfiguration
NClient(java.lang.Class<?> valueClass, NConfiguration conf)
          Construct an IPC client with the default SocketFactory
NClient(java.lang.Class valueClass, NConfiguration conf, javax.net.SocketFactory factory)
          Construct an IPC client whose values are of the given NWritable class.
NRPC.Server(com.nhncorp.pleiades.client.LockService lockService, java.lang.Object instance, NConfiguration conf, java.lang.String bindAddress, int port)
          Construct an RPC server.
NRPC.Server(com.nhncorp.pleiades.client.LockService lockService, java.lang.Object instance, NConfiguration conf, java.lang.String bindAddress, int port, int numHandlers, boolean verbose)
          Construct an RPC server.
 

Uses of NConfiguration in com.nhncorp.neptune.common.testhelper
 

Methods in com.nhncorp.neptune.common.testhelper with parameters of type NConfiguration
static FaultManager FaultManager.create(NConfiguration conf)
           
 

Uses of NConfiguration in com.nhncorp.neptune.common.util
 

Methods in com.nhncorp.neptune.common.util with parameters of type NConfiguration
static javax.net.SocketFactory NetUtils.getDefaultSocketFactory(NConfiguration conf)
          Get the default socket factory as specified by the configuration parameter hadoop.rpc.socket.factory.default
static javax.net.SocketFactory NetUtils.getSocketFactoryFromProperty(NConfiguration conf, java.lang.String propValue)
          Get the socket factory corresponding to the given proxy URI.
static java.lang.Object ReflectionUtils.newInstance(java.lang.Class<?> theClass, NConfiguration conf)
          Create an object for the given class and initialize it from conf
static void ReflectionUtils.setConf(java.lang.Object theObject, NConfiguration conf)
          Check and set 'configuration' if necessary.
 

Uses of NConfiguration in com.nhncorp.neptune.fs
 

Methods in com.nhncorp.neptune.fs with parameters of type NConfiguration
static NeptuneFileSystem NeptuneFileSystem.get(NConfiguration conf)
           
static NeptuneFileSystem NeptuneFileSystem.get(NConfiguration conf, java.lang.String fsName)
           
static ChangeLogFileSystemIF ChangeLogFileSystem.getChangeLogFileSystem(NConfiguration conf, TabletServerIF tabletServer, com.nhncorp.pleiades.client.LockService lockService)
           
 void PipeBasedChangeLogFileSystem.init(ChangeLogFileSystemIF systemIF, NConfiguration conf, TabletServerIF tabletServer, com.nhncorp.pleiades.client.LockService lockService)
           
 void LocalChangeLogFileSystem.init(ChangeLogFileSystemIF systemIF, NConfiguration conf, TabletServerIF tabletServer, com.nhncorp.pleiades.client.LockService lockService)
           
 void ChangeLogFileSystemIF.init(ChangeLogFileSystemIF systemIF, NConfiguration conf, TabletServerIF tabletServer, com.nhncorp.pleiades.client.LockService lockService)
           
 

Constructors in com.nhncorp.neptune.fs with parameters of type NConfiguration
LocalChangeLogFileSystem(NConfiguration conf)
           
 

Uses of NConfiguration in com.nhncorp.neptune.fs.old
 

Methods in com.nhncorp.neptune.fs.old with parameters of type NConfiguration
 void FileBasedChangeLogFileSystem.init(ChangeLogFileSystemIF proxyObject, NConfiguration conf, TabletServerIF tabletServer, com.nhncorp.pleiades.client.LockService lockService)
           
 

Uses of NConfiguration in com.nhncorp.neptune.master
 

Methods in com.nhncorp.neptune.master that return NConfiguration
 NConfiguration NeptuneMasterIF.getConf()
           
 NConfiguration NeptuneMaster.getConf()
           
 

Methods in com.nhncorp.neptune.master with parameters of type NConfiguration
static boolean NeptuneMaster.doFormat(NConfiguration conf)
          모든 데이터 및 스키마를 삭제한다.
static java.lang.String NeptuneMaster.finalizeDrop(NeptuneMaster neptuneMaster, NConfiguration conf, NeptuneFileSystem fs, com.nhncorp.pleiades.client.LockService lockService, java.lang.String tableName, boolean forced)
           
static void NeptuneMaster.formatFileSystem(NConfiguration conf)
           
 void NeptuneMasterIF.init(NeptuneMasterIF proxyObject, NConfiguration conf)
           
 void NeptuneMaster.init(NeptuneMasterIF proxyObject, NConfiguration conf)
           
 

Uses of NConfiguration in com.nhncorp.neptune.parallel.hadoop
 

Constructors in com.nhncorp.neptune.parallel.hadoop with parameters of type NConfiguration
AbstractTabletInputFormat.TabletColumnRecordReader(NConfiguration conf, java.lang.String tableName, RowFilter rowFilter)
           
AbstractTabletInputFormat.TabletRowRecordReader(NConfiguration conf, java.lang.String tableName, RowFilter rowFilter)
           
 

Uses of NConfiguration in com.nhncorp.neptune.tablet
 

Methods in com.nhncorp.neptune.tablet with parameters of type NConfiguration
static java.lang.String TableSchema.getTableDataPath(NConfiguration conf, java.lang.String tableName)
           
static java.lang.String TableSchema.getTableDataTrashPath(NConfiguration conf, java.lang.String tableName)
           
static GPath TableSchema.getTableSchemaPath(NConfiguration conf, java.lang.String tableName)
           
static TableSchema TableSchema.loadTableSchema(NConfiguration conf, java.lang.String tableName)
           
 

Uses of NConfiguration in com.nhncorp.neptune.tabletserver
 

Methods in com.nhncorp.neptune.tabletserver that return NConfiguration
 NConfiguration TabletServer.getConf()
           
 NConfiguration Tablet.getConf()
           
 

Methods in com.nhncorp.neptune.tabletserver with parameters of type NConfiguration
static GPath ChangeLog.getChangeLogPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath ChangeLog.getChangeLogTempPath(NConfiguration conf, TabletInfo tabletInfo, java.lang.String fileId)
           
static GPath Tablet.getTabletLocalTempPath(NConfiguration conf, TabletInfo tabletInfo, java.lang.String actionId)
           
static GPath Tablet.getTabletMajorCompactionTempPath(NConfiguration conf, java.lang.String tableName, java.lang.String tabletName)
           
static GPath Tablet.getTabletMajorCompactionTempPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath Tablet.getTabletMinorCompactionTempPath(NConfiguration conf, java.lang.String tableName, java.lang.String tabletName)
           
static GPath Tablet.getTabletMinorCompactionTempPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath Tablet.getTabletPath(NConfiguration conf, java.lang.String tableName, java.lang.String tabletName)
           
static GPath Tablet.getTabletPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath Tablet.getTabletSplitTempPath(NConfiguration conf, java.lang.String tableName, java.lang.String tabletName)
           
static GPath Tablet.getTabletSplitTempPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath Tablet.getTabletUploadTempPath(NConfiguration conf, TabletInfo tabletInfo, java.lang.String actionId)
           
 void DiskSSTableIF.init(TabletServerIF tabletServer, DiskSSTableIF proxyObject, NConfiguration conf, TabletInfo tabletInfo, int numOfVersion)
           
 void DiskSSTable.init(TabletServerIF tabletServer, DiskSSTableIF proxyObject, NConfiguration conf, TabletInfo tabletInfo, int numOfVersion)
           
 void TabletServerIF.init(TabletServerIF tabletServer, NConfiguration conf)
           
 void TabletServer.init(TabletServerIF proxyObject, NConfiguration conf)
           
 void MemorySSTableIF.init(TabletServerIF tabletServer, NConfiguration conf, TabletInfo tabletInfo, int nemOfVersion)
           
 void MemorySSTable.init(TabletServerIF tabletServer, NConfiguration conf, TabletInfo tabletInfo, int numOfVersion)
           
static TabletMapFile DiskSSTable.mergeColumnMapFiles(NConfiguration conf, NeptuneFileSystem resultFs, GPath resultPath, TabletInfo tabletInfo, java.lang.String fileId, java.lang.String columnName, java.util.List<TabletMapFile> mergeMapFiles, int numOfVersion)
           
 

Constructors in com.nhncorp.neptune.tabletserver with parameters of type NConfiguration
ChangeLogWriter(NConfiguration conf, ChangeLogFileSystem changeLogFileSystem, TabletInfo tabletInfo)
           
ColumnCollection(NConfiguration conf)
           
Tablet(NConfiguration conf, TableSchema table, TabletServer tabletServer, TabletInfo tabletInfo)
           
TabletMapFile(NConfiguration conf, NeptuneFileSystem fs, TabletInfo tabletInfo, java.lang.String columnName, java.lang.String fileId, GPath filePath, int numOfVersion)
           
TabletMapFile(NConfiguration conf, TabletInfo tabletInfo, java.lang.String columnName, java.lang.String fileId, int numOfVersion)
           
TabletScanner(java.lang.String scannerId, NConfiguration conf, TabletInfo tabletInfo, Row.Key startRowKey, Row.Key endRowKey, java.lang.String columnName, MemorySSTableIF memorySSTable, DiskSSTableIF diskSSTable, CellFilter columnFilter, int numOfVersion)
           
TabletServerTxStatistics(NConfiguration conf, java.lang.ThreadGroup threadGroup)
           
UploaderCache(NConfiguration conf, TabletInfo tabletInfo, java.lang.String[] columnNames, java.lang.String uploadActionId, int numOfVersion)
           
 

Uses of NConfiguration in com.nhncorp.neptune.tabletserver.action
 

Methods in com.nhncorp.neptune.tabletserver.action with parameters of type NConfiguration
 void MinorCompactionActionIF.init(MinorCompactionActionIF proxyObject, NConfiguration conf, Tablet tablet)
           
 void MinorCompactionAction.init(MinorCompactionActionIF proxyObject, NConfiguration conf, Tablet tablet)
           
 

Uses of NConfiguration in com.nhncorp.neptune.util.matrix
 

Constructors in com.nhncorp.neptune.util.matrix with parameters of type NConfiguration
AbstractMatrix(NConfiguration conf, java.lang.String tableName, java.lang.String columnName)
           
AbstractMatrix(NConfiguration conf, java.lang.String tableName, java.lang.String columnName, AbstractMatrix inputMatrix)
           
Matrix(NConfiguration conf, java.lang.String tableName, java.lang.String columnName)
           
SparseMatrix(NConfiguration conf, java.lang.String tableName, java.lang.String columnName)
           
SparseMatrix(NConfiguration conf, java.lang.String tableName, java.lang.String columnName, AbstractMatrix inputMatrix)