Package | Description |
---|---|
tachyon.master | |
tachyon.thrift | |
tachyon.worker |
Modifier and Type | Method and Description |
---|---|
int |
MasterInfo.createFile(boolean recursive,
String path,
boolean directory,
int columns,
ByteBuffer metadata,
long blockSizeByte)
Create a file.
|
int |
MasterInfo.createFile(String path,
long blockSizeByte) |
int |
MasterInfo.createRawTable(String path,
int columns,
ByteBuffer metadata) |
boolean |
MasterInfo.delete(int fileId,
boolean recursive)
Delete a file based on the file's ID.
|
boolean |
MasterInfo.delete(String path,
boolean recursive)
Delete a file based on the file's path.
|
boolean |
MasterInfo.mkdir(String path) |
void |
InodeRawTable.updateMetadata(ByteBuffer metadata) |
void |
MasterInfo.updateRawTableMetadata(int tableId,
ByteBuffer metadata) |
int |
MasterServiceHandler.user_createDependency(List<String> parents,
List<String> children,
String commandPrefix,
List<ByteBuffer> data,
String comment,
String framework,
String frameworkVersion,
int dependencyType,
long childrenBlockSizeByte) |
int |
MasterServiceHandler.user_createFile(String path,
long blockSizeByte) |
int |
MasterServiceHandler.user_createFileOnCheckpoint(String path,
String checkpointPath) |
int |
MasterServiceHandler.user_createRawTable(String path,
int columns,
ByteBuffer metadata) |
boolean |
MasterServiceHandler.user_deleteById(int id,
boolean recursive) |
boolean |
MasterServiceHandler.user_deleteByPath(String path,
boolean recursive) |
boolean |
MasterServiceHandler.user_mkdir(String path) |
void |
MasterServiceHandler.user_updateRawTableMetadata(int tableId,
ByteBuffer metadata) |
Constructor and Description |
---|
InodeRawTable(String name,
int id,
int parentId,
int columns,
ByteBuffer metadata,
long creationTimeMs) |
Modifier and Type | Field and Description |
---|---|
TachyonException |
MasterService.user_deleteById_result.e |
TachyonException |
MasterService.user_deleteByPath_result.e |
TachyonException |
WorkerService.asyncCheckpoint_result.e |
TachyonException |
MasterService.user_createDependency_result.eT |
TachyonException |
MasterService.user_createFile_result.eT |
TachyonException |
MasterService.user_createFileOnCheckpoint_result.eT |
TachyonException |
MasterService.user_mkdir_result.eT |
TachyonException |
MasterService.user_createRawTable_result.eTa |
TachyonException |
MasterService.user_updateRawTableMetadata_result.eTa |
Modifier and Type | Method and Description |
---|---|
TachyonException |
TachyonException.deepCopy() |
TachyonException |
MasterService.user_deleteById_result.getE() |
TachyonException |
MasterService.user_deleteByPath_result.getE() |
TachyonException |
WorkerService.asyncCheckpoint_result.getE() |
TachyonException |
MasterService.user_createDependency_result.getET() |
TachyonException |
MasterService.user_createFile_result.getET() |
TachyonException |
MasterService.user_createFileOnCheckpoint_result.getET() |
TachyonException |
MasterService.user_mkdir_result.getET() |
TachyonException |
MasterService.user_createRawTable_result.getETa() |
TachyonException |
MasterService.user_updateRawTableMetadata_result.getETa() |
TachyonException |
TachyonException.setMessage(String message) |
Modifier and Type | Method and Description |
---|---|
boolean |
WorkerService.Iface.asyncCheckpoint(int fileId) |
boolean |
WorkerService.Client.asyncCheckpoint(int fileId) |
int |
MasterService.AsyncClient.user_createDependency_call.getResult() |
int |
MasterService.AsyncClient.user_createFile_call.getResult() |
int |
MasterService.AsyncClient.user_createFileOnCheckpoint_call.getResult() |
boolean |
MasterService.AsyncClient.user_deleteById_call.getResult() |
boolean |
MasterService.AsyncClient.user_deleteByPath_call.getResult() |
boolean |
MasterService.AsyncClient.user_mkdir_call.getResult() |
int |
MasterService.AsyncClient.user_createRawTable_call.getResult() |
void |
MasterService.AsyncClient.user_updateRawTableMetadata_call.getResult() |
boolean |
WorkerService.AsyncClient.asyncCheckpoint_call.getResult() |
boolean |
WorkerService.Client.recv_asyncCheckpoint() |
int |
MasterService.Client.recv_user_createDependency() |
int |
MasterService.Client.recv_user_createFile() |
int |
MasterService.Client.recv_user_createFileOnCheckpoint() |
int |
MasterService.Client.recv_user_createRawTable() |
boolean |
MasterService.Client.recv_user_deleteById() |
boolean |
MasterService.Client.recv_user_deleteByPath() |
boolean |
MasterService.Client.recv_user_mkdir() |
void |
MasterService.Client.recv_user_updateRawTableMetadata() |
int |
MasterService.Iface.user_createDependency(List<String> parents,
List<String> children,
String commandPrefix,
List<ByteBuffer> data,
String comment,
String framework,
String frameworkVersion,
int dependencyType,
long childrenBlockSizeByte) |
int |
MasterService.Client.user_createDependency(List<String> parents,
List<String> children,
String commandPrefix,
List<ByteBuffer> data,
String comment,
String framework,
String frameworkVersion,
int dependencyType,
long childrenBlockSizeByte) |
int |
MasterService.Iface.user_createFile(String path,
long blockSizeByte) |
int |
MasterService.Client.user_createFile(String path,
long blockSizeByte) |
int |
MasterService.Iface.user_createFileOnCheckpoint(String path,
String checkpointPath) |
int |
MasterService.Client.user_createFileOnCheckpoint(String path,
String checkpointPath) |
int |
MasterService.Iface.user_createRawTable(String path,
int columns,
ByteBuffer metadata) |
int |
MasterService.Client.user_createRawTable(String path,
int columns,
ByteBuffer metadata) |
boolean |
MasterService.Iface.user_deleteById(int fileId,
boolean recursive) |
boolean |
MasterService.Client.user_deleteById(int fileId,
boolean recursive) |
boolean |
MasterService.Iface.user_deleteByPath(String path,
boolean recursive) |
boolean |
MasterService.Client.user_deleteByPath(String path,
boolean recursive) |
boolean |
MasterService.Iface.user_mkdir(String path) |
boolean |
MasterService.Client.user_mkdir(String path) |
void |
MasterService.Iface.user_updateRawTableMetadata(int tableId,
ByteBuffer metadata) |
void |
MasterService.Client.user_updateRawTableMetadata(int tableId,
ByteBuffer metadata) |
Modifier and Type | Method and Description |
---|---|
boolean |
WorkerServiceHandler.asyncCheckpoint(int fileId) |
boolean |
WorkerClient.asyncCheckpoint(int fid) |
Copyright © 2014. All rights reserved.