Package | Description |
---|---|
alluxio.master.file.meta | |
alluxio.master.metastore | |
alluxio.master.metastore.caching | |
alluxio.master.metastore.heap | |
alluxio.master.metastore.rocks |
Modifier and Type | Class and Description |
---|---|
class |
MutableInode<T extends MutableInode>
MutableInode is an abstract class, with information shared by all types of Inodes. |
Modifier and Type | Class and Description |
---|---|
class |
MutableInodeDirectory
Alluxio file system's directory representation in the file system master.
|
class |
MutableInodeFile
Alluxio file system's file representation in the file system master.
|
Modifier and Type | Method and Description |
---|---|
static MutableInode<?> |
MutableInode.fromProto(InodeMeta.InodeOrBuilder inode) |
Modifier and Type | Method and Description |
---|---|
void |
InodeTreePersistentState.applyAndJournal(java.util.function.Supplier<JournalContext> context,
MutableInode<?> inode,
String path)
Adds an inode to the inode tree.
|
Modifier and Type | Method and Description |
---|---|
Set<MutableInode<?>> |
DelegatingReadOnlyInodeStore.allInodes() |
Set<MutableInode<?>> |
ReadOnlyInodeStore.allInodes() |
default Optional<MutableInode<?>> |
InodeStore.getMutable(long id) |
Optional<MutableInode<?>> |
InodeStore.getMutable(long id,
ReadOption option)
Gets a mutable representation of the specified inode.
|
Modifier and Type | Method and Description |
---|---|
void |
InodeStore.writeInode(MutableInode<?> inode)
Adds the given inode, or overwrites it if it already exists.
|
void |
InodeStore.WriteBatch.writeInode(MutableInode<?> inode)
Adds an inode to the write batch.
|
default void |
InodeStore.writeNewInode(MutableInode<?> inode)
Adds a new inode.
|
Modifier and Type | Method and Description |
---|---|
Set<MutableInode<?>> |
CachingInodeStore.allInodes() |
Optional<MutableInode<?>> |
CachingInodeStore.getMutable(long id,
ReadOption option) |
Modifier and Type | Method and Description |
---|---|
void |
CachingInodeStore.writeInode(MutableInode<?> inode) |
void |
CachingInodeStore.writeNewInode(MutableInode<?> inode) |
Modifier and Type | Method and Description |
---|---|
Set<MutableInode<?>> |
HeapInodeStore.allInodes() |
Optional<MutableInode<?>> |
HeapInodeStore.getMutable(long id,
ReadOption option) |
Modifier and Type | Method and Description |
---|---|
void |
HeapInodeStore.writeInode(MutableInode<?> inode) |
Modifier and Type | Method and Description |
---|---|
Set<MutableInode<?>> |
RocksInodeStore.allInodes() |
Optional<MutableInode<?>> |
RocksInodeStore.getMutable(long id,
ReadOption option) |
Modifier and Type | Method and Description |
---|---|
void |
RocksInodeStore.writeInode(MutableInode<?> inode) |
Copyright © 2023. All Rights Reserved.