├── .github
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ ├── docs_defect.md
│ ├── feature_request.md
│ └── tech_debt.md
├── PULL_REQUEST_TEMPLATE
└── workflows
│ ├── checkstyle.yml
│ ├── fuse_integration_tests.yml
│ ├── java8_integration_tests.yml
│ ├── java8_integration_tests_ft.yml
│ ├── java8_integration_tests_webui.yml
│ ├── java8_unit_tests.yml
│ └── stale.yaml
├── .gitignore
├── LICENSE
├── NOTICE
├── README.md
├── assembly
├── README.md
├── client
│ └── pom.xml
├── pom.xml
└── server
│ └── pom.xml
├── bin
├── alluxio
├── alluxio-common.sh
├── alluxio-masters.sh
├── alluxio-monitor.sh
├── alluxio-mount.sh
├── alluxio-start.sh
├── alluxio-stop.sh
├── alluxio-workers.sh
└── launch-process
├── conf
├── alluxio-env.sh.template
├── alluxio-site.properties.template
├── core-site.xml.template
├── log4j.properties
├── masters
├── metrics.properties.template
├── rocks-block-bloom.ini.template
├── rocks-block.ini.template
├── rocks-inode-bloom.ini.template
├── rocks-inode.ini.template
└── workers
├── core
├── client
│ ├── fs
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ └── java
│ │ │ │ └── alluxio
│ │ │ │ ├── client
│ │ │ │ ├── BoundedStream.java
│ │ │ │ ├── CanUnbuffer.java
│ │ │ │ ├── Cancelable.java
│ │ │ │ ├── PositionedReadable.java
│ │ │ │ ├── block
│ │ │ │ │ ├── AllMastersWorkerInfo.java
│ │ │ │ │ ├── BlockMasterClient.java
│ │ │ │ │ ├── BlockMasterClientPool.java
│ │ │ │ │ ├── BlockStoreClient.java
│ │ │ │ │ ├── BlockWorkerInfo.java
│ │ │ │ │ ├── RetryHandlingBlockMasterClient.java
│ │ │ │ │ ├── options
│ │ │ │ │ │ └── GetWorkerReportOptions.java
│ │ │ │ │ ├── policy
│ │ │ │ │ │ ├── BlockLocationPolicy.java
│ │ │ │ │ │ ├── CapacityBaseRandomPolicy.java
│ │ │ │ │ │ ├── CapacityBasedDeterministicHashPolicy.java
│ │ │ │ │ │ ├── DeterministicHashPolicy.java
│ │ │ │ │ │ ├── LocalFirstAvoidEvictionPolicy.java
│ │ │ │ │ │ ├── LocalFirstPolicy.java
│ │ │ │ │ │ ├── MostAvailableFirstPolicy.java
│ │ │ │ │ │ ├── RoundRobinPolicy.java
│ │ │ │ │ │ ├── SpecificHostPolicy.java
│ │ │ │ │ │ └── options
│ │ │ │ │ │ │ └── GetWorkerOptions.java
│ │ │ │ │ ├── stream
│ │ │ │ │ │ ├── BlockInStream.java
│ │ │ │ │ │ ├── BlockOutStream.java
│ │ │ │ │ │ ├── BlockWorkerClient.java
│ │ │ │ │ │ ├── BlockWorkerClientPool.java
│ │ │ │ │ │ ├── BlockWorkerDataReader.java
│ │ │ │ │ │ ├── BlockWorkerDataWriter.java
│ │ │ │ │ │ ├── BufferCachingGrpcDataReader.java
│ │ │ │ │ │ ├── DataMessageClientResponseObserver.java
│ │ │ │ │ │ ├── DataReader.java
│ │ │ │ │ │ ├── DataWriter.java
│ │ │ │ │ │ ├── DefaultBlockWorkerClient.java
│ │ │ │ │ │ ├── GrpcBlockingStream.java
│ │ │ │ │ │ ├── GrpcDataMessageBlockingStream.java
│ │ │ │ │ │ ├── GrpcDataReader.java
│ │ │ │ │ │ ├── GrpcDataWriter.java
│ │ │ │ │ │ ├── LocalFileDataReader.java
│ │ │ │ │ │ ├── LocalFileDataWriter.java
│ │ │ │ │ │ ├── SharedGrpcDataReader.java
│ │ │ │ │ │ ├── StreamSerializationClientInterceptor.java
│ │ │ │ │ │ ├── UfsFallbackLocalFileDataWriter.java
│ │ │ │ │ │ └── UnderFileSystemFileOutStream.java
│ │ │ │ │ └── util
│ │ │ │ │ │ ├── BlockLocationUtils.java
│ │ │ │ │ │ └── WorkerInfoUtil.java
│ │ │ │ ├── file
│ │ │ │ │ ├── AlluxioFileInStream.java
│ │ │ │ │ ├── AlluxioFileOutStream.java
│ │ │ │ │ ├── BaseFileSystem.java
│ │ │ │ │ ├── ConfigHashSync.java
│ │ │ │ │ ├── DelegatingFileSystem.java
│ │ │ │ │ ├── FileInStream.java
│ │ │ │ │ ├── FileOutStream.java
│ │ │ │ │ ├── FileSystem.java
│ │ │ │ │ ├── FileSystemCache.java
│ │ │ │ │ ├── FileSystemContext.java
│ │ │ │ │ ├── FileSystemContextReinitializer.java
│ │ │ │ │ ├── FileSystemMasterClient.java
│ │ │ │ │ ├── FileSystemMasterClientPool.java
│ │ │ │ │ ├── FileSystemUtils.java
│ │ │ │ │ ├── MetadataCache.java
│ │ │ │ │ ├── MetadataCachingFileSystem.java
│ │ │ │ │ ├── RetryHandlingFileSystemMasterClient.java
│ │ │ │ │ ├── cache
│ │ │ │ │ │ ├── CacheManager.java
│ │ │ │ │ │ ├── CacheManagerOptions.java
│ │ │ │ │ │ ├── CacheManagerWithShadowCache.java
│ │ │ │ │ │ ├── CacheStatus.java
│ │ │ │ │ │ ├── CacheUsage.java
│ │ │ │ │ │ ├── CacheUsageView.java
│ │ │ │ │ │ ├── ClockCuckooShadowCacheManager.java
│ │ │ │ │ │ ├── DefaultPageMetaStore.java
│ │ │ │ │ │ ├── LocalCacheFileInStream.java
│ │ │ │ │ │ ├── LocalCacheFileSystem.java
│ │ │ │ │ │ ├── LocalCacheManager.java
│ │ │ │ │ │ ├── MultipleBloomShadowCacheManager.java
│ │ │ │ │ │ ├── NoExceptionCacheManager.java
│ │ │ │ │ │ ├── PageId.java
│ │ │ │ │ │ ├── PageInfo.java
│ │ │ │ │ │ ├── PageMetaStore.java
│ │ │ │ │ │ ├── PageStore.java
│ │ │ │ │ │ ├── QuotaPageMetaStore.java
│ │ │ │ │ │ ├── ShadowCacheManager.java
│ │ │ │ │ │ ├── TimeBoundPageStore.java
│ │ │ │ │ │ ├── allocator
│ │ │ │ │ │ │ ├── AffinityHashAllocator.java
│ │ │ │ │ │ │ ├── Allocator.java
│ │ │ │ │ │ │ └── HashAllocator.java
│ │ │ │ │ │ ├── context
│ │ │ │ │ │ │ └── CachePerThreadContext.java
│ │ │ │ │ │ ├── cuckoofilter
│ │ │ │ │ │ │ ├── ClockCuckooFilter.java
│ │ │ │ │ │ │ ├── ConcurrentClockCuckooFilter.java
│ │ │ │ │ │ │ ├── CuckooStatus.java
│ │ │ │ │ │ │ ├── CuckooTable.java
│ │ │ │ │ │ │ ├── CuckooUtils.java
│ │ │ │ │ │ │ ├── ScopeEncoder.java
│ │ │ │ │ │ │ ├── SegmentedLock.java
│ │ │ │ │ │ │ ├── SimpleCuckooTable.java
│ │ │ │ │ │ │ ├── SizeEncoder.java
│ │ │ │ │ │ │ ├── SlidingWindowType.java
│ │ │ │ │ │ │ └── TagPosition.java
│ │ │ │ │ │ ├── evictor
│ │ │ │ │ │ │ ├── CacheEvictor.java
│ │ │ │ │ │ │ ├── CacheEvictorOptions.java
│ │ │ │ │ │ │ ├── FIFOCacheEvictor.java
│ │ │ │ │ │ │ ├── LFUCacheEvictor.java
│ │ │ │ │ │ │ ├── LRUCacheEvictor.java
│ │ │ │ │ │ │ ├── NondeterministicLRUCacheEvictor.java
│ │ │ │ │ │ │ ├── TwoChoiceRandomEvictor.java
│ │ │ │ │ │ │ └── UnevictableCacheEvictor.java
│ │ │ │ │ │ ├── filter
│ │ │ │ │ │ │ ├── CacheFilter.java
│ │ │ │ │ │ │ └── DefaultCacheFilter.java
│ │ │ │ │ │ └── store
│ │ │ │ │ │ │ ├── ByteArrayTargetBuffer.java
│ │ │ │ │ │ │ ├── ByteBufferTargetBuffer.java
│ │ │ │ │ │ │ ├── LocalPageStore.java
│ │ │ │ │ │ │ ├── LocalPageStoreDir.java
│ │ │ │ │ │ │ ├── MemoryPageStore.java
│ │ │ │ │ │ │ ├── MemoryPageStoreDir.java
│ │ │ │ │ │ │ ├── PageReadTargetBuffer.java
│ │ │ │ │ │ │ ├── PageStoreDir.java
│ │ │ │ │ │ │ ├── PageStoreOptions.java
│ │ │ │ │ │ │ ├── QuotaManagedPageStoreDir.java
│ │ │ │ │ │ │ ├── RocksPageStore.java
│ │ │ │ │ │ │ └── RocksPageStoreDir.java
│ │ │ │ │ ├── options
│ │ │ │ │ │ ├── FileSystemOptions.java
│ │ │ │ │ │ ├── InStreamOptions.java
│ │ │ │ │ │ ├── OutStreamOptions.java
│ │ │ │ │ │ └── UfsFileSystemOptions.java
│ │ │ │ │ └── ufs
│ │ │ │ │ │ ├── UfsBaseFileSystem.java
│ │ │ │ │ │ ├── UfsFileInStream.java
│ │ │ │ │ │ └── UfsFileOutStream.java
│ │ │ │ ├── journal
│ │ │ │ │ ├── JournalMasterClient.java
│ │ │ │ │ └── RetryHandlingJournalMasterClient.java
│ │ │ │ ├── meta
│ │ │ │ │ ├── MetaMasterClient.java
│ │ │ │ │ ├── MetaMasterConfigClient.java
│ │ │ │ │ ├── RetryHandlingMetaMasterClient.java
│ │ │ │ │ └── RetryHandlingMetaMasterConfigClient.java
│ │ │ │ └── metrics
│ │ │ │ │ ├── ClientMasterSync.java
│ │ │ │ │ ├── MetricsHeartbeatContext.java
│ │ │ │ │ ├── MetricsMasterClient.java
│ │ │ │ │ └── RetryHandlingMetricsMasterClient.java
│ │ │ │ └── util
│ │ │ │ └── FileSystemOptionsUtils.java
│ │ │ └── test
│ │ │ ├── java
│ │ │ └── alluxio
│ │ │ │ ├── client
│ │ │ │ ├── block
│ │ │ │ │ ├── BlockMasterClientPoolTest.java
│ │ │ │ │ ├── BlockStoreClientTest.java
│ │ │ │ │ ├── options
│ │ │ │ │ │ └── GetWorkerReportOptionsTest.java
│ │ │ │ │ ├── policy
│ │ │ │ │ │ ├── CapacityBaseRandomPolicyTest.java
│ │ │ │ │ │ ├── CapacityBasedDeterministicHashPolicyTest.java
│ │ │ │ │ │ ├── DeterministicHashPolicyTest.java
│ │ │ │ │ │ ├── LocalFirstAvoidEvictionPolicyTest.java
│ │ │ │ │ │ ├── LocalFirstPolicyTest.java
│ │ │ │ │ │ ├── MostAvailableFirstPolicyTest.java
│ │ │ │ │ │ ├── RoundRobinPolicyTest.java
│ │ │ │ │ │ ├── SpecificHostPolicyTest.java
│ │ │ │ │ │ └── options
│ │ │ │ │ │ │ └── GetWorkerOptionsTest.java
│ │ │ │ │ ├── stream
│ │ │ │ │ │ ├── BlockInStreamTest.java
│ │ │ │ │ │ ├── BlockOutStreamTest.java
│ │ │ │ │ │ ├── BufferCachingGrpcDataReaderTest.java
│ │ │ │ │ │ ├── FailingTestDataWriter.java
│ │ │ │ │ │ ├── GrpcBlockingStreamTest.java
│ │ │ │ │ │ ├── GrpcDataReaderTest.java
│ │ │ │ │ │ ├── GrpcDataWriterTest.java
│ │ │ │ │ │ ├── LocalFileDataWriterTest.java
│ │ │ │ │ │ ├── NoopClosableResource.java
│ │ │ │ │ │ ├── SharedGrpcDataReaderTest.java
│ │ │ │ │ │ ├── TestBlockInStream.java
│ │ │ │ │ │ ├── TestBlockOutStream.java
│ │ │ │ │ │ ├── TestBufferCachingGrpcDataReader.java
│ │ │ │ │ │ ├── TestDataReader.java
│ │ │ │ │ │ ├── TestDataWriter.java
│ │ │ │ │ │ └── TestUnderFileSystemFileOutStream.java
│ │ │ │ │ └── util
│ │ │ │ │ │ └── BlockLocationUtilsTest.java
│ │ │ │ ├── file
│ │ │ │ │ ├── AlluxioFileInStreamTest.java
│ │ │ │ │ ├── BaseFileSystemTest.java
│ │ │ │ │ ├── DelegatingFileSystemTest.java
│ │ │ │ │ ├── FileOutStreamTest.java
│ │ │ │ │ ├── FileSystemCacheTest.java
│ │ │ │ │ ├── FileSystemContextTest.java
│ │ │ │ │ ├── FileSystemFactoryTest.java
│ │ │ │ │ ├── FileSystemMasterClientPoolTest.java
│ │ │ │ │ ├── FileSystemTestBase.java
│ │ │ │ │ ├── FileSystemTestUtils.java
│ │ │ │ │ ├── MetadataCacheTest.java
│ │ │ │ │ ├── MetadataCachingFileSystemTest.java
│ │ │ │ │ ├── MockFileInStream.java
│ │ │ │ │ ├── MockFileOutStream.java
│ │ │ │ │ ├── MockFileSystemMasterClient.java
│ │ │ │ │ ├── cache
│ │ │ │ │ │ ├── CacheManagerTest.java
│ │ │ │ │ │ ├── CacheManagerWithShadowCacheTest.java
│ │ │ │ │ │ ├── ClockCuckooShadowCacheManagerTest.java
│ │ │ │ │ │ ├── DefaultMetaStoreTest.java
│ │ │ │ │ │ ├── FIFOCacheEvictorTest.java
│ │ │ │ │ │ ├── HangingPageStore.java
│ │ │ │ │ │ ├── LFUCacheEvictorTest.java
│ │ │ │ │ │ ├── LRUCacheEvictorTest.java
│ │ │ │ │ │ ├── LocalCacheFileInStreamTest.java
│ │ │ │ │ │ ├── LocalCacheManagerTest.java
│ │ │ │ │ │ ├── LocalCacheManagerWithMemPageStoreTest.java
│ │ │ │ │ │ ├── MultipleBloomShadowCacheManagerTest.java
│ │ │ │ │ │ ├── NondeterministicLRUCacheEvictorTest.java
│ │ │ │ │ │ ├── QuotaPageMetaStoreTest.java
│ │ │ │ │ │ ├── TimeBoundPageStoreTest.java
│ │ │ │ │ │ ├── TwoChoiceRandomEvictorTest.java
│ │ │ │ │ │ ├── allocator
│ │ │ │ │ │ │ ├── AffinityHashAllocatorTest.java
│ │ │ │ │ │ │ └── HashAllocatorTest.java
│ │ │ │ │ │ ├── cuckoofilter
│ │ │ │ │ │ │ ├── ConcurrentClockCuckooFilterTest.java
│ │ │ │ │ │ │ ├── CuckooUtilsTest.java
│ │ │ │ │ │ │ ├── ScopeEncoderTest.java
│ │ │ │ │ │ │ ├── SegmentedLockTest.java
│ │ │ │ │ │ │ ├── SimpleCuckooTableTest.java
│ │ │ │ │ │ │ └── SizeEncoderTest.java
│ │ │ │ │ │ └── store
│ │ │ │ │ │ │ ├── LocalPageStoreTest.java
│ │ │ │ │ │ │ ├── MemoryPageStoreTest.java
│ │ │ │ │ │ │ ├── PageStoreDirTest.java
│ │ │ │ │ │ │ └── PageStoreTest.java
│ │ │ │ │ ├── options
│ │ │ │ │ │ └── OutStreamOptionsTest.java
│ │ │ │ │ └── ufs
│ │ │ │ │ │ ├── UfsBaseFileSystemTest.java
│ │ │ │ │ │ ├── UfsFileInStreamTest.java
│ │ │ │ │ │ └── UfsFileOutStreamTest.java
│ │ │ │ ├── metrics
│ │ │ │ │ └── MetricsHeartbeatContextTest.java
│ │ │ │ └── util
│ │ │ │ │ └── ClientTestUtils.java
│ │ │ │ └── util
│ │ │ │ └── FileSystemOptionsUtilsTest.java
│ │ │ └── resources
│ │ │ └── log4j.properties
│ ├── hdfs
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── alluxio
│ │ │ │ │ └── hadoop
│ │ │ │ │ ├── AbstractFileSystem.java
│ │ │ │ │ ├── AlluxioFileStatus.java
│ │ │ │ │ ├── AlluxioFileSystem.java
│ │ │ │ │ ├── AlluxioHdfsInputStream.java
│ │ │ │ │ ├── BaseHdfsFileInputStream.java
│ │ │ │ │ ├── FileSystem.java
│ │ │ │ │ ├── HadoopConfigurationUtils.java
│ │ │ │ │ ├── HadoopFileOpener.java
│ │ │ │ │ ├── HadoopUtils.java
│ │ │ │ │ ├── HdfsFileInputStream.java
│ │ │ │ │ └── LocalCacheFileSystem.java
│ │ │ └── resources
│ │ │ │ └── META-INF
│ │ │ │ └── services
│ │ │ │ └── org.apache.hadoop.fs.FileSystem
│ │ │ └── test
│ │ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── hadoop
│ │ │ │ ├── AbstractFileSystemApiTest.java
│ │ │ │ ├── AbstractFileSystemTest.java
│ │ │ │ ├── HadoopClientTestUtils.java
│ │ │ │ ├── HadoopConfigurationUtilsTest.java
│ │ │ │ └── HadoopUtilsTest.java
│ │ │ └── resources
│ │ │ └── log4j.properties
│ ├── hdfs3
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── java
│ │ │ └── alluxio
│ │ │ └── hadoop
│ │ │ └── HdfsFileInputStream.java
│ └── pom.xml
├── common
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java-templates
│ │ │ └── alluxio
│ │ │ │ └── ProjectConstants.java
│ │ └── java
│ │ │ └── alluxio
│ │ │ ├── AbstractClient.java
│ │ │ ├── AbstractJobMasterClient.java
│ │ │ ├── AbstractMasterClient.java
│ │ │ ├── AlluxioRemoteLogFilter.java
│ │ │ ├── AlluxioURI.java
│ │ │ ├── Client.java
│ │ │ ├── ClientContext.java
│ │ │ ├── Constants.java
│ │ │ ├── DefaultSupplier.java
│ │ │ ├── HealthCheckClient.java
│ │ │ ├── Positioned.java
│ │ │ ├── RuntimeConstants.java
│ │ │ ├── Seekable.java
│ │ │ ├── Server.java
│ │ │ ├── SessionInfo.java
│ │ │ ├── Sessions.java
│ │ │ ├── StorageTierAssoc.java
│ │ │ ├── SyncInfo.java
│ │ │ ├── annotation
│ │ │ ├── PublicApi.java
│ │ │ └── SuppressFBWarnings.java
│ │ │ ├── check
│ │ │ └── UpdateCheck.java
│ │ │ ├── cli
│ │ │ ├── AbstractShell.java
│ │ │ ├── AbstractValidationTask.java
│ │ │ ├── Command.java
│ │ │ ├── CommandUtils.java
│ │ │ ├── RunTestUtils.java
│ │ │ ├── ValidationConfig.java
│ │ │ ├── ValidationResults.java
│ │ │ ├── ValidationTask.java
│ │ │ ├── ValidationTaskResult.java
│ │ │ ├── ValidationTool.java
│ │ │ ├── ValidationToolFactory.java
│ │ │ ├── ValidationToolRegistry.java
│ │ │ └── ValidationUtils.java
│ │ │ ├── client
│ │ │ ├── AlluxioStorageType.java
│ │ │ ├── ReadType.java
│ │ │ ├── UnderStorageType.java
│ │ │ ├── WriteType.java
│ │ │ ├── file
│ │ │ │ ├── CacheContext.java
│ │ │ │ ├── ListStatusPartialResult.java
│ │ │ │ ├── URIStatus.java
│ │ │ │ └── cache
│ │ │ │ │ ├── ShadowCacheType.java
│ │ │ │ │ └── store
│ │ │ │ │ └── PageStoreType.java
│ │ │ ├── hive
│ │ │ │ └── HiveCacheContext.java
│ │ │ └── quota
│ │ │ │ ├── CacheQuota.java
│ │ │ │ └── CacheScope.java
│ │ │ ├── clock
│ │ │ ├── ElapsedTimeClock.java
│ │ │ └── SystemClock.java
│ │ │ ├── collections
│ │ │ ├── BitSet.java
│ │ │ ├── BuiltinBitSet.java
│ │ │ ├── ConcurrentHashSet.java
│ │ │ ├── ConcurrentIdentityHashMap.java
│ │ │ ├── DelegatingSet.java
│ │ │ ├── DirectedAcyclicGraph.java
│ │ │ ├── DirectedAcyclicGraphNode.java
│ │ │ ├── FieldIndex.java
│ │ │ ├── IndexDefinition.java
│ │ │ ├── IndexedSet.java
│ │ │ ├── LockPool.java
│ │ │ ├── NonUniqueFieldIndex.java
│ │ │ ├── Pair.java
│ │ │ ├── PrefixList.java
│ │ │ ├── TwoKeyConcurrentMap.java
│ │ │ ├── TwoKeyConcurrentSortedMap.java
│ │ │ ├── UniqueFieldIndex.java
│ │ │ └── UnmodifiableArrayList.java
│ │ │ ├── concurrent
│ │ │ ├── ClientRWLock.java
│ │ │ ├── CountingLatch.java
│ │ │ ├── ForkJoinPoolHelper.java
│ │ │ ├── LockMode.java
│ │ │ ├── ManagedBlockingUfsForwarder.java
│ │ │ └── jsr
│ │ │ │ ├── CompletableFuture.java
│ │ │ │ ├── CompletionStage.java
│ │ │ │ ├── CountedCompleter.java
│ │ │ │ ├── ForkJoinPool.java
│ │ │ │ ├── ForkJoinTask.java
│ │ │ │ ├── ForkJoinWorkerThread.java
│ │ │ │ ├── TLRandom.java
│ │ │ │ └── UnsafeAccess.java
│ │ │ ├── conf
│ │ │ ├── AlluxioConfiguration.java
│ │ │ ├── AlluxioProperties.java
│ │ │ ├── Configuration.java
│ │ │ ├── ConfigurationBuilder.java
│ │ │ ├── ConfigurationValueOptions.java
│ │ │ ├── CredentialPropertyKeys.java
│ │ │ ├── Deprecated.java
│ │ │ ├── DeprecatedKeyChecker.java
│ │ │ ├── Hash.java
│ │ │ ├── InstancedConfiguration.java
│ │ │ ├── OverlayConfiguration.java
│ │ │ ├── PropertyKey.java
│ │ │ ├── Reconfigurable.java
│ │ │ ├── ReconfigurableRegistry.java
│ │ │ ├── RemovedKey.java
│ │ │ ├── SensitiveConfigMask.java
│ │ │ ├── Source.java
│ │ │ └── path
│ │ │ │ ├── PathConfiguration.java
│ │ │ │ ├── PathMatcher.java
│ │ │ │ ├── PrefixPathConfiguration.java
│ │ │ │ ├── PrefixPathMatcher.java
│ │ │ │ ├── SpecificPathConfiguration.java
│ │ │ │ └── TrieNode.java
│ │ │ ├── exception
│ │ │ ├── AccessControlException.java
│ │ │ ├── AggregateException.java
│ │ │ ├── AlluxioException.java
│ │ │ ├── BackupAbortedException.java
│ │ │ ├── BackupDelegationException.java
│ │ │ ├── BackupException.java
│ │ │ ├── BlockAlreadyExistsException.java
│ │ │ ├── BlockInfoException.java
│ │ │ ├── BusyException.java
│ │ │ ├── ConnectionFailedException.java
│ │ │ ├── DirectoryNotEmptyException.java
│ │ │ ├── ExceptionMessage.java
│ │ │ ├── FailedToAcquireRegisterLeaseException.java
│ │ │ ├── FileAlreadyCompletedException.java
│ │ │ ├── FileAlreadyExistsException.java
│ │ │ ├── FileDoesNotExistException.java
│ │ │ ├── FileIncompleteException.java
│ │ │ ├── InvalidFileSizeException.java
│ │ │ ├── InvalidPathException.java
│ │ │ ├── InvalidWorkerStateException.java
│ │ │ ├── JobDoesNotExistException.java
│ │ │ ├── JournalClosedException.java
│ │ │ ├── OpenDirectoryException.java
│ │ │ ├── PageCorruptedException.java
│ │ │ ├── PageNotFoundException.java
│ │ │ ├── PreconditionMessage.java
│ │ │ ├── RegisterLeaseNotFoundException.java
│ │ │ ├── ServiceNotFoundException.java
│ │ │ ├── UfsBlockAccessTokenUnavailableException.java
│ │ │ ├── UnexpectedAlluxioException.java
│ │ │ ├── runtime
│ │ │ │ ├── AlluxioRuntimeException.java
│ │ │ │ ├── AlreadyExistsRuntimeException.java
│ │ │ │ ├── BlockDoesNotExistRuntimeException.java
│ │ │ │ ├── CancelledRuntimeException.java
│ │ │ │ ├── DeadlineExceededRuntimeException.java
│ │ │ │ ├── FailedPreconditionRuntimeException.java
│ │ │ │ ├── InternalRuntimeException.java
│ │ │ │ ├── InvalidArgumentRuntimeException.java
│ │ │ │ ├── NotFoundRuntimeException.java
│ │ │ │ ├── OutOfRangeRuntimeException.java
│ │ │ │ ├── PermissionDeniedRuntimeException.java
│ │ │ │ ├── ResourceExhaustedRuntimeException.java
│ │ │ │ ├── UnauthenticatedRuntimeException.java
│ │ │ │ ├── UnavailableRuntimeException.java
│ │ │ │ ├── UnimplementedRuntimeException.java
│ │ │ │ └── UnknownRuntimeException.java
│ │ │ └── status
│ │ │ │ ├── AbortedException.java
│ │ │ │ ├── AlluxioStatusException.java
│ │ │ │ ├── AlreadyExistsException.java
│ │ │ │ ├── CancelledException.java
│ │ │ │ ├── DataLossException.java
│ │ │ │ ├── DeadlineExceededException.java
│ │ │ │ ├── FailedPreconditionException.java
│ │ │ │ ├── InternalException.java
│ │ │ │ ├── InvalidArgumentException.java
│ │ │ │ ├── NotFoundException.java
│ │ │ │ ├── OutOfRangeException.java
│ │ │ │ ├── PermissionDeniedException.java
│ │ │ │ ├── ResourceExhaustedException.java
│ │ │ │ ├── UnauthenticatedException.java
│ │ │ │ ├── UnavailableException.java
│ │ │ │ ├── UnimplementedException.java
│ │ │ │ └── UnknownException.java
│ │ │ ├── executor
│ │ │ ├── RpcExecutorType.java
│ │ │ └── ThreadPoolExecutorQueueType.java
│ │ │ ├── extensions
│ │ │ ├── ExtensionFactory.java
│ │ │ ├── ExtensionFactoryRegistry.java
│ │ │ └── ExtensionsClassLoader.java
│ │ │ ├── file
│ │ │ ├── ByteArrayTargetBuffer.java
│ │ │ ├── ByteBufferTargetBuffer.java
│ │ │ ├── NettyBufTargetBuffer.java
│ │ │ ├── ReadTargetBuffer.java
│ │ │ └── options
│ │ │ │ ├── DescendantType.java
│ │ │ │ └── DirectoryLoadType.java
│ │ │ ├── grpc
│ │ │ ├── BufferRepository.java
│ │ │ ├── ClientVersionClientInjector.java
│ │ │ ├── DataMessage.java
│ │ │ ├── DataMessageMarshaller.java
│ │ │ ├── DataMessageMarshallerProvider.java
│ │ │ ├── GrpcChannel.java
│ │ │ ├── GrpcChannelBuilder.java
│ │ │ ├── GrpcChannelKey.java
│ │ │ ├── GrpcChannelPool.java
│ │ │ ├── GrpcExceptionUtils.java
│ │ │ ├── GrpcNetworkGroup.java
│ │ │ ├── GrpcSerializationUtils.java
│ │ │ ├── GrpcServer.java
│ │ │ ├── GrpcServerAddress.java
│ │ │ ├── GrpcServerBuilder.java
│ │ │ ├── GrpcService.java
│ │ │ ├── GrpcUtils.java
│ │ │ ├── ReadResponseMarshaller.java
│ │ │ ├── ReadableDataBuffer.java
│ │ │ ├── ServiceVersionClientServiceHandler.java
│ │ │ └── WriteRequestMarshaller.java
│ │ │ ├── heartbeat
│ │ │ ├── CronExpressionIntervalSupplier.java
│ │ │ ├── FixedIntervalSupplier.java
│ │ │ ├── HeartbeatContext.java
│ │ │ ├── HeartbeatExecutor.java
│ │ │ ├── HeartbeatScheduler.java
│ │ │ ├── HeartbeatThread.java
│ │ │ ├── HeartbeatTimer.java
│ │ │ ├── ScheduledTimer.java
│ │ │ ├── SleepIntervalSupplier.java
│ │ │ └── SleepingTimer.java
│ │ │ ├── job
│ │ │ ├── CopyJobRequest.java
│ │ │ ├── JobDescription.java
│ │ │ ├── JobRequest.java
│ │ │ └── LoadJobRequest.java
│ │ │ ├── master
│ │ │ ├── GraceMode.java
│ │ │ ├── MasterClientContext.java
│ │ │ ├── MasterClientContextBuilder.java
│ │ │ ├── MasterInquireClient.java
│ │ │ ├── PollingMasterInquireClient.java
│ │ │ ├── SingleMasterInquireClient.java
│ │ │ ├── WorkerState.java
│ │ │ ├── ZkMasterInquireClient.java
│ │ │ ├── ZookeeperConnectionErrorPolicy.java
│ │ │ ├── block
│ │ │ │ └── BlockId.java
│ │ │ ├── file
│ │ │ │ ├── MetadataSyncTraversalOrder.java
│ │ │ │ └── meta
│ │ │ │ │ ├── PersistenceState.java
│ │ │ │ │ └── xattr
│ │ │ │ │ ├── AbstractExtendedAttribute.java
│ │ │ │ │ └── ExtendedAttribute.java
│ │ │ ├── journal
│ │ │ │ └── JournalType.java
│ │ │ ├── metastore
│ │ │ │ ├── MetastoreType.java
│ │ │ │ └── rocks
│ │ │ │ │ ├── DataBlockIndexType.java
│ │ │ │ │ ├── IndexType.java
│ │ │ │ │ ├── RocksExclusiveLockHandle.java
│ │ │ │ │ ├── RocksSharedLockHandle.java
│ │ │ │ │ └── RocksUtils.java
│ │ │ └── selectionpolicy
│ │ │ │ ├── AbstractMasterSelectionPolicy.java
│ │ │ │ ├── MasterSelectionPolicy.java
│ │ │ │ ├── SelectionPolicyAnyMaster.java
│ │ │ │ ├── SelectionPolicyAnyStandbyMaster.java
│ │ │ │ ├── SelectionPolicyPrimaryMaster.java
│ │ │ │ └── SelectionPolicySpecifiedMaster.java
│ │ │ ├── metrics
│ │ │ ├── InstrumentedExecutorService.java
│ │ │ ├── MaxReservoir.java
│ │ │ ├── Metric.java
│ │ │ ├── MetricInfo.java
│ │ │ ├── MetricKey.java
│ │ │ ├── MetricsAggregator.java
│ │ │ ├── MetricsConfig.java
│ │ │ ├── MetricsFilter.java
│ │ │ ├── MetricsSystem.java
│ │ │ ├── MultiDimensionalMetricsSystem.java
│ │ │ ├── MultiValueMetricsAggregator.java
│ │ │ ├── OperationSystemGaugeSet.java
│ │ │ ├── SingleValueAggregator.java
│ │ │ ├── TimeSeries.java
│ │ │ ├── aggregator
│ │ │ │ └── SingleTagValueAggregator.java
│ │ │ ├── sink
│ │ │ │ ├── ConsoleSink.java
│ │ │ │ ├── CsvSink.java
│ │ │ │ ├── GraphiteSink.java
│ │ │ │ ├── JmxSink.java
│ │ │ │ ├── RegexMetricFilter.java
│ │ │ │ ├── Sink.java
│ │ │ │ └── Slf4jSink.java
│ │ │ └── source
│ │ │ │ ├── JvmSource.java
│ │ │ │ └── Source.java
│ │ │ ├── network
│ │ │ ├── ChannelType.java
│ │ │ ├── RejectingServer.java
│ │ │ ├── TieredIdentityFactory.java
│ │ │ └── protocol
│ │ │ │ └── databuffer
│ │ │ │ ├── DataBuffer.java
│ │ │ │ ├── DataFileChannel.java
│ │ │ │ ├── NettyDataBuffer.java
│ │ │ │ ├── NioDataBuffer.java
│ │ │ │ ├── NioDirectBufferPool.java
│ │ │ │ ├── NioHeapBufferPool.java
│ │ │ │ ├── PooledDirectNioByteBuf.java
│ │ │ │ └── RefCountedNioByteBuf.java
│ │ │ ├── recorder
│ │ │ ├── NoopRecorder.java
│ │ │ └── Recorder.java
│ │ │ ├── refresh
│ │ │ ├── RefreshPolicy.java
│ │ │ └── TimeoutRefresh.java
│ │ │ ├── resource
│ │ │ ├── AlluxioResourceLeakDetector.java
│ │ │ ├── AlluxioResourceLeakDetectorFactory.java
│ │ │ ├── CloseableIterator.java
│ │ │ ├── CloseableResource.java
│ │ │ ├── DynamicResourcePool.java
│ │ │ ├── LockResource.java
│ │ │ ├── NoopCloseable.java
│ │ │ ├── Pool.java
│ │ │ ├── RWLockResource.java
│ │ │ ├── RefCountLockResource.java
│ │ │ └── ResourcePool.java
│ │ │ ├── retry
│ │ │ ├── CountingRetry.java
│ │ │ ├── ExponentialBackoffRetry.java
│ │ │ ├── ExponentialTimeBoundedRetry.java
│ │ │ ├── RetryPolicy.java
│ │ │ ├── RetryUtils.java
│ │ │ ├── SleepingRetry.java
│ │ │ ├── TimeBoundedRetry.java
│ │ │ ├── TimeoutRetry.java
│ │ │ └── package-info.java
│ │ │ ├── security
│ │ │ ├── CurrentUser.java
│ │ │ ├── User.java
│ │ │ ├── authentication
│ │ │ │ ├── AbstractSaslClientHandler.java
│ │ │ │ ├── AbstractSaslServerHandler.java
│ │ │ │ ├── AuthType.java
│ │ │ │ ├── AuthenticatedChannelClientDriver.java
│ │ │ │ ├── AuthenticatedChannelServerDriver.java
│ │ │ │ ├── AuthenticatedClientUser.java
│ │ │ │ ├── AuthenticatedUserInfo.java
│ │ │ │ ├── AuthenticatedUserInjector.java
│ │ │ │ ├── AuthenticationProvider.java
│ │ │ │ ├── AuthenticationServer.java
│ │ │ │ ├── AuthenticationUtils.java
│ │ │ │ ├── ChannelIdInjector.java
│ │ │ │ ├── ClientContextServerInjector.java
│ │ │ │ ├── DefaultAuthenticationServer.java
│ │ │ │ ├── ImpersonationAuthenticator.java
│ │ │ │ ├── SaslClientHandler.java
│ │ │ │ ├── SaslServerHandler.java
│ │ │ │ └── plain
│ │ │ │ │ ├── CustomAuthenticationProvider.java
│ │ │ │ │ ├── PlainSaslClientCallbackHandler.java
│ │ │ │ │ ├── PlainSaslServer.java
│ │ │ │ │ ├── PlainSaslServerCallbackHandler.java
│ │ │ │ │ ├── PlainSaslServerProvider.java
│ │ │ │ │ ├── SaslClientHandlerPlain.java
│ │ │ │ │ ├── SaslServerHandlerPlain.java
│ │ │ │ │ └── SimpleAuthenticationProvider.java
│ │ │ ├── authorization
│ │ │ │ ├── AccessControlList.java
│ │ │ │ ├── AclAction.java
│ │ │ │ ├── AclActions.java
│ │ │ │ ├── AclEntry.java
│ │ │ │ ├── AclEntryType.java
│ │ │ │ ├── DefaultAccessControlList.java
│ │ │ │ ├── ExtendedACLEntries.java
│ │ │ │ ├── Mode.java
│ │ │ │ └── ModeParser.java
│ │ │ ├── group
│ │ │ │ ├── CachedGroupMapping.java
│ │ │ │ ├── GroupMappingService.java
│ │ │ │ └── provider
│ │ │ │ │ ├── IdentityUserGroupsMapping.java
│ │ │ │ │ └── ShellBasedUnixGroupsMapping.java
│ │ │ ├── login
│ │ │ │ ├── AlluxioLoginModule.java
│ │ │ │ ├── AppLoginModule.java
│ │ │ │ ├── LoginModuleConfiguration.java
│ │ │ │ └── LoginModuleConfigurationUtils.java
│ │ │ └── user
│ │ │ │ ├── BaseUserState.java
│ │ │ │ ├── NoopUserState.java
│ │ │ │ ├── SimpleUserState.java
│ │ │ │ ├── UserState.java
│ │ │ │ └── UserStateFactory.java
│ │ │ ├── shell
│ │ │ ├── CommandReturn.java
│ │ │ ├── ScpCommand.java
│ │ │ ├── ShellCommand.java
│ │ │ └── SshCommand.java
│ │ │ ├── thread
│ │ │ └── AutopsyThread.java
│ │ │ ├── time
│ │ │ ├── ExponentialTimer.java
│ │ │ ├── Sleeper.java
│ │ │ ├── SteppingThreadSleeper.java
│ │ │ ├── ThreadSleeper.java
│ │ │ └── TimeContext.java
│ │ │ ├── underfs
│ │ │ ├── AtomicFileOutputStream.java
│ │ │ ├── AtomicFileOutputStreamCallback.java
│ │ │ ├── BaseUnderFileSystem.java
│ │ │ ├── ConsistentUnderFileSystem.java
│ │ │ ├── ContentHashable.java
│ │ │ ├── Fingerprint.java
│ │ │ ├── MultiRangeObjectInputStream.java
│ │ │ ├── ObjectLowLevelOutputStream.java
│ │ │ ├── ObjectUnderFileSystem.java
│ │ │ ├── SeekableUnderFileInputStream.java
│ │ │ ├── UfsClient.java
│ │ │ ├── UfsDirectoryStatus.java
│ │ │ ├── UfsFileStatus.java
│ │ │ ├── UfsLoadResult.java
│ │ │ ├── UfsManager.java
│ │ │ ├── UfsMode.java
│ │ │ ├── UfsStatus.java
│ │ │ ├── UnderFileSystem.java
│ │ │ ├── UnderFileSystemConfiguration.java
│ │ │ ├── UnderFileSystemFactory.java
│ │ │ ├── UnderFileSystemFactoryRegistry.java
│ │ │ ├── UnderFileSystemWithLogging.java
│ │ │ └── options
│ │ │ │ ├── CreateOptions.java
│ │ │ │ ├── DeleteOptions.java
│ │ │ │ ├── FileLocationOptions.java
│ │ │ │ ├── GetFileStatusOptions.java
│ │ │ │ ├── ListOptions.java
│ │ │ │ ├── MkdirsOptions.java
│ │ │ │ └── OpenOptions.java
│ │ │ ├── uri
│ │ │ ├── Authority.java
│ │ │ ├── EmbeddedLogicalAuthority.java
│ │ │ ├── MultiMasterAuthority.java
│ │ │ ├── MultiPartSchemeURI.java
│ │ │ ├── NoAuthority.java
│ │ │ ├── SingleMasterAuthority.java
│ │ │ ├── StandardURI.java
│ │ │ ├── URI.java
│ │ │ ├── UnknownAuthority.java
│ │ │ ├── ZookeeperAuthority.java
│ │ │ └── ZookeeperLogicalAuthority.java
│ │ │ ├── util
│ │ │ ├── BucketCounter.java
│ │ │ ├── CRC64.java
│ │ │ ├── CommonUtils.java
│ │ │ ├── ConfigurationUtils.java
│ │ │ ├── EnvironmentUtils.java
│ │ │ ├── ExceptionUtils.java
│ │ │ ├── ExtensionUtils.java
│ │ │ ├── FeatureUtils.java
│ │ │ ├── FormatUtils.java
│ │ │ ├── HFSUtils.java
│ │ │ ├── IdUtils.java
│ │ │ ├── IteratorUtils.java
│ │ │ ├── JsonSerializable.java
│ │ │ ├── JvmPauseMonitor.java
│ │ │ ├── LogUtils.java
│ │ │ ├── ModeUtils.java
│ │ │ ├── OSUtils.java
│ │ │ ├── ObjectSizeCalculator.java
│ │ │ ├── RateLimiter.java
│ │ │ ├── SecurityUtils.java
│ │ │ ├── ShellUtils.java
│ │ │ ├── SimpleRateLimiter.java
│ │ │ ├── SleepUtils.java
│ │ │ ├── StreamUtils.java
│ │ │ ├── ThreadFactoryUtils.java
│ │ │ ├── ThreadUtils.java
│ │ │ ├── TieredIdentityUtils.java
│ │ │ ├── URIUtils.java
│ │ │ ├── UnderFileSystemUtils.java
│ │ │ ├── UnixMountInfo.java
│ │ │ ├── WaitForOptions.java
│ │ │ ├── compression
│ │ │ │ ├── DirectoryMarshaller.java
│ │ │ │ ├── GzipMarshaller.java
│ │ │ │ ├── NoCompressionMarshaller.java
│ │ │ │ ├── ParallelZipUtils.java
│ │ │ │ ├── TarGzMarshaller.java
│ │ │ │ └── TarUtils.java
│ │ │ ├── executor
│ │ │ │ ├── ControllableQueue.java
│ │ │ │ ├── ControllableScheduler.java
│ │ │ │ ├── ExecutorServiceFactories.java
│ │ │ │ ├── ExecutorServiceFactory.java
│ │ │ │ ├── ExecutorServiceUtils.java
│ │ │ │ └── UniqueBlockingQueue.java
│ │ │ ├── interfaces
│ │ │ │ └── Scoped.java
│ │ │ ├── io
│ │ │ │ ├── BufferUtils.java
│ │ │ │ ├── ByteIOUtils.java
│ │ │ │ ├── ChannelAdapters.java
│ │ │ │ ├── FileUtils.java
│ │ │ │ └── PathUtils.java
│ │ │ ├── logging
│ │ │ │ └── SamplingLogger.java
│ │ │ ├── network
│ │ │ │ ├── HttpUtils.java
│ │ │ │ ├── NettyUtils.java
│ │ │ │ ├── NetworkAddressUtils.java
│ │ │ │ └── tls
│ │ │ │ │ ├── DefaultSslContextProvider.java
│ │ │ │ │ └── SslContextProvider.java
│ │ │ ├── proto
│ │ │ │ ├── BlockLocationUtils.java
│ │ │ │ └── ProtoUtils.java
│ │ │ └── webui
│ │ │ │ ├── NodeInfo.java
│ │ │ │ ├── StorageTierInfo.java
│ │ │ │ ├── UIFileBlockInfo.java
│ │ │ │ ├── UIFileInfo.java
│ │ │ │ ├── UIMountPointInfo.java
│ │ │ │ ├── UIStorageDir.java
│ │ │ │ ├── UIUsageOnTier.java
│ │ │ │ ├── UIWorkerInfo.java
│ │ │ │ └── WebUtils.java
│ │ │ ├── wire
│ │ │ ├── Address.java
│ │ │ ├── AlluxioJobMasterInfo.java
│ │ │ ├── AlluxioJobWorkerInfo.java
│ │ │ ├── AlluxioMasterInfo.java
│ │ │ ├── AlluxioProxyInfo.java
│ │ │ ├── AlluxioWorkerInfo.java
│ │ │ ├── BackupStatus.java
│ │ │ ├── BlockInfo.java
│ │ │ ├── BlockLocation.java
│ │ │ ├── BlockLocationInfo.java
│ │ │ ├── BlockMasterInfo.java
│ │ │ ├── BlockReadRequest.java
│ │ │ ├── Capacity.java
│ │ │ ├── CommandType.java
│ │ │ ├── ConfigCheckReport.java
│ │ │ ├── ConfigHash.java
│ │ │ ├── Configuration.java
│ │ │ ├── FileBlockInfo.java
│ │ │ ├── FileInfo.java
│ │ │ ├── FileSystemCommand.java
│ │ │ ├── FileSystemCommandOptions.java
│ │ │ ├── InconsistentProperty.java
│ │ │ ├── JournalDiskInfo.java
│ │ │ ├── LoadMetadataType.java
│ │ │ ├── LogInfo.java
│ │ │ ├── MasterInfo.java
│ │ │ ├── MasterWebUIBrowse.java
│ │ │ ├── MasterWebUIConfiguration.java
│ │ │ ├── MasterWebUIData.java
│ │ │ ├── MasterWebUIInit.java
│ │ │ ├── MasterWebUILogs.java
│ │ │ ├── MasterWebUIMasters.java
│ │ │ ├── MasterWebUIMetrics.java
│ │ │ ├── MasterWebUIMountTable.java
│ │ │ ├── MasterWebUIOverview.java
│ │ │ ├── MasterWebUIWorkers.java
│ │ │ ├── MountPointInfo.java
│ │ │ ├── OperationId.java
│ │ │ ├── PersistCommandOptions.java
│ │ │ ├── PersistFile.java
│ │ │ ├── Property.java
│ │ │ ├── RegisterLease.java
│ │ │ ├── SyncPointInfo.java
│ │ │ ├── TieredIdentity.java
│ │ │ ├── UfsInfo.java
│ │ │ ├── WorkerInfo.java
│ │ │ ├── WorkerNetAddress.java
│ │ │ ├── WorkerWebUIBlockInfo.java
│ │ │ ├── WorkerWebUIConfiguration.java
│ │ │ ├── WorkerWebUIInit.java
│ │ │ ├── WorkerWebUILogs.java
│ │ │ ├── WorkerWebUIMetrics.java
│ │ │ ├── WorkerWebUIOperations.java
│ │ │ └── WorkerWebUIOverview.java
│ │ │ └── worker
│ │ │ ├── SessionCleanable.java
│ │ │ ├── Worker.java
│ │ │ └── block
│ │ │ ├── AllocateOptions.java
│ │ │ ├── BlockHeartbeatReport.java
│ │ │ ├── BlockLock.java
│ │ │ ├── BlockStore.java
│ │ │ ├── BlockStoreEventListener.java
│ │ │ ├── BlockStoreLocation.java
│ │ │ ├── BlockStoreMeta.java
│ │ │ ├── BlockStoreType.java
│ │ │ ├── BlockWorker.java
│ │ │ ├── BlockWorkerMetrics.java
│ │ │ ├── CreateBlockOptions.java
│ │ │ ├── io
│ │ │ ├── BlockClient.java
│ │ │ ├── BlockClientListener.java
│ │ │ ├── BlockReader.java
│ │ │ ├── BlockWriter.java
│ │ │ ├── DelegatingBlockReader.java
│ │ │ ├── LocalFileBlockReader.java
│ │ │ └── LocalFileBlockWriter.java
│ │ │ ├── management
│ │ │ └── BackoffStrategy.java
│ │ │ └── meta
│ │ │ ├── BlockMeta.java
│ │ │ ├── StorageDir.java
│ │ │ ├── StorageTier.java
│ │ │ └── TempBlockMeta.java
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ ├── AbstractClientTest.java
│ │ │ ├── AbstractMasterClientTest.java
│ │ │ ├── AbstractResourceRule.java
│ │ │ ├── AlluxioMockUtil.java
│ │ │ ├── AlluxioTestDirectory.java
│ │ │ ├── AlluxioURITest.java
│ │ │ ├── AuthenticatedClientUserResource.java
│ │ │ ├── AuthenticatedClientUserResourceTest.java
│ │ │ ├── AuthenticatedUserRule.java
│ │ │ ├── AuthenticatedUserRuleTest.java
│ │ │ ├── ConfigurationRule.java
│ │ │ ├── ConfigurationRuleTest.java
│ │ │ ├── ConfigurationTestUtils.java
│ │ │ ├── EmbeddedNoExceptionChannel.java
│ │ │ ├── RedirectOutputRule.java
│ │ │ ├── SessionInfoTest.java
│ │ │ ├── SystemErrRule.java
│ │ │ ├── SystemErrRuleTest.java
│ │ │ ├── SystemOutRule.java
│ │ │ ├── SystemOutRuleTest.java
│ │ │ ├── SystemPropertyRule.java
│ │ │ ├── TestLoggerRule.java
│ │ │ ├── TestLoggerRuleTest.java
│ │ │ ├── UnderFileSystemFactoryRegistryRule.java
│ │ │ ├── UnderFileSystemFactoryRegistryRuleTest.java
│ │ │ ├── check
│ │ │ └── UpdateCheckTest.java
│ │ │ ├── cli
│ │ │ ├── AbstractShellTest.java
│ │ │ └── CommandTest.java
│ │ │ ├── client
│ │ │ ├── file
│ │ │ │ ├── CacheContextTest.java
│ │ │ │ └── URIStatusTest.java
│ │ │ └── quota
│ │ │ │ └── CacheScopeTest.java
│ │ │ ├── clock
│ │ │ └── ManualClock.java
│ │ │ ├── collections
│ │ │ ├── BuiltinBitSetTest.java
│ │ │ ├── ConcurrentIdentityHashMapTest.java
│ │ │ ├── DirectedAcyclicGraphTest.java
│ │ │ ├── IndexedSetConcurrencyTest.java
│ │ │ ├── IndexedSetTest.java
│ │ │ ├── LockPoolTest.java
│ │ │ ├── PairTest.java
│ │ │ ├── PrefixListTest.java
│ │ │ └── UnmodifiableArrayListTest.java
│ │ │ ├── concurrent
│ │ │ ├── ClientRWLockTest.java
│ │ │ └── CountingLatchTest.java
│ │ │ ├── conf
│ │ │ ├── AlluxioPropertiesTest.java
│ │ │ ├── CredentialConfigItemsTest.java
│ │ │ ├── InstancedConfigurationTest.java
│ │ │ ├── PropertyKeyTest.java
│ │ │ ├── SourceTest.java
│ │ │ └── path
│ │ │ │ ├── PrefixPathMatcherTest.java
│ │ │ │ └── TrieNodeTest.java
│ │ │ ├── grpc
│ │ │ ├── GrpcChannelPoolTest.java
│ │ │ ├── GrpcUtilsTest.java
│ │ │ ├── ReadResponseMarshallerTest.java
│ │ │ └── WriteRequestMarshallerTest.java
│ │ │ ├── heartbeat
│ │ │ ├── HeartbeatContextTest.java
│ │ │ ├── HeartbeatThreadTest.java
│ │ │ ├── ManuallyScheduleHeartbeat.java
│ │ │ ├── SleepingTimerForCronExpressionIntervalSupplierTest.java
│ │ │ └── SleepingTimerTest.java
│ │ │ ├── master
│ │ │ ├── MasterInquireClientTest.java
│ │ │ ├── PollingMasterInquireClientTest.java
│ │ │ ├── PortRegistry.java
│ │ │ ├── PortReservationRule.java
│ │ │ ├── PortReservationRuleTest.java
│ │ │ ├── ZkMasterInquireClientTest.java
│ │ │ └── block
│ │ │ │ └── BlockIdTest.java
│ │ │ ├── metrics
│ │ │ ├── MetricTest.java
│ │ │ ├── MetricsConfigTest.java
│ │ │ └── MetricsSystemTest.java
│ │ │ ├── network
│ │ │ └── protocol
│ │ │ │ └── databuffer
│ │ │ │ └── RefCountedNioByteBufTest.java
│ │ │ ├── refresh
│ │ │ └── TimeoutRefreshTest.java
│ │ │ ├── resource
│ │ │ ├── CloseableIteratorTest.java
│ │ │ ├── DummyCloseableResource.java
│ │ │ ├── DynamicResourcePoolTest.java
│ │ │ ├── LockResourceTest.java
│ │ │ └── ResourcePoolTest.java
│ │ │ ├── retry
│ │ │ ├── CountingRetryTest.java
│ │ │ ├── ExponentialBackoffRetryTest.java
│ │ │ ├── ExponentialTimeBoundedRetryTest.java
│ │ │ ├── RetryUtilsTest.java
│ │ │ └── TimeoutRetryTest.java
│ │ │ ├── security
│ │ │ ├── GroupMappingServiceTestUtils.java
│ │ │ ├── UserTest.java
│ │ │ ├── authentication
│ │ │ │ ├── CustomAuthenticationProviderTest.java
│ │ │ │ ├── GrpcSecurityTest.java
│ │ │ │ ├── PlainSaslClientCallbackHandlerTest.java
│ │ │ │ ├── PlainSaslServerCallbackHandlerTest.java
│ │ │ │ ├── PlainSaslServerProviderTest.java
│ │ │ │ ├── PlainSaslServerTest.java
│ │ │ │ ├── SaslHandlersTest.java
│ │ │ │ └── SimpleAuthenticationProviderTest.java
│ │ │ ├── authorization
│ │ │ │ ├── AccessControlListTest.java
│ │ │ │ ├── AclActionsTest.java
│ │ │ │ ├── AclEntryTest.java
│ │ │ │ ├── ModeBitsTest.java
│ │ │ │ ├── ModeParserTest.java
│ │ │ │ └── ModeTest.java
│ │ │ ├── group
│ │ │ │ ├── GroupMappingServiceTest.java
│ │ │ │ ├── IdentityUserGroupsMappingTest.java
│ │ │ │ └── ShellBasedUnixGroupsMappingTest.java
│ │ │ ├── login
│ │ │ │ └── LoginModuleTest.java
│ │ │ └── user
│ │ │ │ ├── TestUserState.java
│ │ │ │ └── UserStateTest.java
│ │ │ ├── shell
│ │ │ └── ShellCommandTest.java
│ │ │ ├── test
│ │ │ └── util
│ │ │ │ ├── CommonTestUtilsTest.java
│ │ │ │ ├── CommonUtils.java
│ │ │ │ └── ConcurrencyUtils.java
│ │ │ ├── time
│ │ │ ├── ExponentialTimerTest.java
│ │ │ ├── ManualSleeper.java
│ │ │ └── ManualSleeperTest.java
│ │ │ ├── underfs
│ │ │ ├── FingerprintTest.java
│ │ │ ├── MockObjectUnderFileSystem.java
│ │ │ ├── ObjectUnderFileSystemTest.java
│ │ │ ├── UfsDirectoryStatusTest.java
│ │ │ ├── UfsFileStatusTest.java
│ │ │ ├── UnderFileSystemConfigurationTest.java
│ │ │ ├── UnderFileSystemTest.java
│ │ │ ├── UnderFileSystemTestUtil.java
│ │ │ └── options
│ │ │ │ ├── CreateOptionsTest.java
│ │ │ │ ├── DeleteOptionsTest.java
│ │ │ │ ├── FileLocationOptionsTest.java
│ │ │ │ ├── ListOptionsTest.java
│ │ │ │ ├── MkdirsOptionsTest.java
│ │ │ │ └── OpenOptionsTest.java
│ │ │ ├── uri
│ │ │ └── AuthorityTest.java
│ │ │ ├── util
│ │ │ ├── BucketCounterTest.java
│ │ │ ├── CommonUtilsTest.java
│ │ │ ├── ConfigurationUtilsTest.java
│ │ │ ├── ExceptionUtilsTest.java
│ │ │ ├── FormatUtilsTest.java
│ │ │ ├── HFSUtilsTest.java
│ │ │ ├── IdUtilsTest.java
│ │ │ ├── JvmPauseMonitorTest.java
│ │ │ ├── LogUtilsTest.java
│ │ │ ├── ObjectSizeCalculatorTest.java
│ │ │ ├── RateLimiterTest.java
│ │ │ ├── SecurityUtilsTest.java
│ │ │ ├── ShellUtilsTest.java
│ │ │ ├── UnderFileSystemUtilsTest.java
│ │ │ ├── WaitForOptionsTest.java
│ │ │ ├── executor
│ │ │ │ ├── ControllableSchedulerTest.java
│ │ │ │ └── UniqueBlockingQueueTest.java
│ │ │ ├── io
│ │ │ │ ├── BufferUtilsTest.java
│ │ │ │ ├── ByteIOUtilsTest.java
│ │ │ │ ├── FileUtilsTest.java
│ │ │ │ └── PathUtilsTest.java
│ │ │ ├── logging
│ │ │ │ └── SamplingLoggerTest.java
│ │ │ ├── network
│ │ │ │ ├── GetMasterWorkerAddressTest.java
│ │ │ │ └── NetworkAddressUtilsTest.java
│ │ │ └── proto
│ │ │ │ └── BlockLocationUtilsTest.java
│ │ │ ├── wire
│ │ │ ├── AlluxioMasterInfoTest.java
│ │ │ ├── AlluxioProxyInfoTest.java
│ │ │ ├── AlluxioWorkerInfoTest.java
│ │ │ ├── BlockInfoTest.java
│ │ │ ├── BlockLocationTest.java
│ │ │ ├── BlockMasterInfoTest.java
│ │ │ ├── CapacityTest.java
│ │ │ ├── FileBlockInfoTest.java
│ │ │ ├── FileInfoTest.java
│ │ │ ├── InconsistentPropertyTest.java
│ │ │ ├── MasterInfoTest.java
│ │ │ ├── MountPointInfoTest.java
│ │ │ ├── TieredIdentityTest.java
│ │ │ ├── WorkerInfoTest.java
│ │ │ └── WorkerNetAddressTest.java
│ │ │ └── worker
│ │ │ └── block
│ │ │ └── io
│ │ │ ├── LocalFileBlockReaderTest.java
│ │ │ ├── LocalFileBlockWriterTest.java
│ │ │ ├── MockBlockReader.java
│ │ │ └── MockBlockWriter.java
│ │ └── resources
│ │ └── log4j.properties
├── pom.xml
├── server
│ ├── common
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ └── java
│ │ │ │ └── alluxio
│ │ │ │ ├── DefaultStorageTierAssoc.java
│ │ │ │ ├── Process.java
│ │ │ │ ├── ProcessUtils.java
│ │ │ │ ├── Registry.java
│ │ │ │ ├── RestUtils.java
│ │ │ │ ├── RpcSensitiveConfigMask.java
│ │ │ │ ├── RpcUtils.java
│ │ │ │ ├── cli
│ │ │ │ ├── Format.java
│ │ │ │ └── extensions
│ │ │ │ │ ├── ExtensionsShell.java
│ │ │ │ │ └── command
│ │ │ │ │ ├── InstallCommand.java
│ │ │ │ │ ├── LsCommand.java
│ │ │ │ │ └── UninstallCommand.java
│ │ │ │ ├── executor
│ │ │ │ └── ExecutorServiceBuilder.java
│ │ │ │ ├── master
│ │ │ │ ├── AbstractMaster.java
│ │ │ │ ├── AbstractPrimarySelector.java
│ │ │ │ ├── AlluxioExecutorService.java
│ │ │ │ ├── AlwaysStandbyPrimarySelector.java
│ │ │ │ ├── BackupManager.java
│ │ │ │ ├── Master.java
│ │ │ │ ├── MasterContext.java
│ │ │ │ ├── MasterFactory.java
│ │ │ │ ├── MasterRegistry.java
│ │ │ │ ├── NoopMaster.java
│ │ │ │ ├── NoopUfsManager.java
│ │ │ │ ├── PrimarySelector.java
│ │ │ │ ├── SafeModeManager.java
│ │ │ │ ├── ServiceUtils.java
│ │ │ │ ├── StateLockManager.java
│ │ │ │ ├── StateLockOptions.java
│ │ │ │ ├── audit
│ │ │ │ │ ├── AsyncUserAccessAuditLogWriter.java
│ │ │ │ │ └── AuditContext.java
│ │ │ │ ├── journal
│ │ │ │ │ ├── AbstractCatchupThread.java
│ │ │ │ │ ├── AbstractJournalProgressLogger.java
│ │ │ │ │ ├── AbstractJournalSystem.java
│ │ │ │ │ ├── AsyncJournalWriter.java
│ │ │ │ │ ├── CatchupFuture.java
│ │ │ │ │ ├── DelegatingJournaled.java
│ │ │ │ │ ├── FileSystemMergeJournalContext.java
│ │ │ │ │ ├── Journal.java
│ │ │ │ │ ├── JournalContext.java
│ │ │ │ │ ├── JournalEntryAssociation.java
│ │ │ │ │ ├── JournalEntryIterable.java
│ │ │ │ │ ├── JournalEntryMerger.java
│ │ │ │ │ ├── JournalEntryRepresentable.java
│ │ │ │ │ ├── JournalEntryStreamReader.java
│ │ │ │ │ ├── JournalFileParser.java
│ │ │ │ │ ├── JournalReader.java
│ │ │ │ │ ├── JournalSystem.java
│ │ │ │ │ ├── JournalUpgrader.java
│ │ │ │ │ ├── JournalUtils.java
│ │ │ │ │ ├── JournalWriter.java
│ │ │ │ │ ├── Journaled.java
│ │ │ │ │ ├── JournaledGroup.java
│ │ │ │ │ ├── MasterJournalContext.java
│ │ │ │ │ ├── MergeJournalContext.java
│ │ │ │ │ ├── MetadataSyncMergeJournalContext.java
│ │ │ │ │ ├── NoopJournalContext.java
│ │ │ │ │ ├── NoopJournaled.java
│ │ │ │ │ ├── PatchedInputChunked.java
│ │ │ │ │ ├── SingleEntryJournaled.java
│ │ │ │ │ ├── StateChangeJournalContext.java
│ │ │ │ │ ├── checkpoint
│ │ │ │ │ │ ├── CheckpointFormat.java
│ │ │ │ │ │ ├── CheckpointInputStream.java
│ │ │ │ │ │ ├── CheckpointName.java
│ │ │ │ │ │ ├── CheckpointOutputStream.java
│ │ │ │ │ │ ├── CheckpointType.java
│ │ │ │ │ │ ├── Checkpointed.java
│ │ │ │ │ │ ├── CompoundCheckpointFormat.java
│ │ │ │ │ │ ├── InodeProtosCheckpointFormat.java
│ │ │ │ │ │ ├── JournalCheckpointFormat.java
│ │ │ │ │ │ ├── LongCheckpointFormat.java
│ │ │ │ │ │ ├── LongsCheckpointFormat.java
│ │ │ │ │ │ ├── OptimizedCheckpointInputStream.java
│ │ │ │ │ │ ├── OptimizedCheckpointOutputStream.java
│ │ │ │ │ │ ├── TarballCheckpointFormat.java
│ │ │ │ │ │ └── ZipCheckpointFormat.java
│ │ │ │ │ ├── noop
│ │ │ │ │ │ ├── NoopJournal.java
│ │ │ │ │ │ └── NoopJournalSystem.java
│ │ │ │ │ ├── options
│ │ │ │ │ │ ├── JournalReaderOptions.java
│ │ │ │ │ │ └── JournalWriterOptions.java
│ │ │ │ │ ├── raft
│ │ │ │ │ │ ├── BufferedJournalApplier.java
│ │ │ │ │ │ ├── JournalStateMachine.java
│ │ │ │ │ │ ├── RaftJournal.java
│ │ │ │ │ │ ├── RaftJournalAppender.java
│ │ │ │ │ │ ├── RaftJournalProgressLogger.java
│ │ │ │ │ │ ├── RaftJournalServiceClient.java
│ │ │ │ │ │ ├── RaftJournalServiceHandler.java
│ │ │ │ │ │ ├── RaftJournalSystem.java
│ │ │ │ │ │ ├── RaftJournalUtils.java
│ │ │ │ │ │ ├── RaftJournalWriter.java
│ │ │ │ │ │ ├── RaftPrimarySelector.java
│ │ │ │ │ │ ├── RaftSnapshotManager.java
│ │ │ │ │ │ ├── SnapshotDirStateMachineStorage.java
│ │ │ │ │ │ └── SnapshotIdJournaled.java
│ │ │ │ │ ├── sink
│ │ │ │ │ │ └── JournalSink.java
│ │ │ │ │ └── ufs
│ │ │ │ │ │ ├── UfsJournal.java
│ │ │ │ │ │ ├── UfsJournalCheckpointThread.java
│ │ │ │ │ │ ├── UfsJournalCheckpointWriter.java
│ │ │ │ │ │ ├── UfsJournalFile.java
│ │ │ │ │ │ ├── UfsJournalFileParser.java
│ │ │ │ │ │ ├── UfsJournalGarbageCollector.java
│ │ │ │ │ │ ├── UfsJournalLogWriter.java
│ │ │ │ │ │ ├── UfsJournalMultiMasterPrimarySelector.java
│ │ │ │ │ │ ├── UfsJournalProgressLogger.java
│ │ │ │ │ │ ├── UfsJournalReader.java
│ │ │ │ │ │ ├── UfsJournalSingleMasterPrimarySelector.java
│ │ │ │ │ │ ├── UfsJournalSnapshot.java
│ │ │ │ │ │ └── UfsJournalSystem.java
│ │ │ │ ├── journalv0
│ │ │ │ │ ├── AsyncJournalWriter.java
│ │ │ │ │ ├── Journal.java
│ │ │ │ │ ├── JournalCheckpointStreamable.java
│ │ │ │ │ ├── JournalEntryRepresentable.java
│ │ │ │ │ ├── JournalFactory.java
│ │ │ │ │ ├── JournalFormatter.java
│ │ │ │ │ ├── JournalInputStream.java
│ │ │ │ │ ├── JournalOutputStream.java
│ │ │ │ │ ├── JournalReader.java
│ │ │ │ │ ├── JournalTool.java
│ │ │ │ │ ├── JournalWriter.java
│ │ │ │ │ ├── MutableJournal.java
│ │ │ │ │ ├── ProtoBufJournalFormatter.java
│ │ │ │ │ └── ufs
│ │ │ │ │ │ ├── UfsCheckpointManager.java
│ │ │ │ │ │ ├── UfsJournal.java
│ │ │ │ │ │ ├── UfsJournalReader.java
│ │ │ │ │ │ ├── UfsJournalWriter.java
│ │ │ │ │ │ └── UfsMutableJournal.java
│ │ │ │ └── transport
│ │ │ │ │ ├── GrpcMessagingClient.java
│ │ │ │ │ ├── GrpcMessagingClientConnection.java
│ │ │ │ │ ├── GrpcMessagingConnection.java
│ │ │ │ │ ├── GrpcMessagingContext.java
│ │ │ │ │ ├── GrpcMessagingProxy.java
│ │ │ │ │ ├── GrpcMessagingServer.java
│ │ │ │ │ ├── GrpcMessagingServerConnection.java
│ │ │ │ │ ├── GrpcMessagingServiceClientHandler.java
│ │ │ │ │ ├── GrpcMessagingThread.java
│ │ │ │ │ ├── GrpcMessagingThreadFactory.java
│ │ │ │ │ ├── GrpcMessagingTransport.java
│ │ │ │ │ ├── Listener.java
│ │ │ │ │ └── Listeners.java
│ │ │ │ ├── metrics
│ │ │ │ └── sink
│ │ │ │ │ ├── MetricsServlet.java
│ │ │ │ │ ├── PrometheusMetricsServlet.java
│ │ │ │ │ ├── RatisDropwizardExports.java
│ │ │ │ │ └── RatisNameRewriteSampleBuilder.java
│ │ │ │ ├── security
│ │ │ │ └── user
│ │ │ │ │ └── ServerUserState.java
│ │ │ │ ├── underfs
│ │ │ │ └── AbstractUfsManager.java
│ │ │ │ ├── web
│ │ │ │ ├── CORSFilter.java
│ │ │ │ ├── HttpFilter.java
│ │ │ │ ├── JacksonProtobufObjectMapperProvider.java
│ │ │ │ ├── JmxServlet.java
│ │ │ │ ├── StacksServlet.java
│ │ │ │ ├── WebInterfaceAbstractMetricsServlet.java
│ │ │ │ └── WebServer.java
│ │ │ │ └── worker
│ │ │ │ ├── AbstractWorker.java
│ │ │ │ ├── BlockUtils.java
│ │ │ │ ├── WorkerFactory.java
│ │ │ │ └── WorkerRegistry.java
│ │ │ └── test
│ │ │ ├── java
│ │ │ └── alluxio
│ │ │ │ ├── DefaultStorageTierAssocTest.java
│ │ │ │ ├── RestUtilsTest.java
│ │ │ │ ├── RpcSensitiveConfigMaskTest.java
│ │ │ │ ├── cli
│ │ │ │ └── FormatTest.java
│ │ │ │ ├── master
│ │ │ │ ├── AbstractPrimarySelectorTest.java
│ │ │ │ ├── ExecutorServiceBuilderTest.java
│ │ │ │ ├── RegistryTest.java
│ │ │ │ ├── StateLockManagerTest.java
│ │ │ │ ├── journal
│ │ │ │ │ ├── AsyncJournalWriterTest.java
│ │ │ │ │ ├── JournalEntryAssociationTest.java
│ │ │ │ │ ├── JournalUtilsTest.java
│ │ │ │ │ ├── checkpoint
│ │ │ │ │ │ └── CheckpointStreamTest.java
│ │ │ │ │ └── raft
│ │ │ │ │ │ ├── RaftSnapshotManagerTest.java
│ │ │ │ │ │ └── SnapshotDirStateMachineStorageTest.java
│ │ │ │ └── transport
│ │ │ │ │ └── GrpcMessagingTransportTest.java
│ │ │ │ └── util
│ │ │ │ └── compression
│ │ │ │ ├── DirectoryMarshallerTest.java
│ │ │ │ ├── FileUtil.java
│ │ │ │ ├── ParallelZipUtilsTest.java
│ │ │ │ └── TarUtilsTest.java
│ │ │ └── resources
│ │ │ └── log4j.properties
│ ├── master
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── alluxio
│ │ │ │ │ ├── master
│ │ │ │ │ ├── AlluxioMaster.java
│ │ │ │ │ ├── AlluxioMasterProcess.java
│ │ │ │ │ ├── AlluxioSecondaryMaster.java
│ │ │ │ │ ├── AlluxioSimpleMasterProcess.java
│ │ │ │ │ ├── CoreMaster.java
│ │ │ │ │ ├── CoreMasterContext.java
│ │ │ │ │ ├── DefaultSafeModeManager.java
│ │ │ │ │ ├── MasterProcess.java
│ │ │ │ │ ├── MasterUtils.java
│ │ │ │ │ ├── ProtobufUtils.java
│ │ │ │ │ ├── backup
│ │ │ │ │ │ ├── AbstractBackupRole.java
│ │ │ │ │ │ ├── BackupHandshakeMessage.java
│ │ │ │ │ │ ├── BackupHeartbeatMessage.java
│ │ │ │ │ │ ├── BackupLeaderRole.java
│ │ │ │ │ │ ├── BackupOps.java
│ │ │ │ │ │ ├── BackupRequestMessage.java
│ │ │ │ │ │ ├── BackupRole.java
│ │ │ │ │ │ ├── BackupSuspendMessage.java
│ │ │ │ │ │ ├── BackupTracker.java
│ │ │ │ │ │ └── BackupWorkerRole.java
│ │ │ │ │ ├── block
│ │ │ │ │ │ ├── BlockContainerIdGenerator.java
│ │ │ │ │ │ ├── BlockMaster.java
│ │ │ │ │ │ ├── BlockMasterClientServiceHandler.java
│ │ │ │ │ │ ├── BlockMasterFactory.java
│ │ │ │ │ │ ├── BlockMasterWorkerServiceHandler.java
│ │ │ │ │ │ ├── ContainerIdGenerable.java
│ │ │ │ │ │ ├── DefaultBlockMaster.java
│ │ │ │ │ │ ├── DefaultBlockMasterContainerIdJournaled.java
│ │ │ │ │ │ ├── JvmSpaceReviewer.java
│ │ │ │ │ │ ├── RegisterLeaseManager.java
│ │ │ │ │ │ ├── RegisterStreamObserver.java
│ │ │ │ │ │ ├── WorkerRegisterContext.java
│ │ │ │ │ │ └── meta
│ │ │ │ │ │ │ ├── MasterBlockLocation.java
│ │ │ │ │ │ │ ├── MasterWorkerInfo.java
│ │ │ │ │ │ │ ├── StaticWorkerMeta.java
│ │ │ │ │ │ │ ├── WorkerMetaLock.java
│ │ │ │ │ │ │ ├── WorkerMetaLockSection.java
│ │ │ │ │ │ │ └── WorkerUsageMeta.java
│ │ │ │ │ ├── file
│ │ │ │ │ │ ├── AccessTimeUpdater.java
│ │ │ │ │ │ ├── BlockDeletionContext.java
│ │ │ │ │ │ ├── BlockIntegrityChecker.java
│ │ │ │ │ │ ├── DefaultBlockDeletionContext.java
│ │ │ │ │ │ ├── DefaultFileSystemMaster.java
│ │ │ │ │ │ ├── DefaultPermissionChecker.java
│ │ │ │ │ │ ├── FileSystemJournalEntryMerger.java
│ │ │ │ │ │ ├── FileSystemMaster.java
│ │ │ │ │ │ ├── FileSystemMasterAuditContext.java
│ │ │ │ │ │ ├── FileSystemMasterClientServiceHandler.java
│ │ │ │ │ │ ├── FileSystemMasterFactory.java
│ │ │ │ │ │ ├── FileSystemMasterJobServiceHandler.java
│ │ │ │ │ │ ├── FileSystemMasterOptions.java
│ │ │ │ │ │ ├── FileSystemMasterWorkerServiceHandler.java
│ │ │ │ │ │ ├── InodeSyncStream.java
│ │ │ │ │ │ ├── InodeTtlChecker.java
│ │ │ │ │ │ ├── ListStatusPartial.java
│ │ │ │ │ │ ├── ListStatusPartialResultStream.java
│ │ │ │ │ │ ├── ListStatusResultStream.java
│ │ │ │ │ │ ├── LostFileDetector.java
│ │ │ │ │ │ ├── MetadataSyncLockManager.java
│ │ │ │ │ │ ├── NoopBlockDeletionContext.java
│ │ │ │ │ │ ├── NoopUfsDeleter.java
│ │ │ │ │ │ ├── PermissionChecker.java
│ │ │ │ │ │ ├── PersistJob.java
│ │ │ │ │ │ ├── ResultStream.java
│ │ │ │ │ │ ├── RpcContext.java
│ │ │ │ │ │ ├── SafeUfsDeleter.java
│ │ │ │ │ │ ├── UfsCleaner.java
│ │ │ │ │ │ ├── UfsDeleter.java
│ │ │ │ │ │ ├── UfsSyncChecker.java
│ │ │ │ │ │ ├── activesync
│ │ │ │ │ │ │ ├── ActiveSyncManager.java
│ │ │ │ │ │ │ └── ActiveSyncer.java
│ │ │ │ │ │ ├── async
│ │ │ │ │ │ │ ├── AsyncPersistHandler.java
│ │ │ │ │ │ │ └── DefaultAsyncPersistHandler.java
│ │ │ │ │ │ ├── contexts
│ │ │ │ │ │ │ ├── CallTracker.java
│ │ │ │ │ │ │ ├── CheckAccessContext.java
│ │ │ │ │ │ │ ├── CheckConsistencyContext.java
│ │ │ │ │ │ │ ├── CompleteFileContext.java
│ │ │ │ │ │ │ ├── CreateDirectoryContext.java
│ │ │ │ │ │ │ ├── CreateFileContext.java
│ │ │ │ │ │ │ ├── CreatePathContext.java
│ │ │ │ │ │ │ ├── DeleteContext.java
│ │ │ │ │ │ │ ├── ExistsContext.java
│ │ │ │ │ │ │ ├── FreeContext.java
│ │ │ │ │ │ │ ├── GetStatusContext.java
│ │ │ │ │ │ │ ├── GrpcCallTracker.java
│ │ │ │ │ │ │ ├── InternalOperationContext.java
│ │ │ │ │ │ │ ├── ListStatusContext.java
│ │ │ │ │ │ │ ├── LoadMetadataContext.java
│ │ │ │ │ │ │ ├── MountContext.java
│ │ │ │ │ │ │ ├── OperationContext.java
│ │ │ │ │ │ │ ├── RenameContext.java
│ │ │ │ │ │ │ ├── ScheduleAsyncPersistenceContext.java
│ │ │ │ │ │ │ ├── SetAclContext.java
│ │ │ │ │ │ │ ├── SetAttributeContext.java
│ │ │ │ │ │ │ ├── SyncMetadataContext.java
│ │ │ │ │ │ │ └── WorkerHeartbeatContext.java
│ │ │ │ │ │ ├── mdsync
│ │ │ │ │ │ │ ├── BaseTask.java
│ │ │ │ │ │ │ ├── BaseTaskResult.java
│ │ │ │ │ │ │ ├── BatchPathWaiter.java
│ │ │ │ │ │ │ ├── DefaultSyncProcess.java
│ │ │ │ │ │ │ ├── DirectoryPathWaiter.java
│ │ │ │ │ │ │ ├── LoadRequest.java
│ │ │ │ │ │ │ ├── LoadRequestExecutor.java
│ │ │ │ │ │ │ ├── LoadResult.java
│ │ │ │ │ │ │ ├── LoadResultExecutor.java
│ │ │ │ │ │ │ ├── MetadataSyncHandler.java
│ │ │ │ │ │ │ ├── PathLoaderTask.java
│ │ │ │ │ │ │ ├── PathSequence.java
│ │ │ │ │ │ │ ├── PathWaiter.java
│ │ │ │ │ │ │ ├── RateLimitedRequest.java
│ │ │ │ │ │ │ ├── SyncFailReason.java
│ │ │ │ │ │ │ ├── SyncOperation.java
│ │ │ │ │ │ │ ├── SyncOperationMetrics.java
│ │ │ │ │ │ │ ├── SyncProcess.java
│ │ │ │ │ │ │ ├── SyncProcessContext.java
│ │ │ │ │ │ │ ├── SyncProcessResult.java
│ │ │ │ │ │ │ ├── TaskGroup.java
│ │ │ │ │ │ │ ├── TaskInfo.java
│ │ │ │ │ │ │ ├── TaskStats.java
│ │ │ │ │ │ │ └── TaskTracker.java
│ │ │ │ │ │ ├── meta
│ │ │ │ │ │ │ ├── AsyncUfsAbsentPathCache.java
│ │ │ │ │ │ │ ├── CheckpointedIdHashSet.java
│ │ │ │ │ │ │ ├── CompositeInodeLockList.java
│ │ │ │ │ │ │ ├── Edge.java
│ │ │ │ │ │ │ ├── EdgeEntry.java
│ │ │ │ │ │ │ ├── FileSystemMasterView.java
│ │ │ │ │ │ │ ├── Inode.java
│ │ │ │ │ │ │ ├── InodeCounter.java
│ │ │ │ │ │ │ ├── InodeDirectory.java
│ │ │ │ │ │ │ ├── InodeDirectoryIdGenerator.java
│ │ │ │ │ │ │ ├── InodeDirectoryView.java
│ │ │ │ │ │ │ ├── InodeFile.java
│ │ │ │ │ │ │ ├── InodeFileView.java
│ │ │ │ │ │ │ ├── InodeIterationResult.java
│ │ │ │ │ │ │ ├── InodeLockList.java
│ │ │ │ │ │ │ ├── InodeLockManager.java
│ │ │ │ │ │ │ ├── InodePathPair.java
│ │ │ │ │ │ │ ├── InodeTree.java
│ │ │ │ │ │ │ ├── InodeTreeBufferedIterator.java
│ │ │ │ │ │ │ ├── InodeTreePersistentState.java
│ │ │ │ │ │ │ ├── InodeView.java
│ │ │ │ │ │ │ ├── LazyUfsBlockLocationCache.java
│ │ │ │ │ │ │ ├── LockedInodePath.java
│ │ │ │ │ │ │ ├── LockedInodePathList.java
│ │ │ │ │ │ │ ├── LockingScheme.java
│ │ │ │ │ │ │ ├── MountTable.java
│ │ │ │ │ │ │ ├── MutableInode.java
│ │ │ │ │ │ │ ├── MutableInodeDirectory.java
│ │ │ │ │ │ │ ├── MutableInodeFile.java
│ │ │ │ │ │ │ ├── NoopUfsAbsentPathCache.java
│ │ │ │ │ │ │ ├── PinnedInodeFileIds.java
│ │ │ │ │ │ │ ├── ReplicationLimitedFileIds.java
│ │ │ │ │ │ │ ├── SimpleInodeLockList.java
│ │ │ │ │ │ │ ├── SyncCheck.java
│ │ │ │ │ │ │ ├── SyncState.java
│ │ │ │ │ │ │ ├── ToBePersistedFileIds.java
│ │ │ │ │ │ │ ├── TtlBucket.java
│ │ │ │ │ │ │ ├── TtlBucketList.java
│ │ │ │ │ │ │ ├── UfsAbsentPathCache.java
│ │ │ │ │ │ │ ├── UfsBlockLocationCache.java
│ │ │ │ │ │ │ ├── UfsSyncPathCache.java
│ │ │ │ │ │ │ ├── UfsSyncUtils.java
│ │ │ │ │ │ │ └── options
│ │ │ │ │ │ │ │ └── MountInfo.java
│ │ │ │ │ │ ├── replication
│ │ │ │ │ │ │ └── ReplicationChecker.java
│ │ │ │ │ │ └── state
│ │ │ │ │ │ │ └── DirectoryId.java
│ │ │ │ │ ├── job
│ │ │ │ │ │ ├── AbstractJob.java
│ │ │ │ │ │ ├── FileIterable.java
│ │ │ │ │ │ ├── JobFactoryProducer.java
│ │ │ │ │ │ ├── JournalLoadJobFactory.java
│ │ │ │ │ │ ├── LoadJob.java
│ │ │ │ │ │ └── LoadJobFactory.java
│ │ │ │ │ ├── journal
│ │ │ │ │ │ ├── DefaultJournalMaster.java
│ │ │ │ │ │ ├── JournalMaster.java
│ │ │ │ │ │ ├── JournalMasterClientServiceHandler.java
│ │ │ │ │ │ ├── JournalMasterFactory.java
│ │ │ │ │ │ └── tool
│ │ │ │ │ │ │ ├── AbstractJournalDumper.java
│ │ │ │ │ │ │ ├── JournalTool.java
│ │ │ │ │ │ │ ├── RaftJournalDumper.java
│ │ │ │ │ │ │ └── UfsJournalDumper.java
│ │ │ │ │ ├── meta
│ │ │ │ │ │ ├── AlluxioMasterRestServiceHandler.java
│ │ │ │ │ │ ├── DailyMetadataBackup.java
│ │ │ │ │ │ ├── DefaultMetaMaster.java
│ │ │ │ │ │ ├── JournalSpaceMonitor.java
│ │ │ │ │ │ ├── MasterInfo.java
│ │ │ │ │ │ ├── MetaMaster.java
│ │ │ │ │ │ ├── MetaMasterClientServiceHandler.java
│ │ │ │ │ │ ├── MetaMasterConfigurationServiceHandler.java
│ │ │ │ │ │ ├── MetaMasterFactory.java
│ │ │ │ │ │ ├── MetaMasterMasterServiceHandler.java
│ │ │ │ │ │ ├── MetaMasterProxyServiceHandler.java
│ │ │ │ │ │ ├── MetaMasterSync.java
│ │ │ │ │ │ ├── PathProperties.java
│ │ │ │ │ │ ├── PathPropertiesView.java
│ │ │ │ │ │ ├── ProxyInfo.java
│ │ │ │ │ │ ├── RetryHandlingMetaMasterMasterClient.java
│ │ │ │ │ │ ├── UpdateChecker.java
│ │ │ │ │ │ └── checkconf
│ │ │ │ │ │ │ ├── ConfigRecord.java
│ │ │ │ │ │ │ ├── ConfigurationChecker.java
│ │ │ │ │ │ │ └── ConfigurationStore.java
│ │ │ │ │ ├── metastore
│ │ │ │ │ │ ├── BlockMetaStore.java
│ │ │ │ │ │ ├── DelegatingReadOnlyInodeStore.java
│ │ │ │ │ │ ├── InodeStore.java
│ │ │ │ │ │ ├── ReadOnlyInodeStore.java
│ │ │ │ │ │ ├── ReadOption.java
│ │ │ │ │ │ ├── RecursiveInodeIterator.java
│ │ │ │ │ │ ├── SkippableInodeIterator.java
│ │ │ │ │ │ ├── caching
│ │ │ │ │ │ │ ├── Cache.java
│ │ │ │ │ │ │ ├── CacheConfiguration.java
│ │ │ │ │ │ │ ├── CachingInodeStore.java
│ │ │ │ │ │ │ └── StatsCounter.java
│ │ │ │ │ │ ├── heap
│ │ │ │ │ │ │ ├── HeapBlockMetaStore.java
│ │ │ │ │ │ │ └── HeapInodeStore.java
│ │ │ │ │ │ └── rocks
│ │ │ │ │ │ │ ├── RocksBlockMetaStore.java
│ │ │ │ │ │ │ ├── RocksCheckpointed.java
│ │ │ │ │ │ │ ├── RocksInodeStore.java
│ │ │ │ │ │ │ └── RocksStore.java
│ │ │ │ │ ├── metrics
│ │ │ │ │ │ ├── CloudCostUtils.java
│ │ │ │ │ │ ├── DefaultMetricsMaster.java
│ │ │ │ │ │ ├── MetricsMaster.java
│ │ │ │ │ │ ├── MetricsMasterClientServiceHandler.java
│ │ │ │ │ │ ├── MetricsMasterFactory.java
│ │ │ │ │ │ ├── MetricsStore.java
│ │ │ │ │ │ └── TimeSeriesStore.java
│ │ │ │ │ ├── scheduler
│ │ │ │ │ │ ├── DefaultWorkerProvider.java
│ │ │ │ │ │ ├── JournaledJobMetaStore.java
│ │ │ │ │ │ └── Scheduler.java
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── NoopService.java
│ │ │ │ │ │ ├── SimpleService.java
│ │ │ │ │ │ ├── jvmmonitor
│ │ │ │ │ │ │ └── JvmMonitorService.java
│ │ │ │ │ │ ├── metrics
│ │ │ │ │ │ │ ├── AlwaysOnMetricsService.java
│ │ │ │ │ │ │ ├── MetricsService.java
│ │ │ │ │ │ │ └── PrimaryOnlyMetricsService.java
│ │ │ │ │ │ ├── rpc
│ │ │ │ │ │ │ ├── RpcServerService.java
│ │ │ │ │ │ │ └── RpcServerStandbyGrpcService.java
│ │ │ │ │ │ └── web
│ │ │ │ │ │ │ ├── AlwaysOnWebServerService.java
│ │ │ │ │ │ │ ├── PrimaryOnlyWebServerService.java
│ │ │ │ │ │ │ └── WebServerService.java
│ │ │ │ │ └── throttle
│ │ │ │ │ │ ├── DefaultThrottleMaster.java
│ │ │ │ │ │ ├── FileSystemIndicator.java
│ │ │ │ │ │ ├── MetricsMonitorUtils.java
│ │ │ │ │ │ ├── ServerIndicator.java
│ │ │ │ │ │ ├── SystemMonitor.java
│ │ │ │ │ │ └── ThrottleMasterFactory.java
│ │ │ │ │ ├── underfs
│ │ │ │ │ ├── MasterUfsManager.java
│ │ │ │ │ └── UfsStatusCache.java
│ │ │ │ │ └── web
│ │ │ │ │ └── MasterWebServer.java
│ │ │ └── resources
│ │ │ │ └── META-INF
│ │ │ │ └── services
│ │ │ │ └── alluxio.master.MasterFactory
│ │ │ └── test
│ │ │ ├── java
│ │ │ └── alluxio
│ │ │ │ ├── master
│ │ │ │ ├── AlluxioMasterProcessEmergencyBackupTest.java
│ │ │ │ ├── AlluxioMasterProcessTest.java
│ │ │ │ ├── AlwaysPrimaryPrimarySelector.java
│ │ │ │ ├── BackupManagerTest.java
│ │ │ │ ├── ControllablePrimarySelector.java
│ │ │ │ ├── MasterTestUtils.java
│ │ │ │ ├── MockMaster.java
│ │ │ │ ├── SafeModeManagerTest.java
│ │ │ │ ├── TestSafeModeManager.java
│ │ │ │ ├── block
│ │ │ │ │ ├── BlockMasterMetricsTest.java
│ │ │ │ │ ├── BlockMasterTest.java
│ │ │ │ │ ├── BlockMasterTestUtils.java
│ │ │ │ │ ├── BlockMasterWorkerServiceHandlerTest.java
│ │ │ │ │ ├── ConcurrentBlockMasterTest.java
│ │ │ │ │ ├── DefaultBlockMasterCheckpointTest.java
│ │ │ │ │ ├── JvmSpaceReviewerTest.java
│ │ │ │ │ ├── RegisterLeaseManagerTest.java
│ │ │ │ │ ├── SignalBlockMaster.java
│ │ │ │ │ └── meta
│ │ │ │ │ │ ├── BlockContainerIdGeneratorTest.java
│ │ │ │ │ │ └── MasterWorkerInfoTest.java
│ │ │ │ ├── file
│ │ │ │ │ ├── AccessTimeUpdaterTest.java
│ │ │ │ │ ├── FileSystemJournalEntryMergerTest.java
│ │ │ │ │ ├── FileSystemMasterFsOptsTest.java
│ │ │ │ │ ├── FileSystemMasterMetricsTest.java
│ │ │ │ │ ├── FileSystemMasterOptionsTest.java
│ │ │ │ │ ├── FileSystemMasterPartialListingTest.java
│ │ │ │ │ ├── FileSystemMasterS3UfsTest.java
│ │ │ │ │ ├── FileSystemMasterSyncMetadataConcurrentTest.java
│ │ │ │ │ ├── FileSystemMasterSyncMetadataFlushJournalTest.java
│ │ │ │ │ ├── FileSystemMasterSyncMetadataMetricsTest.java
│ │ │ │ │ ├── FileSystemMasterSyncMetadataTest.java
│ │ │ │ │ ├── FileSystemMasterSyncMetadataTestBase.java
│ │ │ │ │ ├── FileSystemMasterSyncTest.java
│ │ │ │ │ ├── FileSystemMasterTest.java
│ │ │ │ │ ├── FileSystemMasterTestBase.java
│ │ │ │ │ ├── FileSystemMetadataSyncV2BenchmarkTest.java
│ │ │ │ │ ├── FileSystemMetadataSyncV2Test.java
│ │ │ │ │ ├── MetadataSyncDepthV2Test.java
│ │ │ │ │ ├── MetadataSyncLockManagerTest.java
│ │ │ │ │ ├── MetadataSyncMultiMountV2Test.java
│ │ │ │ │ ├── MetadataSyncNonObjectStoreV2Test.java
│ │ │ │ │ ├── MetadataSyncV2TestBase.java
│ │ │ │ │ ├── PermissionCheckTest.java
│ │ │ │ │ ├── PermissionCheckerTest.java
│ │ │ │ │ ├── PersistJobTest.java
│ │ │ │ │ ├── PersistenceTest.java
│ │ │ │ │ ├── RpcContextTest.java
│ │ │ │ │ ├── async
│ │ │ │ │ │ └── DefaultAsyncPersistHandlerTest.java
│ │ │ │ │ ├── mdsync
│ │ │ │ │ │ ├── BaseTaskTest.java
│ │ │ │ │ │ ├── BatchPathWaiterTest.java
│ │ │ │ │ │ ├── DirectoryPathWaiterTest.java
│ │ │ │ │ │ ├── DummySyncProcess.java
│ │ │ │ │ │ ├── MockUfsClient.java
│ │ │ │ │ │ ├── TaskTrackerTest.java
│ │ │ │ │ │ ├── TestSyncProcessor.java
│ │ │ │ │ │ └── UfsLoadsTest.java
│ │ │ │ │ ├── meta
│ │ │ │ │ │ ├── AbstractInodeTest.java
│ │ │ │ │ │ ├── AsyncUfsAbsentPathCacheTest.java
│ │ │ │ │ │ ├── BaseInodeLockingTest.java
│ │ │ │ │ │ ├── CheckpointedIdHashSetTest.java
│ │ │ │ │ │ ├── CompositeInodeLockListTest.java
│ │ │ │ │ │ ├── InodeLockManagerTest.java
│ │ │ │ │ │ ├── InodeTreeBufferedIteratorTest.java
│ │ │ │ │ │ ├── InodeTreeTest.java
│ │ │ │ │ │ ├── InvalidationSyncCacheTest.java
│ │ │ │ │ │ ├── LazyUfsBlockLocationCacheTest.java
│ │ │ │ │ │ ├── LockedInodePathTest.java
│ │ │ │ │ │ ├── MountTableTest.java
│ │ │ │ │ │ ├── MutableInodeDirectoryTest.java
│ │ │ │ │ │ ├── MutableInodeFileTest.java
│ │ │ │ │ │ ├── SimpleInodeLockListTest.java
│ │ │ │ │ │ ├── TtlBucketListTest.java
│ │ │ │ │ │ ├── TtlBucketTest.java
│ │ │ │ │ │ ├── TtlIntervalRule.java
│ │ │ │ │ │ ├── TtlTestUtils.java
│ │ │ │ │ │ ├── UfsAbsentPathCacheTest.java
│ │ │ │ │ │ ├── UfsSyncCachePathTest.java
│ │ │ │ │ │ └── options
│ │ │ │ │ │ │ └── MountInfoTest.java
│ │ │ │ │ ├── replication
│ │ │ │ │ │ └── ReplicationCheckerTest.java
│ │ │ │ │ └── scheduler
│ │ │ │ │ │ ├── FileIterableTest.java
│ │ │ │ │ │ ├── LoadJobTest.java
│ │ │ │ │ │ ├── LoadTestUtils.java
│ │ │ │ │ │ └── SchedulerTest.java
│ │ │ │ ├── journal
│ │ │ │ │ ├── CountingNoopFileSystemMaster.java
│ │ │ │ │ ├── JournalContextTest.java
│ │ │ │ │ ├── JournalTestUtils.java
│ │ │ │ │ ├── NoopRaftJournalSystem.java
│ │ │ │ │ ├── options
│ │ │ │ │ │ ├── JournalReaderOptionsTest.java
│ │ │ │ │ │ └── JournalWriterOptionsTest.java
│ │ │ │ │ ├── raft
│ │ │ │ │ │ ├── RaftJournalSystemConfigTest.java
│ │ │ │ │ │ ├── RaftJournalSystemMetricsTest.java
│ │ │ │ │ │ ├── RaftJournalTest.java
│ │ │ │ │ │ └── RaftJournalWriterTest.java
│ │ │ │ │ ├── sink
│ │ │ │ │ │ └── JournalSinkTest.java
│ │ │ │ │ ├── tool
│ │ │ │ │ │ └── JournalToolTest.java
│ │ │ │ │ └── ufs
│ │ │ │ │ │ ├── UfsJournalCheckpointThreadTest.java
│ │ │ │ │ │ ├── UfsJournalCheckpointWriterTest.java
│ │ │ │ │ │ ├── UfsJournalConfTest.java
│ │ │ │ │ │ ├── UfsJournalFileTest.java
│ │ │ │ │ │ ├── UfsJournalLogWriterTest.java
│ │ │ │ │ │ ├── UfsJournalReaderTest.java
│ │ │ │ │ │ ├── UfsJournalSnapshotTest.java
│ │ │ │ │ │ └── UfsJournalTest.java
│ │ │ │ ├── meta
│ │ │ │ │ ├── AlluxioMasterRestServiceHandlerTest.java
│ │ │ │ │ ├── DailyMetadataBackupTest.java
│ │ │ │ │ ├── JournalSpaceMonitorTest.java
│ │ │ │ │ ├── PathPropertiesTest.java
│ │ │ │ │ └── checkconf
│ │ │ │ │ │ ├── ConfigurationCheckerTest.java
│ │ │ │ │ │ └── ConfigurationStoreTest.java
│ │ │ │ ├── metastore
│ │ │ │ │ ├── BlockMetaStoreTest.java
│ │ │ │ │ ├── InodeStoreBench.java
│ │ │ │ │ ├── InodeStoreCheckpointTest.java
│ │ │ │ │ ├── InodeStoreTest.java
│ │ │ │ │ ├── InodeStoreTestBase.java
│ │ │ │ │ ├── RecursiveInodeIteratorTest.java
│ │ │ │ │ ├── caching
│ │ │ │ │ │ └── CachingInodeStoreMockedBackingStoreTest.java
│ │ │ │ │ └── rocks
│ │ │ │ │ │ ├── RocksBlockMetaStoreTest.java
│ │ │ │ │ │ ├── RocksInodeStoreTest.java
│ │ │ │ │ │ ├── RocksStoreTest.java
│ │ │ │ │ │ └── RocksStoreTestUtils.java
│ │ │ │ ├── metrics
│ │ │ │ │ ├── MetricsMasterTest.java
│ │ │ │ │ ├── MetricsStoreTest.java
│ │ │ │ │ └── TimeSeriesStoreTest.java
│ │ │ │ ├── service
│ │ │ │ │ ├── jvmmonitor
│ │ │ │ │ │ └── JvmMonitorServiceTest.java
│ │ │ │ │ ├── metrics
│ │ │ │ │ │ └── MetricsServiceTest.java
│ │ │ │ │ ├── rpc
│ │ │ │ │ │ ├── RpcServerServiceTest.java
│ │ │ │ │ │ ├── RpcServerServiceTestBase.java
│ │ │ │ │ │ └── RpcServerStandbyGrpcServiceTest.java
│ │ │ │ │ └── web
│ │ │ │ │ │ └── WebServerServiceTest.java
│ │ │ │ └── throttle
│ │ │ │ │ └── IndicatorsTests.java
│ │ │ │ └── underfs
│ │ │ │ └── UfsStatusCacheTest.java
│ │ │ └── resources
│ │ │ ├── alluxio-local-backup.gz
│ │ │ └── log4j.properties
│ ├── pom.xml
│ ├── proxy
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ └── java
│ │ │ │ └── alluxio
│ │ │ │ ├── StreamCache.java
│ │ │ │ ├── proxy
│ │ │ │ ├── AlluxioProxy.java
│ │ │ │ ├── AlluxioProxyProcess.java
│ │ │ │ ├── AlluxioProxyRestServiceHandler.java
│ │ │ │ ├── PathsRestServiceHandler.java
│ │ │ │ ├── ProxyMasterSync.java
│ │ │ │ ├── ProxyProcess.java
│ │ │ │ ├── RetryHandlingMetaMasterProxyClient.java
│ │ │ │ ├── StreamsRestServiceHandler.java
│ │ │ │ └── s3
│ │ │ │ │ ├── ChunkedEncodingInputStream.java
│ │ │ │ │ ├── CompleteMultipartUploadHandler.java
│ │ │ │ │ ├── CompleteMultipartUploadRequest.java
│ │ │ │ │ ├── CompleteMultipartUploadResult.java
│ │ │ │ │ ├── CopyObjectResult.java
│ │ │ │ │ ├── CopyPartResult.java
│ │ │ │ │ ├── DeleteObjectsRequest.java
│ │ │ │ │ ├── DeleteObjectsResult.java
│ │ │ │ │ ├── InitiateMultipartUploadResult.java
│ │ │ │ │ ├── ListAllMyBucketsResult.java
│ │ │ │ │ ├── ListBucketOptions.java
│ │ │ │ │ ├── ListBucketResult.java
│ │ │ │ │ ├── ListMultipartUploadsResult.java
│ │ │ │ │ ├── ListPartsResult.java
│ │ │ │ │ ├── MultipartUploadCleaner.java
│ │ │ │ │ ├── RangeFileInStream.java
│ │ │ │ │ ├── RateLimitInputStream.java
│ │ │ │ │ ├── S3AuditContext.java
│ │ │ │ │ ├── S3AuthenticationFilter.java
│ │ │ │ │ ├── S3BaseTask.java
│ │ │ │ │ ├── S3BucketTask.java
│ │ │ │ │ ├── S3Constants.java
│ │ │ │ │ ├── S3Error.java
│ │ │ │ │ ├── S3ErrorCode.java
│ │ │ │ │ ├── S3ErrorResponse.java
│ │ │ │ │ ├── S3Exception.java
│ │ │ │ │ ├── S3Handler.java
│ │ │ │ │ ├── S3ObjectTask.java
│ │ │ │ │ ├── S3RangeSpec.java
│ │ │ │ │ ├── S3RequestServlet.java
│ │ │ │ │ ├── S3RestExceptionMapper.java
│ │ │ │ │ ├── S3RestServiceHandler.java
│ │ │ │ │ ├── S3RestUtils.java
│ │ │ │ │ ├── TaggingData.java
│ │ │ │ │ ├── auth
│ │ │ │ │ ├── Authenticator.java
│ │ │ │ │ ├── AwsAuthInfo.java
│ │ │ │ │ └── PassAllAuthenticator.java
│ │ │ │ │ ├── logging
│ │ │ │ │ ├── Logged.java
│ │ │ │ │ └── RequestLoggingFilter.java
│ │ │ │ │ └── signature
│ │ │ │ │ ├── AuthorizationV4Validator.java
│ │ │ │ │ ├── AwsCredential.java
│ │ │ │ │ ├── AwsSignatureProcessor.java
│ │ │ │ │ ├── SignatureInfo.java
│ │ │ │ │ ├── StringToSignProducer.java
│ │ │ │ │ └── utils
│ │ │ │ │ ├── AwsAuthV2HeaderParserUtils.java
│ │ │ │ │ ├── AwsAuthV4HeaderParserUtils.java
│ │ │ │ │ └── AwsAuthV4QueryParserUtils.java
│ │ │ │ └── web
│ │ │ │ └── ProxyWebServer.java
│ │ │ └── test
│ │ │ ├── java
│ │ │ └── alluxio
│ │ │ │ ├── StreamCacheTest.java
│ │ │ │ └── proxy
│ │ │ │ └── s3
│ │ │ │ ├── RateLimitInputStreamTest.java
│ │ │ │ ├── S3RangeSpecTest.java
│ │ │ │ ├── S3RestServiceHandlerTest.java
│ │ │ │ └── signature
│ │ │ │ ├── TestAWSV4Authenticator.java
│ │ │ │ ├── TestAuthorizationV2HeaderParser.java
│ │ │ │ └── TestAuthorizationV4HeaderParser.java
│ │ │ └── resources
│ │ │ └── log4j.properties
│ └── worker
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ ├── underfs
│ │ │ │ └── WorkerUfsManager.java
│ │ │ │ ├── web
│ │ │ │ └── WorkerWebServer.java
│ │ │ │ └── worker
│ │ │ │ ├── AlluxioWorker.java
│ │ │ │ ├── AlluxioWorkerProcess.java
│ │ │ │ ├── AlluxioWorkerRestServiceHandler.java
│ │ │ │ ├── DataServer.java
│ │ │ │ ├── SessionCleaner.java
│ │ │ │ ├── WorkerProcess.java
│ │ │ │ ├── block
│ │ │ │ ├── AbstractBlockStoreEventListener.java
│ │ │ │ ├── AllMasterRegistrationBlockWorker.java
│ │ │ │ ├── AsyncBlockRemover.java
│ │ │ │ ├── BlockHeartbeatReporter.java
│ │ │ │ ├── BlockLockManager.java
│ │ │ │ ├── BlockLockType.java
│ │ │ │ ├── BlockMapIterator.java
│ │ │ │ ├── BlockMasterClient.java
│ │ │ │ ├── BlockMasterClientPool.java
│ │ │ │ ├── BlockMasterSync.java
│ │ │ │ ├── BlockMasterSyncHelper.java
│ │ │ │ ├── BlockMetadataAllocatorView.java
│ │ │ │ ├── BlockMetadataEvictorView.java
│ │ │ │ ├── BlockMetadataManager.java
│ │ │ │ ├── BlockMetadataView.java
│ │ │ │ ├── BlockMetricsReporter.java
│ │ │ │ ├── BlockSyncMasterGroup.java
│ │ │ │ ├── BlockWorkerFactory.java
│ │ │ │ ├── CacheRequestManager.java
│ │ │ │ ├── CachedSeekableInputStream.java
│ │ │ │ ├── DefaultBlockStoreMeta.java
│ │ │ │ ├── DefaultBlockWorker.java
│ │ │ │ ├── FuseManager.java
│ │ │ │ ├── LocalBlockStore.java
│ │ │ │ ├── MonoBlockStore.java
│ │ │ │ ├── PinListSync.java
│ │ │ │ ├── RegisterStreamer.java
│ │ │ │ ├── RemoteBlockReader.java
│ │ │ │ ├── SpecificMasterBlockSync.java
│ │ │ │ ├── TestSpecificMasterBlockSync.java
│ │ │ │ ├── TieredBlockStore.java
│ │ │ │ ├── UfsIOManager.java
│ │ │ │ ├── UfsInputStreamCache.java
│ │ │ │ ├── UnderFileSystemBlockReader.java
│ │ │ │ ├── UnderFileSystemBlockStore.java
│ │ │ │ ├── WorkerMasterRegistrationState.java
│ │ │ │ ├── allocator
│ │ │ │ │ ├── Allocator.java
│ │ │ │ │ ├── GreedyAllocator.java
│ │ │ │ │ ├── MaxFreeAllocator.java
│ │ │ │ │ └── RoundRobinAllocator.java
│ │ │ │ ├── annotator
│ │ │ │ │ ├── BlockAnnotator.java
│ │ │ │ │ ├── BlockIterator.java
│ │ │ │ │ ├── BlockOrder.java
│ │ │ │ │ ├── BlockSortedField.java
│ │ │ │ │ ├── DefaultBlockIterator.java
│ │ │ │ │ ├── EmulatingBlockIterator.java
│ │ │ │ │ ├── LRFUAnnotator.java
│ │ │ │ │ ├── LRUAnnotator.java
│ │ │ │ │ └── SortedBlockSet.java
│ │ │ │ ├── evictor
│ │ │ │ │ ├── AbstractEvictor.java
│ │ │ │ │ ├── BlockTransferInfo.java
│ │ │ │ │ ├── EvictionDirCandidates.java
│ │ │ │ │ ├── EvictionPlan.java
│ │ │ │ │ ├── Evictor.java
│ │ │ │ │ ├── LRUEvictor.java
│ │ │ │ │ └── package-info.java
│ │ │ │ ├── io
│ │ │ │ │ ├── BlockStreamTracker.java
│ │ │ │ │ ├── MetricAccountingBlockReader.java
│ │ │ │ │ ├── StoreBlockReader.java
│ │ │ │ │ └── StoreBlockWriter.java
│ │ │ │ ├── management
│ │ │ │ │ ├── AbstractBlockManagementTask.java
│ │ │ │ │ ├── BlockManagementTask.java
│ │ │ │ │ ├── BlockManagementTaskResult.java
│ │ │ │ │ ├── BlockOperationResult.java
│ │ │ │ │ ├── BlockOperationType.java
│ │ │ │ │ ├── BlockTransferExecutor.java
│ │ │ │ │ ├── BlockTransferPartitioner.java
│ │ │ │ │ ├── DefaultStoreLoadTracker.java
│ │ │ │ │ ├── ManagementTaskCoordinator.java
│ │ │ │ │ ├── ManagementTaskProvider.java
│ │ │ │ │ ├── StoreLoadTracker.java
│ │ │ │ │ └── tier
│ │ │ │ │ │ ├── AlignTask.java
│ │ │ │ │ │ ├── PromoteTask.java
│ │ │ │ │ │ ├── SwapRestoreTask.java
│ │ │ │ │ │ └── TierManagementTaskProvider.java
│ │ │ │ ├── meta
│ │ │ │ │ ├── DefaultBlockMeta.java
│ │ │ │ │ ├── DefaultStorageDir.java
│ │ │ │ │ ├── DefaultStorageTier.java
│ │ │ │ │ ├── DefaultTempBlockMeta.java
│ │ │ │ │ ├── StorageDirAllocatorView.java
│ │ │ │ │ ├── StorageDirEvictorView.java
│ │ │ │ │ ├── StorageDirView.java
│ │ │ │ │ ├── StorageTierAllocatorView.java
│ │ │ │ │ ├── StorageTierEvictorView.java
│ │ │ │ │ ├── StorageTierView.java
│ │ │ │ │ └── UnderFileSystemBlockMeta.java
│ │ │ │ └── reviewer
│ │ │ │ │ ├── AcceptingReviewer.java
│ │ │ │ │ ├── ProbabilisticBufferReviewer.java
│ │ │ │ │ └── Reviewer.java
│ │ │ │ ├── file
│ │ │ │ └── FileSystemMasterClient.java
│ │ │ │ ├── grpc
│ │ │ │ ├── AbstractWriteHandler.java
│ │ │ │ ├── BlockReadHandler.java
│ │ │ │ ├── BlockReadRequestContext.java
│ │ │ │ ├── BlockWorkerClientServiceHandler.java
│ │ │ │ ├── BlockWriteHandler.java
│ │ │ │ ├── BlockWriteRequest.java
│ │ │ │ ├── BlockWriteRequestContext.java
│ │ │ │ ├── DataMessageServerRequestObserver.java
│ │ │ │ ├── DataMessageServerStreamObserver.java
│ │ │ │ ├── DelegationWriteHandler.java
│ │ │ │ ├── Error.java
│ │ │ │ ├── GrpcDataServer.java
│ │ │ │ ├── GrpcExecutors.java
│ │ │ │ ├── ShortCircuitBlockReadHandler.java
│ │ │ │ ├── ShortCircuitBlockWriteHandler.java
│ │ │ │ ├── UfsFallbackBlockWriteHandler.java
│ │ │ │ ├── UfsFileWriteHandler.java
│ │ │ │ ├── UfsFileWriteRequest.java
│ │ │ │ ├── UfsFileWriteRequestContext.java
│ │ │ │ ├── WriteRequest.java
│ │ │ │ └── WriteRequestContext.java
│ │ │ │ ├── package-info.java
│ │ │ │ └── page
│ │ │ │ ├── BlockPageEvictor.java
│ │ │ │ ├── BlockPageId.java
│ │ │ │ ├── NettyBufTargetBuffer.java
│ │ │ │ ├── PagedBlockMeta.java
│ │ │ │ ├── PagedBlockMetaStore.java
│ │ │ │ ├── PagedBlockReader.java
│ │ │ │ ├── PagedBlockStore.java
│ │ │ │ ├── PagedBlockStoreDir.java
│ │ │ │ ├── PagedBlockStoreMeta.java
│ │ │ │ ├── PagedBlockWriter.java
│ │ │ │ ├── PagedTempBlockMeta.java
│ │ │ │ ├── PagedUfsBlockReader.java
│ │ │ │ └── UfsBlockReadOptions.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.worker.WorkerFactory
│ │ └── test
│ │ ├── java
│ │ ├── alluxio
│ │ │ ├── network
│ │ │ │ └── protocol
│ │ │ │ │ └── databuffer
│ │ │ │ │ ├── ByteArrayDataBuffer.java
│ │ │ │ │ └── NioDataBufferTest.java
│ │ │ └── worker
│ │ │ │ ├── block
│ │ │ │ ├── AllMasterRegistrationBlockWorkerTest.java
│ │ │ │ ├── AsyncBlockRemoverTest.java
│ │ │ │ ├── BlockHeartbeatReporterTest.java
│ │ │ │ ├── BlockLockManagerTest.java
│ │ │ │ ├── BlockMapIteratorTest.java
│ │ │ │ ├── BlockMasterClientTest.java
│ │ │ │ ├── BlockMasterWorkerServiceTestUtils.java
│ │ │ │ ├── BlockMetadataManagerTest.java
│ │ │ │ ├── BlockMetadataViewTest.java
│ │ │ │ ├── BlockStoreLocationTest.java
│ │ │ │ ├── BlockStoreMetaTest.java
│ │ │ │ ├── BlockWorkerMetricsTest.java
│ │ │ │ ├── CacheRequestManagerTest.java
│ │ │ │ ├── DefaultBlockWorkerExceptionTest.java
│ │ │ │ ├── DefaultBlockWorkerTest.java
│ │ │ │ ├── DefaultBlockWorkerTestBase.java
│ │ │ │ ├── MonoBlockStoreCommitBlockTest.java
│ │ │ │ ├── NoopBlockWorker.java
│ │ │ │ ├── PinListSyncTest.java
│ │ │ │ ├── RegisterStreamerTest.java
│ │ │ │ ├── SpecificMasterBlockSyncTest.java
│ │ │ │ ├── TieredBlockStoreTest.java
│ │ │ │ ├── TieredBlockStoreTestUtils.java
│ │ │ │ ├── UfsInputStreamCacheTest.java
│ │ │ │ ├── UfsIoManagerTest.java
│ │ │ │ ├── UnderFileSystemBlockReaderTest.java
│ │ │ │ ├── UnderFileSystemBlockStoreTest.java
│ │ │ │ ├── allocator
│ │ │ │ │ ├── AllocatorContractTest.java
│ │ │ │ │ ├── AllocatorFactoryTest.java
│ │ │ │ │ ├── AllocatorTestBase.java
│ │ │ │ │ ├── GreedyAllocatorTest.java
│ │ │ │ │ ├── MaxFreeAllocatorTest.java
│ │ │ │ │ └── RoundRobinAllocatorTest.java
│ │ │ │ ├── annotator
│ │ │ │ │ ├── AbstractBlockAnnotatorTest.java
│ │ │ │ │ ├── EmulatingBlockIteratorTest.java
│ │ │ │ │ ├── LRFUAnnotatorTest.java
│ │ │ │ │ └── LRUAnnotatorTest.java
│ │ │ │ ├── management
│ │ │ │ │ └── tier
│ │ │ │ │ │ ├── AlignTaskTest.java
│ │ │ │ │ │ ├── BaseTierManagementTaskTest.java
│ │ │ │ │ │ ├── BlockTransferPartitionerTest.java
│ │ │ │ │ │ ├── PromoteTaskTest.java
│ │ │ │ │ │ └── SwapRestoreTaskTest.java
│ │ │ │ ├── meta
│ │ │ │ │ ├── DefaultBlockMetaTest.java
│ │ │ │ │ ├── DefaultStorageDirTest.java
│ │ │ │ │ ├── DefaultStorageTierTest.java
│ │ │ │ │ ├── DefaultTempBlockMetaTest.java
│ │ │ │ │ ├── StorageDirViewTest.java
│ │ │ │ │ └── StorageTierViewTest.java
│ │ │ │ ├── reviewer
│ │ │ │ │ ├── MockReviewer.java
│ │ │ │ │ ├── ProbabilisticBufferReviewerTest.java
│ │ │ │ │ └── ReviewerFactoryTest.java
│ │ │ │ └── stream
│ │ │ │ │ └── BlockWorkerDataReaderTest.java
│ │ │ │ ├── grpc
│ │ │ │ ├── AbstractWriteHandlerTest.java
│ │ │ │ ├── BlockReadHandlerTest.java
│ │ │ │ ├── BlockWriteHandlerTest.java
│ │ │ │ ├── GrpcExecutorsTest.java
│ │ │ │ ├── ShortCircuitBlockReadHandlerTest.java
│ │ │ │ ├── ShortCircuitBlockWriteHandlerTest.java
│ │ │ │ ├── UfsFallbackBlockWriteHandlerTest.java
│ │ │ │ └── UfsFileWriteHandlerTest.java
│ │ │ │ └── page
│ │ │ │ ├── BlockPageEvictorTest.java
│ │ │ │ ├── BlockPageIdTest.java
│ │ │ │ ├── ByteArrayCacheManager.java
│ │ │ │ ├── PagedBlockMetaStoreTest.java
│ │ │ │ ├── PagedBlockReaderTest.java
│ │ │ │ ├── PagedBlockStoreCommitBlockTest.java
│ │ │ │ ├── PagedBlockStoreDirTest.java
│ │ │ │ ├── PagedBlockStoreMetaTest.java
│ │ │ │ └── PagedBlockWriterTest.java
│ │ └── com
│ │ │ └── google
│ │ │ └── common
│ │ │ └── util
│ │ │ └── concurrent
│ │ │ └── MockRateLimiter.java
│ │ └── resources
│ │ └── log4j.properties
└── transport
│ ├── pom.xml
│ └── src
│ └── main
│ └── proto
│ ├── grpc
│ ├── block_master.proto
│ ├── block_worker.proto
│ ├── common.proto
│ ├── file_system_master.proto
│ ├── fscommon.proto
│ ├── job_master.proto
│ ├── journal_master.proto
│ ├── messaging_transport.proto
│ ├── meta_master.proto
│ ├── metric_master.proto
│ ├── raft_journal.proto
│ ├── sasl_server.proto
│ ├── table
│ │ ├── layout
│ │ │ └── hive
│ │ │ │ └── hive.proto
│ │ └── table_master.proto
│ └── version.proto
│ ├── proto.lock
│ └── proto
│ ├── client
│ └── cache.proto
│ ├── dataserver
│ ├── protocol.proto
│ └── status.proto
│ ├── journal
│ ├── block.proto
│ ├── file.proto
│ ├── job.proto
│ ├── journal.proto
│ ├── meta.proto
│ └── table.proto
│ ├── meta
│ ├── block.proto
│ └── inode_meta.proto
│ └── shared
│ └── acl.proto
├── dev
├── github
│ ├── component_owners.yaml
│ ├── run_checks.sh
│ ├── run_docker.sh
│ └── run_tests.sh
├── intellij
│ ├── install-runconfig.sh
│ └── runConfigurations
│ │ ├── AlluxioFuse.xml
│ │ ├── AlluxioJobMaster.xml
│ │ ├── AlluxioJobMaster_0.xml
│ │ ├── AlluxioJobMaster_1.xml
│ │ ├── AlluxioJobMaster_2.xml
│ │ ├── AlluxioJobWorker.xml
│ │ ├── AlluxioMaster.xml
│ │ ├── AlluxioMaster_0.xml
│ │ ├── AlluxioMaster_1.xml
│ │ ├── AlluxioMaster_2.xml
│ │ ├── AlluxioProxy.xml
│ │ ├── AlluxioWorker.xml
│ │ └── FileSystemShell.xml
├── jenkins
│ ├── Dockerfile-jdk11
│ ├── Dockerfile-jdk17
│ ├── Dockerfile-jdk8
│ ├── build.sh
│ └── run_docker.sh
└── scripts
│ ├── .gitignore
│ ├── build-docker.sh
│ ├── check-docs.sh
│ ├── generate-backcompat-journal.sh
│ ├── generate-tarballs
│ ├── src
│ └── alluxio.org
│ │ ├── build-distribution
│ │ ├── cmd
│ │ │ ├── check-ufs-versions.go
│ │ │ ├── common.go
│ │ │ ├── flags.go
│ │ │ ├── generate-fuse-tarball.go
│ │ │ ├── generate-release-tarballs.go
│ │ │ ├── generate-tarball.go
│ │ │ └── version.go
│ │ └── main.go
│ │ ├── check-docs
│ │ └── main.go
│ │ ├── go.mod
│ │ └── go.sum
│ ├── update-versions.sh
│ └── watch-metrics.sh
├── docs
├── .gitignore
├── README.md
├── _config.yml
├── _data
│ └── table
│ │ ├── Alluxio-FUSE-parameter.csv
│ │ ├── ReadType.csv
│ │ ├── WriteTier.csv
│ │ ├── WriteType.csv
│ │ ├── chmod-permission.csv
│ │ ├── client-metrics.csv
│ │ ├── cluster-management-configuration.csv
│ │ ├── cluster-metrics.csv
│ │ ├── cn
│ │ ├── Alluxio-FUSE-parameter.yml
│ │ ├── Developer-Tips.yml
│ │ ├── ReadType.yml
│ │ ├── WriteType.yml
│ │ ├── client-metrics.yml
│ │ ├── cluster-management-configuration.yml
│ │ ├── cluster-metrics.yml
│ │ ├── common-configuration.yml
│ │ ├── fuse-metrics.yml
│ │ ├── java-options-for-fault-tolerance.yml
│ │ ├── master-configuration.yml
│ │ ├── master-metrics.yml
│ │ ├── operation-command.yml
│ │ ├── process-metrics.yml
│ │ ├── security-configuration.yml
│ │ ├── server-metrics.yml
│ │ ├── tiered-storage-configuration-parameters.yml
│ │ ├── user-configuration.yml
│ │ ├── worker-configuration.yml
│ │ └── worker-metrics.yml
│ │ ├── common-configuration.csv
│ │ ├── developer-tips.csv
│ │ ├── en
│ │ ├── Alluxio-FUSE-parameter.yml
│ │ ├── ReadType.yml
│ │ ├── WriteType.yml
│ │ ├── client-metrics.yml
│ │ ├── cluster-management-configuration.yml
│ │ ├── cluster-metrics.yml
│ │ ├── common-configuration.yml
│ │ ├── developer-tips.yml
│ │ ├── env_vars.yml
│ │ ├── fsadmin-command.yml
│ │ ├── fuse-metrics.yml
│ │ ├── java-options-for-fault-tolerance.yml
│ │ ├── master-configuration.yml
│ │ ├── master-metrics.yml
│ │ ├── operation-command.yml
│ │ ├── process-metrics.yml
│ │ ├── proxy-metrics.yml
│ │ ├── security-configuration.yml
│ │ ├── server-metrics.yml
│ │ ├── tiered-storage-configuration-parameters.yml
│ │ ├── user-configuration.yml
│ │ ├── worker-configuration.yml
│ │ └── worker-metrics.yml
│ │ ├── fsadmin-command.csv
│ │ ├── fuse-metrics.csv
│ │ ├── java-options-for-fault-tolerance.csv
│ │ ├── master-configuration.csv
│ │ ├── master-metrics.csv
│ │ ├── operation-command.csv
│ │ ├── process-metrics.csv
│ │ ├── proxy-metrics.csv
│ │ ├── s3-api-supported-actions.csv
│ │ ├── security-configuration.csv
│ │ ├── server-metrics.csv
│ │ ├── tiered-storage-configuration-parameters.csv
│ │ ├── user-configuration.csv
│ │ ├── versions-of-Spark-and-Alluxio.csv
│ │ ├── worker-configuration.csv
│ │ └── worker-metrics.csv
├── _layouts
│ ├── 404.html
│ └── global.html
├── _plugins
│ ├── accordion.rb
│ ├── collapsible.rb
│ ├── copy_javadoc_to_docs.rb
│ ├── nav-tabs.rb
│ └── relativize_url.rb
├── cn
│ ├── Overview.md
│ ├── administration
│ │ ├── Troubleshooting.md
│ │ └── Upgrade.md
│ ├── api
│ │ ├── Clients-Go.md
│ │ ├── Clients-Hadoop.md
│ │ ├── Clients-Python.md
│ │ ├── Clients-Rest.md
│ │ ├── FS-API.md
│ │ ├── POSIX-API.md
│ │ └── S3-API.md
│ ├── cloud
│ │ └── Tencent-Cloud-EMR.md
│ ├── compute
│ │ ├── Flink.md
│ │ ├── Hadoop-MapReduce.md
│ │ ├── Hive.md
│ │ ├── Presto-Iceberg.md
│ │ ├── Presto.md
│ │ ├── Spark.md
│ │ ├── Tensorflow.md
│ │ └── Trino.md
│ ├── contributor
│ │ ├── Building-Alluxio-From-Source.md
│ │ ├── Code-Conventions.md
│ │ ├── Contributor-Getting-Started.md
│ │ ├── Documentation-Conventions.md
│ │ └── Unit-Testing.md
│ ├── core-services
│ │ ├── Caching.md
│ │ └── Unified-Namespace.md
│ ├── deploy
│ │ ├── Requirements.md
│ │ ├── Running-Alluxio-Locally.md
│ │ ├── Running-Alluxio-On-Docker.md
│ │ ├── Running-Alluxio-On-a-HA-Cluster.md
│ │ ├── Running-Alluxio-on-a-Cluster.md
│ │ └── Running-AlluxioFuse-On-Docker.md
│ ├── index.html
│ ├── kubernetes
│ │ ├── Running-Alluxio-On-Kubernetes.md
│ │ └── Spark-On-Kubernetes.md
│ ├── operation
│ │ ├── Admin-CLI.md
│ │ ├── Configuration.md
│ │ ├── Journal.md
│ │ ├── Metrics-System.md
│ │ ├── Server-Logging.md
│ │ ├── User-CLI.md
│ │ └── Web-Interface.md
│ ├── overview
│ │ ├── Architecture.md
│ │ ├── FAQ.md
│ │ ├── Getting-Started.md
│ │ ├── JobService.md
│ │ └── Use-Cases.md
│ ├── reference
│ │ ├── Metrics-List.md
│ │ └── Properties-List.md
│ ├── security
│ │ └── Security.md
│ ├── solutions
│ │ └── Deep-Learning.md
│ └── ufs
│ │ ├── Azure-Blob-Store.md
│ │ ├── Azure-Data-Lake-Gen2.md
│ │ ├── Azure-Data-Lake.md
│ │ ├── COS.md
│ │ ├── COSN.md
│ │ ├── CephFS.md
│ │ ├── CephObjectStorage.md
│ │ ├── GCS.md
│ │ ├── HDFS.md
│ │ ├── Minio.md
│ │ ├── NFS.md
│ │ ├── OSS.md
│ │ ├── Ozone.md
│ │ ├── Qiniu-KODO.md
│ │ ├── S3.md
│ │ ├── Swift.md
│ │ ├── TOS.md
│ │ └── WEB.md
├── css
│ ├── bootstrap.min.css
│ ├── main.css
│ └── pygments-default.css
├── en
│ ├── Overview.md
│ ├── administration
│ │ ├── Basic-Logging.md
│ │ ├── Performance-Tuning.md
│ │ ├── Remote-Logging.md
│ │ ├── Scalability-Tuning.md
│ │ ├── StressBench.md
│ │ ├── Troubleshooting.md
│ │ └── Upgrade.md
│ ├── api
│ │ ├── Java-API.md
│ │ ├── POSIX-API.md
│ │ ├── REST-API.md
│ │ └── S3-API.md
│ ├── cloud
│ │ ├── AWS-EMR.md
│ │ ├── Alibaba-Cloud-ACK.md
│ │ ├── Google-Dataproc.md
│ │ └── Tencent-Cloud-EMR.md
│ ├── compute
│ │ ├── Flink.md
│ │ ├── Hadoop-MapReduce.md
│ │ ├── Hive.md
│ │ ├── Presto-Iceberg.md
│ │ ├── Presto.md
│ │ ├── Spark.md
│ │ ├── Tensorflow.md
│ │ └── Trino.md
│ ├── contributor
│ │ ├── Building-Alluxio-From-Source.md
│ │ ├── Code-Conventions.md
│ │ ├── Contributor-Getting-Started.md
│ │ ├── Contributor-Tools.md
│ │ └── Documentation-Conventions.md
│ ├── core-services
│ │ ├── Caching.md
│ │ └── Unified-Namespace.md
│ ├── deploy
│ │ ├── Requirements.md
│ │ ├── Running-Alluxio-Locally.md
│ │ ├── Running-Alluxio-On-Docker.md
│ │ ├── Running-Alluxio-On-a-Cluster.md
│ │ └── Running-Alluxio-On-a-HA-Cluster.md
│ ├── index.html
│ ├── kubernetes
│ │ ├── Metrics-On-Kubernetes.md
│ │ ├── Running-Alluxio-On-Kubernetes.md
│ │ └── Spark-On-Kubernetes.md
│ ├── operation
│ │ ├── Admin-CLI.md
│ │ ├── Configuration.md
│ │ ├── Journal.md
│ │ ├── Metastore.md
│ │ ├── Metrics-System.md
│ │ ├── User-CLI.md
│ │ └── Web-Interface.md
│ ├── overview
│ │ ├── Architecture.md
│ │ ├── FAQ.md
│ │ ├── Getting-Started.md
│ │ ├── JobService.md
│ │ └── Use-Cases.md
│ ├── reference
│ │ ├── Metrics-List.md
│ │ └── Properties-List.md
│ ├── security
│ │ └── Security.md
│ ├── solutions
│ │ └── Deep-Learning.md
│ └── ufs
│ │ ├── Azure-Blob-Store.md
│ │ ├── Azure-Data-Lake-Gen2.md
│ │ ├── Azure-Data-Lake.md
│ │ ├── COSN.md
│ │ ├── CephFS.md
│ │ ├── CephObjectStorage.md
│ │ ├── GCS.md
│ │ ├── HDFS.md
│ │ ├── Minio.md
│ │ ├── NFS.md
│ │ ├── OSS.md
│ │ ├── Ozone.md
│ │ ├── Qiniu-KODO.md
│ │ ├── S3.md
│ │ ├── Swift.md
│ │ ├── TOS.md
│ │ └── WEB.md
├── favicon.ico
├── img
│ ├── alluxio_book.png
│ ├── architecture-master-docs.png
│ ├── architecture-overview-simple-docs.png
│ ├── architecture-worker-docs.png
│ ├── dataflow-async-through.gif
│ ├── dataflow-cache-miss.gif
│ ├── dataflow-cache-through.gif
│ ├── dataflow-local-cache-hit.gif
│ ├── dataflow-must-cache.gif
│ ├── dataflow-partial-caching.gif
│ ├── dataflow-remote-cache-hit.gif
│ ├── emr_ami_accept_terms.png
│ ├── emr_ami_subscribe.png
│ ├── emr_ami_subscribe_done.png
│ ├── emr_console_public_dns.png
│ ├── emr_console_waiting.png
│ ├── fuse.png
│ ├── glyphicons-halflings-white.png
│ ├── glyphicons-halflings.png
│ ├── logo-white.png
│ ├── logo.png
│ ├── posix-cache.png
│ ├── posix-stack.png
│ ├── presto_sandbox_ec2_choose_ami.png
│ ├── presto_sandbox_ec2_instance_type.png
│ ├── presto_sandbox_ec2_instances.png
│ ├── presto_sandbox_ec2_key_pair.png
│ ├── presto_sandbox_ec2_launched_instance.png
│ ├── presto_sandbox_ec2_limit_error.png
│ ├── presto_sandbox_ec2_limits.png
│ ├── presto_sandbox_ec2_region.png
│ ├── presto_sandbox_ec2_review.png
│ ├── presto_sandbox_ec2_security_groups.png
│ ├── screenshot_browseFileSystem.png
│ ├── screenshot_cdh_compute_hadoop_classpath.png
│ ├── screenshot_configuration_checker_masterlogs.png
│ ├── screenshot_configuration_checker_webui.png
│ ├── screenshot_datalocality_sparkwebui.png
│ ├── screenshot_datalocality_tasklocality.png
│ ├── screenshot_generalMetrics.png
│ ├── screenshot_grafana_webui.png
│ ├── screenshot_hbase_hadoop_output.png
│ ├── screenshot_hbase_shell_output.png
│ ├── screenshot_hive_query_result.png
│ ├── screenshot_hive_table_in_alluxio.png
│ ├── screenshot_inMemoryFiles.png
│ ├── screenshot_masterLogs.png
│ ├── screenshot_masterMetrics.png
│ ├── screenshot_overview.png
│ ├── screenshot_presto_query_log.png
│ ├── screenshot_presto_query_result.png
│ ├── screenshot_presto_table_in_alluxio.png
│ ├── screenshot_sharing_setting.png
│ ├── screenshot_start_hbase_alluxio_webui.png
│ ├── screenshot_start_hbase_webui.png
│ ├── screenshot_systemConfiguration.png
│ ├── screenshot_transparent.png
│ ├── screenshot_unified.png
│ ├── screenshot_viewFile.png
│ ├── screenshot_workerBlockInfo.png
│ ├── screenshot_workerLogs.png
│ ├── screenshot_workerMetrics.png
│ ├── screenshot_workerOverview.png
│ ├── screenshot_workers.png
│ ├── stack.png
│ └── unified-namespace-metadata-sync-performance.png
├── index.html
├── js
│ ├── main.js
│ └── vendor
│ │ ├── bootstrap.min.js
│ │ ├── jquery-3.3.1.min.js
│ │ └── popper.min.js
├── link_checker.sh
└── resources
│ ├── alluxio-code-formatter-eclipse.xml
│ ├── alluxio_logo.png
│ ├── eclipse_imports.png
│ ├── importorder.png
│ ├── intellij
│ ├── LICENSE.txt
│ ├── README.md
│ ├── codestyles
│ │ └── AlluxioStyle.xml
│ ├── import.sh
│ ├── options
│ │ └── code.style.schemes.xml
│ └── update.sh
│ ├── intellij_checkstyle_plugin.png
│ ├── intellij_code_formatter.xml
│ ├── intellij_imports.png
│ ├── mnist_classification.py
│ ├── pr
│ └── pr_title_words.md
│ ├── style_scheme.png
│ └── templates
│ └── Design-Document-Template.md
├── examples
├── pom.xml
└── src
│ └── main
│ └── java
│ └── alluxio
│ ├── cli
│ └── MiniBenchmark.java
│ └── examples
│ ├── AlluxioFS.java
│ ├── AlluxioHDFS.java
│ ├── HDFS.java
│ ├── MultiMount.java
│ └── Performance.java
├── integration
├── dataproc
│ ├── .gitignore
│ ├── alluxio-dataproc.sh
│ └── build.sh
├── docker
│ ├── .dockerignore
│ ├── Dockerfile
│ ├── Dockerfile-dev
│ ├── README.md
│ ├── conf
│ │ ├── alluxio-env.sh.template
│ │ └── alluxio-site.properties.template
│ ├── csi
│ │ ├── README.md
│ │ ├── alluxio
│ │ │ ├── controllerserver.go
│ │ │ ├── driver.go
│ │ │ └── nodeserver.go
│ │ ├── go.mod
│ │ ├── go.sum
│ │ └── main.go
│ ├── entrypoint.sh
│ └── hms
│ │ ├── Dockerfile
│ │ ├── README.md
│ │ ├── entrypoint.sh
│ │ └── initialize.sh
├── emr
│ ├── .gitignore
│ ├── alluxio-emr.json
│ ├── alluxio-emr.sh
│ └── build.sh
├── fuse
│ ├── README.md
│ ├── bin
│ │ ├── alluxio-fuse
│ │ └── alluxio-fuse-sdk
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── alluxio
│ │ │ ├── cli
│ │ │ ├── FuseCommand.java
│ │ │ ├── FuseShell.java
│ │ │ └── command
│ │ │ │ ├── AbstractFuseShellCommand.java
│ │ │ │ ├── MetadataCacheCommand.java
│ │ │ │ └── metadatacache
│ │ │ │ ├── AbstractMetadataCacheSubCommand.java
│ │ │ │ ├── DropAllCommand.java
│ │ │ │ ├── DropCommand.java
│ │ │ │ └── SizeCommand.java
│ │ │ └── fuse
│ │ │ ├── AlluxioFuse.java
│ │ │ ├── AlluxioFuseOpenUtils.java
│ │ │ ├── AlluxioFuseRestServiceHandler.java
│ │ │ ├── AlluxioFuseUtils.java
│ │ │ ├── AlluxioJniFuseFileSystem.java
│ │ │ ├── AlluxioJniRenameUtils.java
│ │ │ ├── AlluxioJnrFuseFileSystem.java
│ │ │ ├── CreateFileEntry.java
│ │ │ ├── FuseConstants.java
│ │ │ ├── FuseSignalHandler.java
│ │ │ ├── FuseUmountable.java
│ │ │ ├── FuseWebServer.java
│ │ │ ├── OpenFileEntry.java
│ │ │ ├── StackFS.java
│ │ │ ├── StackMain.java
│ │ │ ├── auth
│ │ │ ├── AuthPolicy.java
│ │ │ ├── AuthPolicyFactory.java
│ │ │ ├── CustomAuthPolicy.java
│ │ │ ├── LaunchUserGroupAuthPolicy.java
│ │ │ └── SystemUserGroupAuthPolicy.java
│ │ │ ├── file
│ │ │ ├── CreateFileStatus.java
│ │ │ ├── FileStatus.java
│ │ │ ├── FuseFileEntry.java
│ │ │ ├── FuseFileInOrOutStream.java
│ │ │ ├── FuseFileInStream.java
│ │ │ ├── FuseFileOutStream.java
│ │ │ └── FuseFileStream.java
│ │ │ ├── lock
│ │ │ └── FuseReadWriteLockManager.java
│ │ │ ├── meta
│ │ │ └── UpdateChecker.java
│ │ │ └── options
│ │ │ └── FuseOptions.java
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ ├── fuse
│ │ ├── AlluxioFuseOpenUtilsTest.java
│ │ ├── AlluxioJniFuseFileSystemTest.java
│ │ ├── AlluxioJnrFuseFileSystemTest.java
│ │ ├── auth
│ │ │ ├── AbstractAuthPolicyTest.java
│ │ │ ├── CustomAuthPolicyTest.java
│ │ │ ├── LaunchUserGroupAuthPolicyTest.java
│ │ │ └── SystemUserGroupAuthPolicyTest.java
│ │ ├── cli
│ │ │ ├── FuseShellTest.java
│ │ │ └── MockFuseFileSystemMasterClient.java
│ │ ├── meta
│ │ │ └── UpdateCheckerTest.java
│ │ └── ufs
│ │ │ ├── AbstractFuseFileSystemTest.java
│ │ │ ├── AbstractTest.java
│ │ │ ├── FuseFileSystemDataTest.java
│ │ │ ├── FuseFileSystemMetadataTest.java
│ │ │ └── stream
│ │ │ ├── AbstractStreamTest.java
│ │ │ ├── InOrOutStreamInTest.java
│ │ │ ├── InOrOutStreamOutTest.java
│ │ │ ├── InStreamTest.java
│ │ │ └── OutStreamTest.java
│ │ └── jnifuse
│ │ └── struct
│ │ ├── FileStatTest.java
│ │ ├── FuseFileInfoTest.java
│ │ └── StatvfsTest.java
├── jnifuse
│ ├── fs
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── java
│ │ │ └── alluxio
│ │ │ └── jnifuse
│ │ │ ├── AbstractFuseFileSystem.java
│ │ │ ├── ErrorCodes.java
│ │ │ ├── FuseException.java
│ │ │ ├── FuseFileSystem.java
│ │ │ ├── FuseFillDir.java
│ │ │ ├── LibFuse.java
│ │ │ ├── constants
│ │ │ └── Errno.java
│ │ │ ├── struct
│ │ │ ├── FileStat.java
│ │ │ ├── Fuse2FuseFileInfo.java
│ │ │ ├── Fuse3FuseFileInfo.java
│ │ │ ├── FuseContext.java
│ │ │ ├── FuseFileInfo.java
│ │ │ └── Statvfs.java
│ │ │ └── utils
│ │ │ ├── Environment.java
│ │ │ ├── LibfuseVersion.java
│ │ │ ├── NativeLibraryLoader.java
│ │ │ └── SecurityUtils.java
│ ├── native
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ ├── native
│ │ │ └── libjnifuse
│ │ │ │ ├── Makefile
│ │ │ │ ├── check.h
│ │ │ │ ├── debug.h
│ │ │ │ ├── jnifuse_fs.cc
│ │ │ │ ├── jnifuse_fs.h
│ │ │ │ ├── jnifuse_helper.cc
│ │ │ │ ├── jnifuse_impls.cc
│ │ │ │ ├── jnifuse_impls.h
│ │ │ │ ├── jnifuse_jvm.cc
│ │ │ │ ├── jnifuse_jvm.h
│ │ │ │ ├── jnifuse_onload.cc
│ │ │ │ ├── operation.cc
│ │ │ │ └── operation.h
│ │ │ └── resources
│ │ │ ├── libjnifuse.dylib
│ │ │ ├── libjnifuse.so
│ │ │ └── libjnifuse3.so
│ └── pom.xml
├── kubernetes
│ ├── .gitignore
│ ├── helm-chart
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── alluxio
│ │ │ ├── .helmignore
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Chart.yaml
│ │ │ ├── README.md
│ │ │ ├── helm-generate.sh
│ │ │ ├── templates
│ │ │ │ ├── _helpers.tpl
│ │ │ │ ├── config
│ │ │ │ │ ├── alluxio-conf.yaml
│ │ │ │ │ └── alluxio-metrics.yaml
│ │ │ │ ├── csi
│ │ │ │ │ ├── controller-rbac.yaml
│ │ │ │ │ ├── controller.yaml
│ │ │ │ │ ├── driver.yaml
│ │ │ │ │ ├── fuse-configmap.yaml
│ │ │ │ │ ├── nodeplugin.yaml
│ │ │ │ │ ├── pv.yaml
│ │ │ │ │ ├── pvc-static.yaml
│ │ │ │ │ ├── pvc.yaml
│ │ │ │ │ └── storage-class.yaml
│ │ │ │ ├── fuse
│ │ │ │ │ └── daemonset.yaml
│ │ │ │ ├── logserver
│ │ │ │ │ ├── deployment.yaml
│ │ │ │ │ ├── log-pvc.yaml
│ │ │ │ │ └── service.yaml
│ │ │ │ ├── master
│ │ │ │ │ ├── service.yaml
│ │ │ │ │ └── statefulset.yaml
│ │ │ │ ├── proxy
│ │ │ │ │ └── daemonset.yaml
│ │ │ │ └── worker
│ │ │ │ │ ├── daemonset.yaml
│ │ │ │ │ └── domain-socket-pvc.yaml
│ │ │ └── values.yaml
│ │ └── monitor
│ │ │ ├── .helmignore
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Chart.yaml
│ │ │ ├── README.md
│ │ │ ├── source
│ │ │ ├── grafana
│ │ │ │ ├── dashboard
│ │ │ │ │ └── dashboard.yaml
│ │ │ │ └── datasource.yaml
│ │ │ └── prometheus
│ │ │ │ └── prometheus.yaml
│ │ │ ├── templates
│ │ │ ├── _helpers.tpl
│ │ │ ├── config
│ │ │ │ ├── grafana-conf.yaml
│ │ │ │ └── prometheus-conf.yaml
│ │ │ ├── grafana
│ │ │ │ └── deployment.yaml
│ │ │ └── prometheus
│ │ │ │ ├── deployment.yaml
│ │ │ │ ├── rbac.yaml
│ │ │ │ └── service.yaml
│ │ │ └── values.yaml
│ └── operator
│ │ ├── alluxio
│ │ ├── .gitignore
│ │ ├── Dockerfile
│ │ ├── Dockerfile.debug
│ │ ├── Dockerfile.webhook
│ │ ├── Makefile
│ │ ├── PROJECT
│ │ ├── README.md
│ │ ├── api
│ │ │ └── v1alpha1
│ │ │ │ ├── dataset_types.go
│ │ │ │ ├── groupversion_info.go
│ │ │ │ ├── runtime_types.go
│ │ │ │ └── zz_generated.deepcopy.go
│ │ ├── charts
│ │ │ ├── alluxio-repo
│ │ │ │ ├── alluxio-job
│ │ │ │ │ ├── .helmignore
│ │ │ │ │ ├── Chart.yaml
│ │ │ │ │ ├── docker
│ │ │ │ │ │ ├── Dockerfile
│ │ │ │ │ │ ├── build.sh
│ │ │ │ │ │ └── load-data.sh
│ │ │ │ │ ├── readme.md
│ │ │ │ │ ├── templates
│ │ │ │ │ │ ├── _helpers.tpl
│ │ │ │ │ │ └── job.yaml
│ │ │ │ │ └── values.yaml
│ │ │ │ └── alluxio
│ │ │ │ │ ├── .helmignore
│ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ ├── Chart.yaml
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── templates
│ │ │ │ │ ├── _helpers.tpl
│ │ │ │ │ ├── config
│ │ │ │ │ │ ├── alluxio-conf.yaml
│ │ │ │ │ │ └── alluxio-fuse-conf.yaml
│ │ │ │ │ ├── format
│ │ │ │ │ │ └── master.yaml
│ │ │ │ │ ├── fuse
│ │ │ │ │ │ └── daemonset.yaml
│ │ │ │ │ ├── master
│ │ │ │ │ │ ├── service.yaml
│ │ │ │ │ │ └── statefulset.yaml
│ │ │ │ │ └── worker
│ │ │ │ │ │ └── daemonset.yaml
│ │ │ │ │ └── values.yaml
│ │ │ └── pillars
│ │ │ │ └── pillars
│ │ │ │ ├── .helmignore
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── Chart.yaml
│ │ │ │ ├── README.md
│ │ │ │ ├── advanced.yaml
│ │ │ │ ├── scripts
│ │ │ │ ├── webhook-create-signed-cert.sh
│ │ │ │ ├── webhook-patch-ca-bundle.sh
│ │ │ │ └── webhookconfiguration.yaml
│ │ │ │ ├── templates
│ │ │ │ ├── _helpers.tpl
│ │ │ │ ├── crd
│ │ │ │ │ ├── dataset_v1alpha1.yaml
│ │ │ │ │ └── runtime_v1alpha.yaml
│ │ │ │ ├── manager
│ │ │ │ │ └── manager.yaml
│ │ │ │ ├── role
│ │ │ │ │ └── role-binding.yaml
│ │ │ │ └── webhook
│ │ │ │ │ ├── service.yaml
│ │ │ │ │ └── webhook.yaml
│ │ │ │ └── values.yaml
│ │ ├── cmd
│ │ │ ├── controller
│ │ │ │ └── main.go
│ │ │ └── webhook
│ │ │ │ ├── check-mount
│ │ │ │ ├── Dockerfile
│ │ │ │ ├── check-mount.sh
│ │ │ │ └── entrypoint.sh
│ │ │ │ ├── main.go
│ │ │ │ ├── patch.go
│ │ │ │ ├── pod_create_handler.go
│ │ │ │ ├── webhook-create-signed-cert.sh
│ │ │ │ ├── webhook-patch-ca-bundle.sh
│ │ │ │ └── webhook.go
│ │ ├── config
│ │ │ ├── certmanager
│ │ │ │ ├── certificate.yaml
│ │ │ │ ├── kustomization.yaml
│ │ │ │ └── kustomizeconfig.yaml
│ │ │ ├── crd
│ │ │ │ ├── bases
│ │ │ │ │ ├── data.pillars.io_datasets.yaml
│ │ │ │ │ └── data.pillars.io_runtimes.yaml
│ │ │ │ ├── kustomization.yaml
│ │ │ │ ├── kustomizeconfig.yaml
│ │ │ │ └── patches
│ │ │ │ │ ├── cainjection_in_datasets.yaml
│ │ │ │ │ ├── cainjection_in_runtimes.yaml
│ │ │ │ │ ├── webhook_in_datasets.yaml
│ │ │ │ │ └── webhook_in_runtimes.yaml
│ │ │ ├── default
│ │ │ │ ├── kustomization.yaml
│ │ │ │ ├── manager_auth_proxy_patch.yaml
│ │ │ │ ├── manager_webhook_patch.yaml
│ │ │ │ └── webhookcainjection_patch.yaml
│ │ │ ├── manager
│ │ │ │ ├── kustomization.yaml
│ │ │ │ └── manager.yaml
│ │ │ ├── prometheus
│ │ │ │ ├── kustomization.yaml
│ │ │ │ └── monitor.yaml
│ │ │ ├── rbac
│ │ │ │ ├── auth_proxy_role.yaml
│ │ │ │ ├── auth_proxy_role_binding.yaml
│ │ │ │ ├── auth_proxy_service.yaml
│ │ │ │ ├── kustomization.yaml
│ │ │ │ ├── leader_election_role.yaml
│ │ │ │ ├── leader_election_role_binding.yaml
│ │ │ │ ├── role.yaml
│ │ │ │ └── role_binding.yaml
│ │ │ ├── samples
│ │ │ │ ├── data_v1alpha1_dataset.yaml
│ │ │ │ └── data_v1alpha1_runtime.yaml
│ │ │ └── webhook
│ │ │ │ ├── kustomization.yaml
│ │ │ │ ├── kustomizeconfig.yaml
│ │ │ │ ├── manifests.yaml
│ │ │ │ ├── service.yaml
│ │ │ │ └── webhook.yaml
│ │ ├── deploy
│ │ │ ├── debug-manager
│ │ │ │ └── manager.yaml
│ │ │ ├── role-binding.yaml
│ │ │ └── webhook
│ │ │ │ └── manifests.yaml
│ │ ├── docs
│ │ │ └── dev.md
│ │ ├── examples
│ │ │ └── demo-1
│ │ │ │ ├── dataset.yaml
│ │ │ │ ├── docker
│ │ │ │ └── Dockerfile
│ │ │ │ └── sample.md
│ │ ├── go-mod.sh
│ │ ├── go.mod
│ │ ├── go.sum
│ │ ├── hack
│ │ │ └── boilerplate.go.txt
│ │ ├── issues.md
│ │ └── pkg
│ │ │ ├── common
│ │ │ ├── constants.go
│ │ │ └── types.go
│ │ │ ├── controllers
│ │ │ ├── dataset
│ │ │ │ └── v1alpha1
│ │ │ │ │ ├── dataset_controller.go
│ │ │ │ │ ├── helper.go
│ │ │ │ │ ├── node_helper.go
│ │ │ │ │ └── suite_test.go
│ │ │ └── runtime
│ │ │ │ └── v1alpha1
│ │ │ │ ├── cache.go
│ │ │ │ ├── helper.go
│ │ │ │ ├── runtime_controller.go
│ │ │ │ └── suite_test.go
│ │ │ ├── ddc
│ │ │ ├── alluxio
│ │ │ │ ├── cache.go
│ │ │ │ ├── config.go
│ │ │ │ ├── engine.go
│ │ │ │ ├── engine_internal.go
│ │ │ │ ├── healthy_check.go
│ │ │ │ ├── load_data.go
│ │ │ │ ├── operations
│ │ │ │ │ ├── base.go
│ │ │ │ │ └── cached.go
│ │ │ │ ├── replicas.go
│ │ │ │ ├── shutdown.go
│ │ │ │ ├── status.go
│ │ │ │ ├── sync_nodes.go
│ │ │ │ ├── types.go
│ │ │ │ ├── ufs.go
│ │ │ │ └── utils.go
│ │ │ ├── base
│ │ │ │ ├── capacity.go
│ │ │ │ ├── engine.go
│ │ │ │ ├── template_engine.go
│ │ │ │ └── utils.go
│ │ │ ├── configs
│ │ │ │ └── config.go
│ │ │ ├── factory.go
│ │ │ └── sync_result.go
│ │ │ └── utils
│ │ │ ├── capacity
│ │ │ └── capacity.go
│ │ │ ├── charts.go
│ │ │ ├── crtl_utils.go
│ │ │ ├── dataset.go
│ │ │ ├── dataset_condition.go
│ │ │ ├── helm
│ │ │ ├── helm.go
│ │ │ └── utils.go
│ │ │ ├── home.go
│ │ │ ├── json.go
│ │ │ ├── kubeclient
│ │ │ ├── configmap.go
│ │ │ ├── exec.go
│ │ │ ├── namespace.go
│ │ │ ├── node.go
│ │ │ └── pod.go
│ │ │ ├── kubectl
│ │ │ ├── configmap.go
│ │ │ └── kubectl.go
│ │ │ ├── percent.go
│ │ │ ├── runtime_condition.go
│ │ │ ├── strings.go
│ │ │ └── yaml.go
│ │ └── presto
│ │ └── bin
│ │ ├── controller-gen
│ │ └── kustomize
├── metrics
│ ├── README.md
│ ├── docker-compose-master.yaml
│ ├── docker-compose-worker.yaml
│ ├── otel-agent-config-worker.yaml
│ ├── otel-agent-config.yaml
│ ├── otel-collector-config.yaml
│ └── prometheus.yaml
├── pom.xml
├── tools
│ ├── benchmark
│ │ ├── README.md
│ │ └── pytorch
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ ├── load.py
│ │ │ └── run-test.sh
│ ├── hms
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── cli
│ │ │ │ ├── HmsValidationTool.java
│ │ │ │ ├── HmsValidationToolFactory.java
│ │ │ │ └── hms
│ │ │ │ ├── CreateHmsClientValidationTask.java
│ │ │ │ ├── DatabaseValidationTask.java
│ │ │ │ ├── MetastoreValidationTask.java
│ │ │ │ ├── TableValidationTask.java
│ │ │ │ └── UriCheckTask.java
│ │ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.cli.ValidationToolFactory
│ ├── pom.xml
│ ├── ratis-shell
│ │ ├── README.md
│ │ └── install-ratis-shell.sh
│ └── validation
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── cli
│ │ │ │ ├── ApplicableUfsType.java
│ │ │ │ ├── ClusterConfConsistencyValidationTask.java
│ │ │ │ ├── HdfsValidationTool.java
│ │ │ │ ├── HdfsValidationToolFactory.java
│ │ │ │ ├── NativeLibValidationTask.java
│ │ │ │ ├── PortAvailabilityValidationTask.java
│ │ │ │ ├── RamDiskMountPrivilegeValidationTask.java
│ │ │ │ ├── RelatedS3Operations.java
│ │ │ │ ├── S3ASpecificOperations.java
│ │ │ │ ├── SshValidationTask.java
│ │ │ │ ├── StorageSpaceValidationTask.java
│ │ │ │ ├── UfsDirectoryValidationTask.java
│ │ │ │ ├── UfsSuperUserValidationTask.java
│ │ │ │ ├── UfsVersionValidationTask.java
│ │ │ │ ├── UnderFileSystemCommonOperations.java
│ │ │ │ ├── UnderFileSystemContractTest.java
│ │ │ │ ├── UserLimitValidationTask.java
│ │ │ │ ├── ValidateEnv.java
│ │ │ │ └── hdfs
│ │ │ │ ├── HadoopConfigurationFileParser.java
│ │ │ │ ├── HdfsConfParityValidationTask.java
│ │ │ │ ├── HdfsConfValidationTask.java
│ │ │ │ ├── HdfsProxyUserValidationTask.java
│ │ │ │ ├── HdfsVersionValidationTask.java
│ │ │ │ └── SecureHdfsValidationTask.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.cli.ValidationToolFactory
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ └── cli
│ │ ├── NativeLibValidationTaskTest.java
│ │ ├── UfsOperationsTest.java
│ │ ├── ValidationTestUtils.java
│ │ └── hdfs
│ │ ├── HdfsConfValidationTaskTest.java
│ │ ├── HdfsProxyUserValidationTaskTest.java
│ │ └── HdfsVersionValidationTaskTest.java
└── vagrant
│ ├── README.md
│ ├── Vagrantfile
│ ├── ansible.cfg
│ ├── ansible
│ ├── playbook-basic.yml
│ ├── playbook.yml
│ ├── roles
│ │ ├── alluxio
│ │ │ ├── files
│ │ │ │ ├── create_mount.sh
│ │ │ │ ├── down_release.sh
│ │ │ │ ├── mkdir.sh
│ │ │ │ ├── rsync.sh
│ │ │ │ ├── set_journal_folder.sh
│ │ │ │ ├── set_master_address.sh
│ │ │ │ ├── set_worker_heartbeat_timeout.sh
│ │ │ │ ├── set_workers.sh
│ │ │ │ ├── untar_release.sh
│ │ │ │ └── zookeeper.sh
│ │ │ └── tasks
│ │ │ │ ├── clone_local_repo.yml
│ │ │ │ ├── clone_remote_repo.yml
│ │ │ │ ├── compile.yml
│ │ │ │ ├── config.yml
│ │ │ │ ├── create_mount.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ ├── start_master.yml
│ │ │ │ ├── start_mesos_framework.yml
│ │ │ │ └── start_worker.yml
│ │ ├── common
│ │ │ ├── files
│ │ │ │ ├── host.sh
│ │ │ │ ├── java.sh
│ │ │ │ ├── mkdir_vagrant.sh
│ │ │ │ └── ssh.sh
│ │ │ └── tasks
│ │ │ │ ├── files.yml
│ │ │ │ ├── main.yml
│ │ │ │ ├── net.yml
│ │ │ │ └── pkg.yml
│ │ ├── lib
│ │ │ ├── files
│ │ │ │ ├── alluxio_tiered.sh
│ │ │ │ ├── device.sh
│ │ │ │ └── maven.sh
│ │ │ └── tasks
│ │ │ │ ├── alluxio_tiered.yml
│ │ │ │ ├── maven.yml
│ │ │ │ └── mount.yml
│ │ ├── mesos
│ │ │ ├── files
│ │ │ │ ├── compile.sh
│ │ │ │ ├── config_alluxio.sh
│ │ │ │ ├── down_release.sh
│ │ │ │ ├── install_deps.sh
│ │ │ │ ├── mkdir.sh
│ │ │ │ ├── rsync.sh
│ │ │ │ ├── start_master.sh
│ │ │ │ └── start_slave.sh
│ │ │ └── tasks
│ │ │ │ ├── clone_remote_repo.yml
│ │ │ │ ├── compile.yml
│ │ │ │ ├── config_alluxio.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── install_deps.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ ├── start_master.yml
│ │ │ │ └── start_slave.yml
│ │ ├── spark
│ │ │ ├── files
│ │ │ │ ├── config_core_site.sh
│ │ │ │ ├── down_release.sh
│ │ │ │ ├── mkdir.sh
│ │ │ │ ├── remove_gcs_exclusion.sh
│ │ │ │ ├── remove_s3_exclusion.sh
│ │ │ │ ├── set_alluxio_version.sh
│ │ │ │ ├── spark-defaults.sh
│ │ │ │ └── spark_env.sh
│ │ │ └── tasks
│ │ │ │ ├── clone_remote_repo.yml
│ │ │ │ ├── compile.yml
│ │ │ │ ├── config.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ └── start.yml
│ │ ├── ufs_gcs
│ │ │ ├── files
│ │ │ │ ├── compile_alluxio.sh
│ │ │ │ ├── compile_spark.sh
│ │ │ │ └── config_alluxio.sh
│ │ │ └── tasks
│ │ │ │ ├── config.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ └── start.yml
│ │ ├── ufs_glusterfs
│ │ │ ├── files
│ │ │ │ ├── compile_alluxio.sh
│ │ │ │ ├── config.sh
│ │ │ │ ├── config_alluxio.sh
│ │ │ │ ├── down.sh
│ │ │ │ └── start.sh
│ │ │ └── tasks
│ │ │ │ ├── config.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ └── start.yml
│ │ ├── ufs_hadoop1
│ │ │ ├── files
│ │ │ │ ├── compile_alluxio.sh
│ │ │ │ ├── compile_spark.sh
│ │ │ │ ├── config.sh
│ │ │ │ ├── config_alluxio.sh
│ │ │ │ ├── config_spark.sh
│ │ │ │ ├── download_release.sh
│ │ │ │ ├── mkdir.sh
│ │ │ │ └── start.sh
│ │ │ └── tasks
│ │ │ │ ├── config.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ └── start.yml
│ │ ├── ufs_hadoop2
│ │ │ ├── files
│ │ │ │ ├── compile_alluxio.sh
│ │ │ │ ├── compile_spark.sh
│ │ │ │ ├── config.sh
│ │ │ │ ├── config_alluxio.sh
│ │ │ │ ├── config_spark.sh
│ │ │ │ ├── download_release.sh
│ │ │ │ ├── mkdir.sh
│ │ │ │ └── start.sh
│ │ │ └── tasks
│ │ │ │ ├── config.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ └── start.yml
│ │ ├── ufs_s3
│ │ │ ├── files
│ │ │ │ ├── compile_alluxio.sh
│ │ │ │ ├── compile_spark.sh
│ │ │ │ ├── config_alluxio.sh
│ │ │ │ └── config_spark.sh
│ │ │ └── tasks
│ │ │ │ ├── config.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ └── start.yml
│ │ ├── ufs_swift
│ │ │ ├── files
│ │ │ │ ├── compile_alluxio.sh
│ │ │ │ ├── compile_spark.sh
│ │ │ │ └── config_alluxio.sh
│ │ │ └── tasks
│ │ │ │ ├── config.yml
│ │ │ │ ├── download_release.yml
│ │ │ │ ├── rsync_dist.yml
│ │ │ │ └── start.yml
│ │ ├── vagrant_utils
│ │ │ ├── files
│ │ │ │ ├── copy-dir
│ │ │ │ └── remount
│ │ │ └── tasks
│ │ │ │ └── main.yml
│ │ └── zookeeper
│ │ │ ├── files
│ │ │ ├── download_release.sh
│ │ │ └── mkdir.sh
│ │ │ └── tasks
│ │ │ ├── config.yml
│ │ │ ├── download_release.yml
│ │ │ ├── main.yml
│ │ │ └── start.yml
│ ├── start_alluxio_on_mesos.yml
│ └── start_alluxio_on_standalone.yml
│ ├── bin
│ ├── init_aws.py
│ ├── install.sh
│ ├── is_aws_spot.py
│ ├── spot_request.py
│ └── util.py
│ ├── conf
│ ├── alluxio.yml
│ ├── ec2.yml.template
│ ├── gce.yml.template
│ ├── mesos.yml
│ ├── spark.yml
│ ├── ufs.yml
│ ├── vb.yml
│ └── zookeeper.yml
│ ├── create
│ ├── destroy
│ ├── pip-req.txt
│ ├── vagrant
│ ├── config_aws.rb
│ ├── config_google.rb
│ ├── config_software.rb
│ └── config_vb.rb
│ └── vbox
│ ├── README.md
│ ├── Vagrantfile
│ └── buildbox.sh
├── job
├── client
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── alluxio
│ │ │ ├── client
│ │ │ └── job
│ │ │ │ ├── JobContext.java
│ │ │ │ ├── JobGrpcClientUtils.java
│ │ │ │ ├── JobMasterClient.java
│ │ │ │ ├── JobMasterClientPool.java
│ │ │ │ └── RetryHandlingJobMasterClient.java
│ │ │ ├── job
│ │ │ └── plan
│ │ │ │ └── replicate
│ │ │ │ ├── DefaultReplicationHandler.java
│ │ │ │ └── ReplicationHandler.java
│ │ │ └── worker
│ │ │ └── job
│ │ │ ├── JobMasterClientContext.java
│ │ │ └── JobMasterClientContextBuilder.java
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ └── client
│ │ └── job
│ │ └── JobContextTest.java
├── common
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── alluxio
│ │ │ ├── job
│ │ │ ├── CmdConfig.java
│ │ │ ├── ErrorUtils.java
│ │ │ ├── JobConfig.java
│ │ │ ├── MasterWorkerInfo.java
│ │ │ ├── ProtoUtils.java
│ │ │ ├── ServiceConstants.java
│ │ │ ├── cmd
│ │ │ │ ├── CliConfig.java
│ │ │ │ ├── load
│ │ │ │ │ └── LoadCliConfig.java
│ │ │ │ ├── migrate
│ │ │ │ │ └── MigrateCliConfig.java
│ │ │ │ ├── persist
│ │ │ │ │ └── PersistCmdConfig.java
│ │ │ │ └── replicate
│ │ │ │ │ └── PolicyConfig.java
│ │ │ ├── meta
│ │ │ │ └── JobIdGenerator.java
│ │ │ ├── plan
│ │ │ │ ├── BatchedJobConfig.java
│ │ │ │ ├── NoopPlanConfig.java
│ │ │ │ ├── PlanConfig.java
│ │ │ │ ├── load
│ │ │ │ │ └── LoadConfig.java
│ │ │ │ ├── meta
│ │ │ │ │ └── PlanInfo.java
│ │ │ │ ├── migrate
│ │ │ │ │ └── MigrateConfig.java
│ │ │ │ ├── persist
│ │ │ │ │ └── PersistConfig.java
│ │ │ │ ├── replicate
│ │ │ │ │ ├── MoveConfig.java
│ │ │ │ │ └── SetReplicaConfig.java
│ │ │ │ └── transform
│ │ │ │ │ ├── CompactConfig.java
│ │ │ │ │ ├── FieldSchema.java
│ │ │ │ │ ├── Format.java
│ │ │ │ │ ├── HiveConstants.java
│ │ │ │ │ └── PartitionInfo.java
│ │ │ ├── util
│ │ │ │ ├── SerializableVoid.java
│ │ │ │ ├── SerializationUtils.java
│ │ │ │ └── TimeSeries.java
│ │ │ ├── wire
│ │ │ │ ├── CmdStatusBlock.java
│ │ │ │ ├── JobInfo.java
│ │ │ │ ├── JobServiceSummary.java
│ │ │ │ ├── JobSource.java
│ │ │ │ ├── JobWorkerHealth.java
│ │ │ │ ├── PlanInfo.java
│ │ │ │ ├── SimpleJobStatusBlock.java
│ │ │ │ ├── Status.java
│ │ │ │ ├── StatusSummary.java
│ │ │ │ ├── TaskInfo.java
│ │ │ │ └── WorkflowInfo.java
│ │ │ └── workflow
│ │ │ │ ├── WorkflowConfig.java
│ │ │ │ └── composite
│ │ │ │ └── CompositeConfig.java
│ │ │ └── scheduler
│ │ │ └── job
│ │ │ ├── Job.java
│ │ │ ├── JobFactory.java
│ │ │ ├── JobMetaStore.java
│ │ │ ├── JobState.java
│ │ │ ├── Task.java
│ │ │ └── WorkerProvider.java
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ └── job
│ │ ├── CrashPlanConfig.java
│ │ ├── SleepJobConfig.java
│ │ ├── TestPlanConfig.java
│ │ ├── cmd
│ │ ├── load
│ │ │ └── LoadCliConfigTest.java
│ │ ├── migrate
│ │ │ └── MigrateCliConfigTest.java
│ │ └── persist
│ │ │ └── PersistCmdConfigTest.java
│ │ ├── meta
│ │ ├── JobIdGeneratorTest.java
│ │ └── PlanInfoTest.java
│ │ ├── plan
│ │ ├── load
│ │ │ └── LoadConfigTest.java
│ │ ├── persist
│ │ │ └── PersistConfigTest.java
│ │ ├── replicate
│ │ │ └── SetReplicaConfigTest.java
│ │ └── transform
│ │ │ └── HiveConstantsTest.java
│ │ ├── util
│ │ ├── SerializationUtilsTest.java
│ │ └── TimeSeriesTest.java
│ │ ├── wire
│ │ ├── JobServiceSummaryTest.java
│ │ ├── JobWorkerHealthTest.java
│ │ ├── PlanInfoTest.java
│ │ └── TaskInfoTest.java
│ │ └── workflow
│ │ └── composite
│ │ └── CompositeConfigTest.java
├── pom.xml
└── server
│ ├── pom.xml
│ └── src
│ ├── main
│ ├── java
│ │ └── alluxio
│ │ │ ├── job
│ │ │ ├── JobServerContext.java
│ │ │ ├── RunTaskContext.java
│ │ │ ├── SelectExecutorsContext.java
│ │ │ ├── plan
│ │ │ │ ├── AbstractVoidPlanDefinition.java
│ │ │ │ ├── NoopPlanDefinition.java
│ │ │ │ ├── PlanDefinition.java
│ │ │ │ ├── PlanDefinitionRegistry.java
│ │ │ │ ├── batch
│ │ │ │ │ └── BatchedJobDefinition.java
│ │ │ │ ├── load
│ │ │ │ │ └── LoadDefinition.java
│ │ │ │ ├── migrate
│ │ │ │ │ ├── MigrateCommand.java
│ │ │ │ │ └── MigrateDefinition.java
│ │ │ │ ├── persist
│ │ │ │ │ └── PersistDefinition.java
│ │ │ │ ├── replicate
│ │ │ │ │ ├── Mode.java
│ │ │ │ │ ├── MoveDefinition.java
│ │ │ │ │ ├── SetReplicaDefinition.java
│ │ │ │ │ └── SetReplicaTask.java
│ │ │ │ ├── stress
│ │ │ │ │ └── StressBenchDefinition.java
│ │ │ │ └── transform
│ │ │ │ │ ├── CompactDefinition.java
│ │ │ │ │ ├── CompactTask.java
│ │ │ │ │ ├── compact
│ │ │ │ │ └── Compactor.java
│ │ │ │ │ └── format
│ │ │ │ │ ├── JobPath.java
│ │ │ │ │ ├── ReadWriterUtils.java
│ │ │ │ │ ├── SchemaConversionUtils.java
│ │ │ │ │ ├── TableReader.java
│ │ │ │ │ ├── TableRow.java
│ │ │ │ │ ├── TableSchema.java
│ │ │ │ │ ├── TableWriter.java
│ │ │ │ │ ├── csv
│ │ │ │ │ ├── CsvReader.java
│ │ │ │ │ ├── CsvRow.java
│ │ │ │ │ ├── CsvSchema.java
│ │ │ │ │ ├── CsvUtils.java
│ │ │ │ │ ├── CsvWriter.java
│ │ │ │ │ └── Decimal.java
│ │ │ │ │ ├── orc
│ │ │ │ │ ├── OrcReader.java
│ │ │ │ │ ├── OrcRow.java
│ │ │ │ │ └── OrcSchema.java
│ │ │ │ │ ├── parquet
│ │ │ │ │ ├── ParquetReader.java
│ │ │ │ │ ├── ParquetRow.java
│ │ │ │ │ ├── ParquetSchema.java
│ │ │ │ │ └── ParquetWriter.java
│ │ │ │ │ └── tables
│ │ │ │ │ ├── BytesCommitter.java
│ │ │ │ │ ├── Committer.java
│ │ │ │ │ ├── RowsCommitter.java
│ │ │ │ │ └── TablesWriter.java
│ │ │ ├── util
│ │ │ │ └── JobUtils.java
│ │ │ └── workflow
│ │ │ │ ├── WorkflowExecution.java
│ │ │ │ ├── WorkflowExecutionFactory.java
│ │ │ │ ├── WorkflowExecutionRegistry.java
│ │ │ │ └── composite
│ │ │ │ ├── CompositeExecution.java
│ │ │ │ └── CompositeExecutionFactory.java
│ │ │ ├── master
│ │ │ ├── AlluxioJobMaster.java
│ │ │ ├── AlluxioJobMasterProcess.java
│ │ │ ├── AlluxioJobMasterRestServiceHandler.java
│ │ │ ├── file
│ │ │ │ └── FileSystemMasterClient.java
│ │ │ ├── job
│ │ │ │ ├── JobMaster.java
│ │ │ │ ├── JobMasterAuditContext.java
│ │ │ │ ├── JobMasterClientRestServiceHandler.java
│ │ │ │ ├── JobMasterClientServiceHandler.java
│ │ │ │ ├── JobMasterWorkerServiceHandler.java
│ │ │ │ ├── command
│ │ │ │ │ └── CommandManager.java
│ │ │ │ ├── common
│ │ │ │ │ └── CmdInfo.java
│ │ │ │ ├── metrics
│ │ │ │ │ └── DistributedCmdMetrics.java
│ │ │ │ ├── plan
│ │ │ │ │ ├── PlanCoordinator.java
│ │ │ │ │ └── PlanTracker.java
│ │ │ │ ├── tracker
│ │ │ │ │ ├── AbstractCmdRunner.java
│ │ │ │ │ ├── CmdJobTracker.java
│ │ │ │ │ ├── CmdRunAttempt.java
│ │ │ │ │ ├── DistLoadCliRunner.java
│ │ │ │ │ ├── MigrateCliRunner.java
│ │ │ │ │ └── PersistRunner.java
│ │ │ │ └── workflow
│ │ │ │ │ └── WorkflowTracker.java
│ │ │ └── meta
│ │ │ │ ├── JobMasterInfo.java
│ │ │ │ ├── JobMasterMasterServiceHandler.java
│ │ │ │ ├── JobMasterSync.java
│ │ │ │ └── RetryHandlingJobMasterMasterClient.java
│ │ │ ├── underfs
│ │ │ └── JobUfsManager.java
│ │ │ ├── web
│ │ │ ├── JobMasterWebServer.java
│ │ │ └── JobWorkerWebServer.java
│ │ │ └── worker
│ │ │ ├── AlluxioJobWorker.java
│ │ │ ├── AlluxioJobWorkerProcess.java
│ │ │ ├── AlluxioJobWorkerRestServiceHandler.java
│ │ │ ├── JobWorker.java
│ │ │ ├── JobWorkerIdRegistry.java
│ │ │ ├── JobWorkerProcess.java
│ │ │ └── job
│ │ │ ├── JobMasterClient.java
│ │ │ ├── RetryHandlingJobMasterClient.java
│ │ │ ├── command
│ │ │ ├── CommandHandlingExecutor.java
│ │ │ └── JobWorkerHealthReporter.java
│ │ │ └── task
│ │ │ ├── PausableThreadPoolExecutor.java
│ │ │ ├── TaskExecutor.java
│ │ │ └── TaskExecutorManager.java
│ └── resources
│ │ └── META-INF
│ │ └── services
│ │ ├── alluxio.job.plan.PlanDefinition
│ │ └── alluxio.job.workflow.WorkflowExecutionFactory
│ └── test
│ ├── java
│ └── alluxio
│ │ ├── job
│ │ ├── command
│ │ │ └── CommandHandlingExecutorTest.java
│ │ ├── plan
│ │ │ ├── BatchedJobDefinitionTest.java
│ │ │ ├── CrashPlanDefinition.java
│ │ │ ├── PlanDefinitionRegistryRule.java
│ │ │ ├── PlanDefinitionRegistryTest.java
│ │ │ ├── SelectExecutorsTest.java
│ │ │ ├── SleepPlanDefinition.java
│ │ │ ├── TestPlanDefinition.java
│ │ │ ├── load
│ │ │ │ └── LoadDefinitionTest.java
│ │ │ ├── migrate
│ │ │ │ ├── MigrateDefinitionRunTaskTest.java
│ │ │ │ └── MigrateDefinitionSelectExecutorsTest.java
│ │ │ ├── persist
│ │ │ │ └── PersistDefinitionTest.java
│ │ │ ├── replicate
│ │ │ │ ├── SetReplicaDefinitionEvictTest.java
│ │ │ │ └── SetReplicaDefinitionReplicateTest.java
│ │ │ └── transform
│ │ │ │ ├── BaseTransformTest.java
│ │ │ │ ├── CompactDefinitionSelectExecutorsTest.java
│ │ │ │ └── format
│ │ │ │ ├── JobPathTest.java
│ │ │ │ ├── ReadWriteTest.java
│ │ │ │ ├── csv
│ │ │ │ └── DecimalTest.java
│ │ │ │ └── orc
│ │ │ │ └── OrcReaderTest.java
│ │ └── workflow
│ │ │ └── WorkflowExecutionRegistryTest.java
│ │ ├── master
│ │ └── job
│ │ │ ├── JobMasterTest.java
│ │ │ ├── command
│ │ │ └── CommandManagerTest.java
│ │ │ ├── plan
│ │ │ ├── PlanCoordinatorTest.java
│ │ │ └── PlanTrackerTest.java
│ │ │ ├── tracker
│ │ │ ├── CliRunnerTest.java
│ │ │ └── CmdJobTrackerTest.java
│ │ │ └── workflow
│ │ │ └── WorkflowTrackerTest.java
│ │ └── worker
│ │ └── job
│ │ └── task
│ │ └── TaskExecutorTest.java
│ └── resources
│ ├── META-INF
│ └── services
│ │ └── alluxio.job.plan.PlanDefinition
│ └── TestOrcFile.columnProjection.orc
├── libexec
└── alluxio-config.sh
├── logserver
├── pom.xml
└── src
│ ├── main
│ └── java
│ │ └── alluxio
│ │ └── logserver
│ │ ├── AlluxioLog4jSocketNode.java
│ │ ├── AlluxioLogServer.java
│ │ └── AlluxioLogServerProcess.java
│ └── test
│ └── java
│ └── alluxio
│ └── logserver
│ └── AlluxioLog4jSocketNodeTest.java
├── microbench
├── pom.xml
├── readme.md
└── src
│ └── main
│ └── java
│ └── alluxio
│ ├── BaseFileStructure.java
│ ├── BaseThreadState.java
│ ├── RpcUtilsBench.java
│ ├── fsmaster
│ ├── BenchStandaloneGrpcServer.java
│ ├── FileSystemBase.java
│ ├── FileSystemBench.java
│ ├── FileSystemMasterBase.java
│ └── FileSystemMasterBench.java
│ ├── inode
│ ├── InodeBenchBase.java
│ ├── InodeBenchRead.java
│ ├── InodeBenchWrite.java
│ ├── RocksBenchBase.java
│ ├── RocksBenchConfig.java
│ ├── RocksBenchRead.java
│ ├── RocksBenchReadWrite.java
│ └── RocksBenchWrite.java
│ ├── invalidation
│ └── cache
│ │ └── InvalidationSyncCacheBench.java
│ ├── snapshot
│ └── SnapshotBench.java
│ └── worker
│ ├── BlockStoreBase.java
│ ├── BlockStoreRandomReadBench.java
│ ├── BlockStoreSequentialReadBench.java
│ ├── BlockWorkerBase.java
│ └── WorkerBenchLoad.java
├── minicluster
├── pom.xml
└── src
│ ├── main
│ └── java
│ │ └── alluxio
│ │ ├── master
│ │ ├── AbstractLocalAlluxioCluster.java
│ │ ├── ClientPool.java
│ │ ├── LocalAlluxioCluster.java
│ │ ├── LocalAlluxioJobCluster.java
│ │ ├── LocalAlluxioMaster.java
│ │ ├── MultiMasterEmbeddedJournalLocalAlluxioCluster.java
│ │ ├── MultiMasterLocalAlluxioCluster.java
│ │ └── TestUtils.java
│ │ └── multi
│ │ └── process
│ │ ├── BaseMaster.java
│ │ ├── Clients.java
│ │ ├── ExternalProcess.java
│ │ ├── LimitedLifeMasterProcess.java
│ │ ├── LimitedLifeWorkerProcess.java
│ │ ├── Master.java
│ │ ├── MasterNetAddress.java
│ │ ├── MultiProcessCluster.java
│ │ ├── PortCoordination.java
│ │ ├── Utils.java
│ │ └── Worker.java
│ └── test
│ ├── java
│ └── alluxio
│ │ └── multi
│ │ └── process
│ │ └── MultiProcessClusterTest.java
│ └── resources
│ └── log4j.properties
├── pom.xml
├── shaded
├── client-hadoop3
│ └── pom.xml
├── client
│ └── pom.xml
├── hadoop
│ └── pom.xml
└── pom.xml
├── shell
├── pom.xml
└── src
│ ├── main
│ ├── java
│ │ └── alluxio
│ │ │ ├── cli
│ │ │ ├── BasicCheckpoint.java
│ │ │ ├── BasicNonByteBufferOperations.java
│ │ │ ├── BasicOperations.java
│ │ │ ├── DocGenerator.java
│ │ │ ├── GetConf.java
│ │ │ ├── HmsTests.java
│ │ │ ├── JournalCrashTest.java
│ │ │ ├── LogLevel.java
│ │ │ ├── RunOperation.java
│ │ │ ├── TestRunner.java
│ │ │ ├── ValidateConf.java
│ │ │ ├── ValidateHdfsMount.java
│ │ │ ├── Version.java
│ │ │ ├── bundler
│ │ │ │ ├── CollectInfo.java
│ │ │ │ ├── TarUtils.java
│ │ │ │ └── command
│ │ │ │ │ ├── AbstractCollectInfoCommand.java
│ │ │ │ │ ├── CollectAlluxioInfoCommand.java
│ │ │ │ │ ├── CollectConfigCommand.java
│ │ │ │ │ ├── CollectEnvCommand.java
│ │ │ │ │ ├── CollectJvmInfoCommand.java
│ │ │ │ │ ├── CollectLogCommand.java
│ │ │ │ │ ├── CollectMetricsCommand.java
│ │ │ │ │ └── ExecuteShellCollectInfoCommand.java
│ │ │ ├── docgen
│ │ │ │ ├── ConfigurationDocGenerator.java
│ │ │ │ └── MetricsDocGenerator.java
│ │ │ ├── fs
│ │ │ │ ├── FileSystemShell.java
│ │ │ │ ├── FileSystemShellUtils.java
│ │ │ │ └── command
│ │ │ │ │ ├── AbstractDistributedJobCommand.java
│ │ │ │ │ ├── AbstractFileSystemCommand.java
│ │ │ │ │ ├── CRC64CheckCommand.java
│ │ │ │ │ ├── CRC64CheckCommandUtils.java
│ │ │ │ │ ├── CatCommand.java
│ │ │ │ │ ├── CheckConsistencyCommand.java
│ │ │ │ │ ├── ChecksumCommand.java
│ │ │ │ │ ├── ChgrpCommand.java
│ │ │ │ │ ├── ChmodCommand.java
│ │ │ │ │ ├── ChownCommand.java
│ │ │ │ │ ├── CopyFromLocalCommand.java
│ │ │ │ │ ├── CopyToLocalCommand.java
│ │ │ │ │ ├── CountCommand.java
│ │ │ │ │ ├── CpCommand.java
│ │ │ │ │ ├── DistributedCpCommand.java
│ │ │ │ │ ├── DistributedLoadUtils.java
│ │ │ │ │ ├── DuCommand.java
│ │ │ │ │ ├── FileSystemCommandUtils.java
│ │ │ │ │ ├── FreeCommand.java
│ │ │ │ │ ├── FreeWorkerCommand.java
│ │ │ │ │ ├── GetCapacityBytesCommand.java
│ │ │ │ │ ├── GetFaclCommand.java
│ │ │ │ │ ├── GetSyncPathListCommand.java
│ │ │ │ │ ├── GetUsedBytesCommand.java
│ │ │ │ │ ├── HeadCommand.java
│ │ │ │ │ ├── HelpCommand.java
│ │ │ │ │ ├── LeaderCommand.java
│ │ │ │ │ ├── LoadCommand.java
│ │ │ │ │ ├── LoadMetadataCommand.java
│ │ │ │ │ ├── LocationCommand.java
│ │ │ │ │ ├── LsCommand.java
│ │ │ │ │ ├── MasterInfoCommand.java
│ │ │ │ │ ├── MkdirCommand.java
│ │ │ │ │ ├── MountCommand.java
│ │ │ │ │ ├── MvCommand.java
│ │ │ │ │ ├── NeedsSyncCommand.java
│ │ │ │ │ ├── PersistCommand.java
│ │ │ │ │ ├── PinCommand.java
│ │ │ │ │ ├── RmCommand.java
│ │ │ │ │ ├── SetFaclCommand.java
│ │ │ │ │ ├── SetReplicationCommand.java
│ │ │ │ │ ├── SetTtlCommand.java
│ │ │ │ │ ├── StartSyncCommand.java
│ │ │ │ │ ├── StatCommand.java
│ │ │ │ │ ├── StopSyncCommand.java
│ │ │ │ │ ├── SyncDirNextTimeCommand.java
│ │ │ │ │ ├── TailCommand.java
│ │ │ │ │ ├── TestCommand.java
│ │ │ │ │ ├── TouchCommand.java
│ │ │ │ │ ├── UnmountCommand.java
│ │ │ │ │ ├── UnpinCommand.java
│ │ │ │ │ ├── UnsetTtlCommand.java
│ │ │ │ │ ├── UpdateMountCommand.java
│ │ │ │ │ └── job
│ │ │ │ │ └── JobAttempt.java
│ │ │ ├── fsadmin
│ │ │ │ ├── FileSystemAdminShell.java
│ │ │ │ ├── FileSystemAdminShellUtils.java
│ │ │ │ ├── command
│ │ │ │ │ ├── AbstractFsAdminCommand.java
│ │ │ │ │ ├── BackupCommand.java
│ │ │ │ │ ├── Context.java
│ │ │ │ │ ├── DecommissionWorkerCommand.java
│ │ │ │ │ ├── DoctorCommand.java
│ │ │ │ │ ├── EnableWorkerCommand.java
│ │ │ │ │ ├── GetBlockInfoCommand.java
│ │ │ │ │ ├── JournalCommand.java
│ │ │ │ │ ├── MetricsCommand.java
│ │ │ │ │ ├── PathConfCommand.java
│ │ │ │ │ ├── ReportCommand.java
│ │ │ │ │ ├── StateLockHoldersCommand.java
│ │ │ │ │ ├── UfsCommand.java
│ │ │ │ │ ├── UpdateConfCommand.java
│ │ │ │ │ └── WorkerAddressUtils.java
│ │ │ │ ├── doctor
│ │ │ │ │ ├── ConfigurationCommand.java
│ │ │ │ │ └── StorageCommand.java
│ │ │ │ ├── journal
│ │ │ │ │ ├── CheckpointCommand.java
│ │ │ │ │ ├── QuorumCommand.java
│ │ │ │ │ ├── QuorumElectCommand.java
│ │ │ │ │ ├── QuorumInfoCommand.java
│ │ │ │ │ └── QuorumRemoveCommand.java
│ │ │ │ ├── metrics
│ │ │ │ │ └── ClearCommand.java
│ │ │ │ ├── pathconf
│ │ │ │ │ ├── AddCommand.java
│ │ │ │ │ ├── ListCommand.java
│ │ │ │ │ ├── RemoveCommand.java
│ │ │ │ │ └── ShowCommand.java
│ │ │ │ └── report
│ │ │ │ │ ├── CapacityCommand.java
│ │ │ │ │ ├── JobServiceMetricsCommand.java
│ │ │ │ │ ├── MetricsCommand.java
│ │ │ │ │ ├── ProxyCommand.java
│ │ │ │ │ ├── SummaryCommand.java
│ │ │ │ │ └── UfsCommand.java
│ │ │ ├── job
│ │ │ │ ├── JobShell.java
│ │ │ │ └── command
│ │ │ │ │ ├── CancelCommand.java
│ │ │ │ │ ├── GetCmdStatusCommand.java
│ │ │ │ │ ├── LeaderCommand.java
│ │ │ │ │ ├── ListCommand.java
│ │ │ │ │ └── StatCommand.java
│ │ │ └── util
│ │ │ │ └── DistributedCommandUtil.java
│ │ │ ├── common
│ │ │ └── RpcPortHealthCheckClient.java
│ │ │ ├── master
│ │ │ ├── AlluxioMasterMonitor.java
│ │ │ ├── MasterHealthCheckClient.java
│ │ │ └── job
│ │ │ │ ├── AlluxioJobMasterMonitor.java
│ │ │ │ └── JobMasterRpcHealthCheckClient.java
│ │ │ ├── proxy
│ │ │ ├── AlluxioProxyMonitor.java
│ │ │ └── ProxyHealthCheckClient.java
│ │ │ └── worker
│ │ │ ├── AlluxioWorkerMonitor.java
│ │ │ ├── WorkerHealthCheckClient.java
│ │ │ └── job
│ │ │ ├── AlluxioJobWorkerMonitor.java
│ │ │ └── JobWorkerHealthCheckClient.java
│ └── resources
│ │ └── fs.man
│ └── test
│ └── java
│ └── alluxio
│ └── cli
│ ├── LogLevelTest.java
│ ├── bundler
│ ├── CollectInfoTest.java
│ ├── InfoCollectorTestUtils.java
│ ├── TarUtilsTest.java
│ └── command
│ │ ├── CollectAlluxioInfoCommandTest.java
│ │ ├── CollectConfCommandTest.java
│ │ ├── CollectEnvCommandTest.java
│ │ └── CollectLogCommandTest.java
│ ├── fs
│ └── command
│ │ └── ChownCommandTest.java
│ └── fsadmin
│ ├── FileSystemAdminShellUtilsTest.java
│ └── report
│ ├── CapacityCommandTest.java
│ ├── JobServiceMetricsCommandTest.java
│ ├── MetricsCommandTest.java
│ ├── ProxyCommandTest.java
│ └── SummaryCommandTest.java
├── stress
├── common
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── alluxio
│ │ │ └── stress
│ │ │ ├── BaseParameters.java
│ │ │ ├── CachingBlockMasterClient.java
│ │ │ ├── GraphGenerator.java
│ │ │ ├── Parameters.java
│ │ │ ├── StressConstants.java
│ │ │ ├── Summary.java
│ │ │ ├── TaskResult.java
│ │ │ ├── client
│ │ │ ├── ClientIOOperation.java
│ │ │ ├── ClientIOParameters.java
│ │ │ ├── ClientIOSummary.java
│ │ │ ├── ClientIOTaskResult.java
│ │ │ ├── CompactionParameters.java
│ │ │ ├── CompactionTaskResult.java
│ │ │ └── CompactionTaskResultStatistics.java
│ │ │ ├── common
│ │ │ ├── AbstractMaxThroughputSummary.java
│ │ │ ├── FileSystemClientType.java
│ │ │ ├── FileSystemParameters.java
│ │ │ ├── GeneralBenchSummary.java
│ │ │ ├── SummaryStatistics.java
│ │ │ └── TaskResultStatistics.java
│ │ │ ├── fuse
│ │ │ ├── FuseIOOperation.java
│ │ │ ├── FuseIOParameters.java
│ │ │ ├── FuseIOSummary.java
│ │ │ └── FuseIOTaskResult.java
│ │ │ ├── graph
│ │ │ ├── BarGraph.java
│ │ │ ├── Graph.java
│ │ │ └── LineGraph.java
│ │ │ ├── job
│ │ │ └── StressBenchConfig.java
│ │ │ ├── jobservice
│ │ │ ├── JobServiceBenchOperation.java
│ │ │ ├── JobServiceBenchParameters.java
│ │ │ ├── JobServiceBenchSummary.java
│ │ │ ├── JobServiceBenchTaskResult.java
│ │ │ ├── JobServiceBenchTaskResultStatistics.java
│ │ │ └── JobServiceMaxThroughputSummary.java
│ │ │ ├── master
│ │ │ ├── MasterBatchTaskParameters.java
│ │ │ ├── MasterBenchBaseParameters.java
│ │ │ ├── MasterBenchParameters.java
│ │ │ ├── MasterBenchSummary.java
│ │ │ ├── MasterBenchTaskResult.java
│ │ │ ├── MasterBenchTaskResultBase.java
│ │ │ ├── MasterBenchTaskResultStatistics.java
│ │ │ ├── MasterMaxThroughputSummary.java
│ │ │ ├── MaxThroughputSummary.java
│ │ │ ├── MultiOperationMasterBenchParameters.java
│ │ │ ├── MultiOperationMasterBenchSummary.java
│ │ │ ├── MultiOperationMasterBenchTaskResult.java
│ │ │ └── Operation.java
│ │ │ ├── rpc
│ │ │ ├── BlockMasterBenchParameters.java
│ │ │ ├── GetPinnedFileIdsParameters.java
│ │ │ ├── RpcBenchParameters.java
│ │ │ ├── RpcTaskResult.java
│ │ │ ├── RpcTaskSummary.java
│ │ │ └── TierAlias.java
│ │ │ └── worker
│ │ │ ├── IOTaskResult.java
│ │ │ ├── IOTaskSummary.java
│ │ │ ├── UfsIOParameters.java
│ │ │ ├── WorkerBenchParameters.java
│ │ │ ├── WorkerBenchSummary.java
│ │ │ └── WorkerBenchTaskResult.java
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ └── stress
│ │ ├── BaseParametersTest.java
│ │ ├── common
│ │ └── GeneralBenchSummaryTest.java
│ │ └── worker
│ │ ├── IOTaskResultTest.java
│ │ └── IOTaskSummaryTest.java
├── pom.xml
└── shell
│ ├── pom.xml
│ └── src
│ ├── main
│ └── java
│ │ └── alluxio
│ │ └── stress
│ │ └── cli
│ │ ├── AbstractStressBench.java
│ │ ├── BatchTask.java
│ │ ├── BatchTaskRunner.java
│ │ ├── Benchmark.java
│ │ ├── GetPinnedFileIdsBench.java
│ │ ├── MasterBatchTask.java
│ │ ├── MaxFileBench.java
│ │ ├── MultiOperationStressMasterBench.java
│ │ ├── RegisterWorkerBench.java
│ │ ├── RpcBench.java
│ │ ├── RpcBenchPreparationUtils.java
│ │ ├── StreamRegisterWorkerBench.java
│ │ ├── StressJobServiceBench.java
│ │ ├── StressMasterBench.java
│ │ ├── StressMasterBenchBase.java
│ │ ├── UfsIOBench.java
│ │ ├── WorkerHeartbeatBench.java
│ │ ├── client
│ │ ├── ClientIOWritePolicy.java
│ │ ├── CompactionBench.java
│ │ └── StressClientIOBench.java
│ │ ├── fuse
│ │ └── FuseIOBench.java
│ │ ├── report
│ │ └── GenerateReport.java
│ │ ├── suite
│ │ ├── AbstractMaxThroughput.java
│ │ ├── JobServiceMaxThroughput.java
│ │ └── MasterMaxThroughput.java
│ │ └── worker
│ │ └── StressWorkerBench.java
│ └── test
│ └── java
│ └── alluxio
│ └── stress
│ └── AbstractStressBenchTest.java
├── table
├── base
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── alluxio
│ │ └── table
│ │ └── ProtoUtils.java
├── client
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── alluxio
│ │ └── client
│ │ └── table
│ │ ├── RetryHandlingTableMasterClient.java
│ │ └── TableMasterClient.java
├── pom.xml
├── server
│ ├── common
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── alluxio
│ │ │ │ │ ├── master
│ │ │ │ │ └── table
│ │ │ │ │ │ └── DatabaseInfo.java
│ │ │ │ │ └── table
│ │ │ │ │ └── common
│ │ │ │ │ ├── BaseConfiguration.java
│ │ │ │ │ ├── BaseProperty.java
│ │ │ │ │ ├── CatalogPathUtils.java
│ │ │ │ │ ├── ConfigurationUtils.java
│ │ │ │ │ ├── Layout.java
│ │ │ │ │ ├── LayoutFactory.java
│ │ │ │ │ ├── LayoutRegistry.java
│ │ │ │ │ ├── UdbPartition.java
│ │ │ │ │ ├── layout
│ │ │ │ │ └── HiveLayout.java
│ │ │ │ │ ├── transform
│ │ │ │ │ ├── TransformContext.java
│ │ │ │ │ ├── TransformDefinition.java
│ │ │ │ │ ├── TransformPlan.java
│ │ │ │ │ └── action
│ │ │ │ │ │ ├── CompactAction.java
│ │ │ │ │ │ ├── TransformAction.java
│ │ │ │ │ │ ├── TransformActionFactory.java
│ │ │ │ │ │ ├── TransformActionRegistry.java
│ │ │ │ │ │ └── TransformActionUtils.java
│ │ │ │ │ └── udb
│ │ │ │ │ ├── PathTranslator.java
│ │ │ │ │ ├── UdbBypassSpec.java
│ │ │ │ │ ├── UdbConfiguration.java
│ │ │ │ │ ├── UdbContext.java
│ │ │ │ │ ├── UdbProperty.java
│ │ │ │ │ ├── UdbTable.java
│ │ │ │ │ ├── UdbUtils.java
│ │ │ │ │ ├── UnderDatabase.java
│ │ │ │ │ ├── UnderDatabaseFactory.java
│ │ │ │ │ └── UnderDatabaseRegistry.java
│ │ │ └── resources
│ │ │ │ └── META-INF
│ │ │ │ └── services
│ │ │ │ ├── alluxio.table.common.LayoutFactory
│ │ │ │ └── alluxio.table.common.transform.action.TransformActionFactory
│ │ │ └── test
│ │ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── table
│ │ │ │ └── common
│ │ │ │ ├── CatalogPathUtilsTest.java
│ │ │ │ ├── TableTestUtils.java
│ │ │ │ ├── layout
│ │ │ │ └── HiveLayoutTest.java
│ │ │ │ ├── transform
│ │ │ │ ├── TransformDefinitionTest.java
│ │ │ │ ├── TransformPlanTest.java
│ │ │ │ └── action
│ │ │ │ │ ├── CompactActionTest.java
│ │ │ │ │ ├── EarlyActionFactory.java
│ │ │ │ │ ├── LateActionFactory.java
│ │ │ │ │ └── TransformActionRegistryTest.java
│ │ │ │ └── udb
│ │ │ │ ├── PathTranslatorTest.java
│ │ │ │ ├── UdbBypassSpecTest.java
│ │ │ │ └── UdbConfigurationTest.java
│ │ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.table.common.transform.action.TransformActionFactory
│ ├── master
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── alluxio
│ │ │ │ │ └── master
│ │ │ │ │ └── table
│ │ │ │ │ ├── AlluxioCatalog.java
│ │ │ │ │ ├── BasePartitionScheme.java
│ │ │ │ │ ├── CatalogConfiguration.java
│ │ │ │ │ ├── CatalogContext.java
│ │ │ │ │ ├── CatalogProperty.java
│ │ │ │ │ ├── Database.java
│ │ │ │ │ ├── DbConfig.java
│ │ │ │ │ ├── DefaultTableMaster.java
│ │ │ │ │ ├── Domain.java
│ │ │ │ │ ├── Partition.java
│ │ │ │ │ ├── PartitionScheme.java
│ │ │ │ │ ├── PartitionedTableScheme.java
│ │ │ │ │ ├── Table.java
│ │ │ │ │ ├── TableMaster.java
│ │ │ │ │ ├── TableMasterClientServiceHandler.java
│ │ │ │ │ ├── TableMasterFactory.java
│ │ │ │ │ ├── UnpartitionedTableScheme.java
│ │ │ │ │ └── transform
│ │ │ │ │ ├── TransformJobInfo.java
│ │ │ │ │ └── TransformManager.java
│ │ │ └── resources
│ │ │ │ └── META-INF
│ │ │ │ └── services
│ │ │ │ └── alluxio.master.MasterFactory
│ │ │ └── test
│ │ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── master
│ │ │ │ └── table
│ │ │ │ ├── AlluxioCatalogTest.java
│ │ │ │ ├── DbConfigTest.java
│ │ │ │ ├── TableMasterFactoryTest.java
│ │ │ │ ├── TestDatabase.java
│ │ │ │ ├── TestUdbFactory.java
│ │ │ │ ├── TestUdbTable.java
│ │ │ │ └── transform
│ │ │ │ └── TransformManagerTest.java
│ │ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.table.common.udb.UnderDatabaseFactory
│ ├── pom.xml
│ └── underdb
│ │ ├── glue
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── alluxio
│ │ │ │ │ └── table
│ │ │ │ │ └── under
│ │ │ │ │ └── glue
│ │ │ │ │ ├── GlueDatabase.java
│ │ │ │ │ ├── GlueDatabaseFactory.java
│ │ │ │ │ ├── GluePartition.java
│ │ │ │ │ ├── GlueTable.java
│ │ │ │ │ ├── GlueUtils.java
│ │ │ │ │ └── Property.java
│ │ │ └── resources
│ │ │ │ └── META-INF
│ │ │ │ └── services
│ │ │ │ └── alluxio.table.common.udb.UnderDatabaseFactory
│ │ │ └── test
│ │ │ └── java
│ │ │ └── alluxio
│ │ │ └── table
│ │ │ └── under
│ │ │ └── glue
│ │ │ ├── GlueDatabaseTest.java
│ │ │ ├── GlueUtilsTest.java
│ │ │ ├── MockGlueDatabase.java
│ │ │ └── RemoteGlueTest.java
│ │ ├── hive
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ ├── java
│ │ │ │ └── alluxio
│ │ │ │ │ └── table
│ │ │ │ │ └── under
│ │ │ │ │ └── hive
│ │ │ │ │ ├── HiveDatabase.java
│ │ │ │ │ ├── HiveDatabaseFactory.java
│ │ │ │ │ ├── HivePartition.java
│ │ │ │ │ ├── HiveTable.java
│ │ │ │ │ ├── HiveUtils.java
│ │ │ │ │ ├── Property.java
│ │ │ │ │ └── util
│ │ │ │ │ ├── AbstractHiveClientPool.java
│ │ │ │ │ ├── CompatibleMetastoreClient.java
│ │ │ │ │ ├── DefaultHiveClientPool.java
│ │ │ │ │ ├── HMSClientFactory.java
│ │ │ │ │ ├── HMSShim.java
│ │ │ │ │ ├── HiveClientPoolCache.java
│ │ │ │ │ └── HiveCompatibility.java
│ │ │ └── resources
│ │ │ │ └── META-INF
│ │ │ │ └── services
│ │ │ │ └── alluxio.table.common.udb.UnderDatabaseFactory
│ │ │ └── test
│ │ │ └── java
│ │ │ └── alluxio
│ │ │ └── table
│ │ │ └── under
│ │ │ └── hive
│ │ │ ├── HiveDatabaseTest.java
│ │ │ └── HiveUtilsTest.java
│ │ └── pom.xml
└── shell
│ ├── pom.xml
│ └── src
│ ├── main
│ └── java
│ │ └── alluxio
│ │ └── cli
│ │ └── table
│ │ ├── TableShell.java
│ │ ├── TableShellUtils.java
│ │ └── command
│ │ ├── AbstractTableCommand.java
│ │ ├── AttachDatabaseCommand.java
│ │ ├── DetachDatabaseCommand.java
│ │ ├── ListDatabasesCommand.java
│ │ ├── LoadTableCommand.java
│ │ ├── SyncDatabaseCommand.java
│ │ ├── TransformStatusCommand.java
│ │ └── TransformTableCommand.java
│ └── test
│ └── java
│ └── alluxio
│ └── cli
│ └── table
│ └── TransformTableCommandTest.java
├── templates
├── markdown.hbs
├── operation.hbs
└── strapdown.html.hbs
├── tests
├── pom.xml
└── src
│ ├── main
│ └── java
│ │ └── alluxio
│ │ └── master
│ │ └── backcompat
│ │ ├── BackwardsCompatibilityJournalGenerator.java
│ │ ├── FsTestOp.java
│ │ ├── Journal.java
│ │ ├── TestOp.java
│ │ ├── Utils.java
│ │ ├── Version.java
│ │ └── ops
│ │ ├── AsyncPersist.java
│ │ ├── CreateDirectory.java
│ │ ├── CreateFile.java
│ │ ├── Delete.java
│ │ ├── Mount.java
│ │ ├── PersistDirectory.java
│ │ ├── PersistFile.java
│ │ ├── Rename.java
│ │ ├── SetAcl.java
│ │ └── UpdateUfsMode.java
│ └── test
│ ├── java
│ └── alluxio
│ │ ├── client
│ │ ├── cli
│ │ │ ├── JournalToolTest.java
│ │ │ ├── fs
│ │ │ │ ├── AbstractFileSystemShellTest.java
│ │ │ │ ├── AbstractShellIntegrationTest.java
│ │ │ │ ├── ConfigurationDocGeneratorTest.java
│ │ │ │ ├── FileSystemShellUtilsTest.java
│ │ │ │ ├── GetConfTest.java
│ │ │ │ ├── JobServiceFaultToleranceShellTest.java
│ │ │ │ └── command
│ │ │ │ │ ├── CatCommandIntegrationTest.java
│ │ │ │ │ ├── CheckConsistencyCommandIntegrationTest.java
│ │ │ │ │ ├── ChecksumCommandIntegrationTest.java
│ │ │ │ │ ├── ChgrpCommandIntegrationTest.java
│ │ │ │ │ ├── ChmodCommandIntegrationTest.java
│ │ │ │ │ ├── ChownCommandIntegrationTest.java
│ │ │ │ │ ├── CopyFromLocalCommandIntegrationTest.java
│ │ │ │ │ ├── CopyToLocalCommandIntegrationTest.java
│ │ │ │ │ ├── CountCommandTest.java
│ │ │ │ │ ├── CpCommandIntegrationTest.java
│ │ │ │ │ ├── DistributedCpCancelTest.java
│ │ │ │ │ ├── DistributedCpCommandTest.java
│ │ │ │ │ ├── DuCommandIntegrationTest.java
│ │ │ │ │ ├── FreeCommandIntegrationTest.java
│ │ │ │ │ ├── HeadCommandIntegrationTest.java
│ │ │ │ │ ├── HelpCommandIntegrationTest.java
│ │ │ │ │ ├── LeaderCommandIntegrationTest.java
│ │ │ │ │ ├── LoadCommandIntegrationTest.java
│ │ │ │ │ ├── LoadMetadataCommandIntegrationTest.java
│ │ │ │ │ ├── LocationCommandIntegrationTest.java
│ │ │ │ │ ├── LsCommandIntegrationTest.java
│ │ │ │ │ ├── LsCommandSecurityIntegrationTest.java
│ │ │ │ │ ├── MkdirCommandIntegrationTest.java
│ │ │ │ │ ├── MountCommandTest.java
│ │ │ │ │ ├── MvCommandIntegrationTest.java
│ │ │ │ │ ├── NeedsSyncCommandIntegrationTest.java
│ │ │ │ │ ├── OldLoadCommandIntegrationTest.java
│ │ │ │ │ ├── PersistCommandTest.java
│ │ │ │ │ ├── PinCommandIntegrationTest.java
│ │ │ │ │ ├── PinCommandMultipleMediaIntegrationTest.java
│ │ │ │ │ ├── RmCommandIntegrationTest.java
│ │ │ │ │ ├── SetFaclCommandIntegrationTest.java
│ │ │ │ │ ├── SetReplicationCommandTest.java
│ │ │ │ │ ├── SetTtlCommandIntegrationTest.java
│ │ │ │ │ ├── StatCommandIntegrationTest.java
│ │ │ │ │ ├── TailCommandIntegrationTest.java
│ │ │ │ │ ├── TestCommandIntegrationTest.java
│ │ │ │ │ ├── TouchCommandIntegrationTest.java
│ │ │ │ │ ├── UnsetTtlTest.java
│ │ │ │ │ └── UpdateMountCommandTest.java
│ │ │ ├── fsadmin
│ │ │ │ ├── AbstractFsAdminShellTest.java
│ │ │ │ ├── BackupCommandIntegrationTest.java
│ │ │ │ ├── BackupCommandStateLockingIntegrationTest.java
│ │ │ │ ├── command
│ │ │ │ │ ├── CapacityCommandIntegrationTest.java
│ │ │ │ │ ├── CheckpointCommandIntegrationTest.java
│ │ │ │ │ ├── DoctorCommandIntegrationTest.java
│ │ │ │ │ ├── GetBlockInfoCommandIntegrationTest.java
│ │ │ │ │ ├── JournalCommandIntegrationTest.java
│ │ │ │ │ ├── MetricsCommandIntegrationTest.java
│ │ │ │ │ ├── PathConfCommandIntegrationTest.java
│ │ │ │ │ ├── QuorumCommandIntegrationTest.java
│ │ │ │ │ ├── ReportCommandIntegrationTest.java
│ │ │ │ │ ├── ReportEmbeddedJournalIntegrationTest.java
│ │ │ │ │ └── UpdateConfIntegrationTest.java
│ │ │ │ ├── metrics
│ │ │ │ │ └── MetricsCommandIntegrationTest.java
│ │ │ │ └── pathconf
│ │ │ │ │ ├── AddCommandIntegrationTest.java
│ │ │ │ │ ├── ListCommandIntegrationTest.java
│ │ │ │ │ ├── RemoveCommandIntegrationTest.java
│ │ │ │ │ └── ShowCommandIntegrationTest.java
│ │ │ └── job
│ │ │ │ ├── CancelCommandTest.java
│ │ │ │ ├── DistributedCmdTest.java
│ │ │ │ ├── DistributedCommandsStatsTest.java
│ │ │ │ ├── JobShellTest.java
│ │ │ │ ├── LeaderCommandTest.java
│ │ │ │ ├── ListCommandTest.java
│ │ │ │ └── StatCommandTest.java
│ │ ├── fs
│ │ │ ├── BlockMasterDeleteLostWorkerIntegrationTest.java
│ │ │ ├── BlockWorkerClientCloseIntegrationTest.java
│ │ │ ├── CheckConsistencyIntegrationTest.java
│ │ │ ├── DirectAccessIntegrationTest.java
│ │ │ ├── FileSystemContextReinitIntegrationTest.java
│ │ │ ├── FileSystemIntegrationTest.java
│ │ │ ├── FileSystemMasterClientIntegrationTest.java
│ │ │ ├── FileSystemMasterIntegrationTest.java
│ │ │ ├── FileSystemMasterRestartIntegrationTest.java
│ │ │ ├── FileSystemReadonlyIntegrationTest.java
│ │ │ ├── FileSystemS3UfsIntegrationTest.java
│ │ │ ├── FileSystemUtilsIntegrationTest.java
│ │ │ ├── FreeAndDeleteIntegrationTest.java
│ │ │ ├── ImpersonationIntegrationTest.java
│ │ │ ├── IsolatedFileSystemIntegrationTest.java
│ │ │ ├── LoadMetadataIntegrationTest.java
│ │ │ ├── LocalCacheManagerIntegrationTest.java
│ │ │ ├── LocalFirstPolicyIntegrationTest.java
│ │ │ ├── MultiUfsMountIntegrationTest.java
│ │ │ ├── PathConfigurationIntegrationTest.java
│ │ │ ├── PersistMultipleMountsIntegrationTest.java
│ │ │ ├── PersistPermissionIntegrationTest.java
│ │ │ ├── PinIntegrationTest.java
│ │ │ ├── ReadOnlyMountIntegrationTest.java
│ │ │ ├── RemoteReadIntegrationTest.java
│ │ │ ├── TtlIntegrationTest.java
│ │ │ ├── UfsSyncIntegrationTest.java
│ │ │ ├── UnderStorageReadIntegrationTest.java
│ │ │ ├── concurrent
│ │ │ │ ├── ConcurrentDeleteIntegrationTest.java
│ │ │ │ ├── ConcurrentFileInStreamIntegrationTest.java
│ │ │ │ ├── ConcurrentFileSystemIntegrationTest.java
│ │ │ │ ├── ConcurrentFileSystemMasterCreateIntegrationTest.java
│ │ │ │ ├── ConcurrentFileSystemMasterLoadMetadataIntegrationTest.java
│ │ │ │ ├── ConcurrentFileSystemMasterSetTtlIntegrationTest.java
│ │ │ │ ├── ConcurrentFileSystemMasterUtils.java
│ │ │ │ ├── ConcurrentRecursiveCreateIntegrationTest.java
│ │ │ │ └── ConcurrentRenameIntegrationTest.java
│ │ │ └── io
│ │ │ │ ├── AbstractFileOutStreamIntegrationTest.java
│ │ │ │ ├── BufferedBlockInStreamIntegrationTest.java
│ │ │ │ ├── FileInStreamDecommissionIntegrationTest.java
│ │ │ │ ├── FileInStreamIntegrationTest.java
│ │ │ │ ├── FileInStreamRehydrationIntegrationTest.java
│ │ │ │ ├── FileOutStreamAsyncWriteIntegrationTest.java
│ │ │ │ ├── FileOutStreamAsyncWriteJobIntegrationTest.java
│ │ │ │ ├── FileOutStreamDecommissionIntegrationTest.java
│ │ │ │ ├── FileOutStreamIntegrationTest.java
│ │ │ │ ├── LocalBlockInStreamIntegrationTest.java
│ │ │ │ └── LocalCacheFileInStreamIntegrationTest.java
│ │ ├── fuse
│ │ │ ├── AbstractFuseIntegrationTest.java
│ │ │ ├── JNIFuseIntegrationTest.java
│ │ │ ├── JNRFuseIntegrationTest.java
│ │ │ └── file
│ │ │ │ ├── AbstractFuseFileStreamIntegrationTest.java
│ │ │ │ ├── FuseFileInOrOutStreamIntegrationTest.java
│ │ │ │ ├── FuseFileInStreamIntegrationTest.java
│ │ │ │ ├── FuseFileOutStreamIntegrationTest.java
│ │ │ │ └── MixedFuseStreamIntegrationTest.java
│ │ ├── hadoop
│ │ │ ├── AbstractIOMapper.java
│ │ │ ├── AccumulatingReducer.java
│ │ │ ├── DFSIOIntegrationTest.java
│ │ │ ├── FileSystemAclIntegrationTest.java
│ │ │ ├── FileSystemBlockLocationIntegrationTest.java
│ │ │ ├── FileSystemIntegrationTest.java
│ │ │ ├── FileSystemRenameIntegrationTest.java
│ │ │ ├── FileSystemStatisticsTest.java
│ │ │ ├── FileSystemUriIntegrationTest.java
│ │ │ ├── HdfsFileInputStreamIntegrationTest.java
│ │ │ └── contract
│ │ │ │ ├── FileSystemContract.java
│ │ │ │ ├── FileSystemContractCreateIntegrationTest.java
│ │ │ │ ├── FileSystemContractDeleteIntegrationTest.java
│ │ │ │ ├── FileSystemContractLoadedIntegrationTest.java
│ │ │ │ ├── FileSystemContractMkdirIntegrationTest.java
│ │ │ │ ├── FileSystemContractOpenIntegrationTest.java
│ │ │ │ ├── FileSystemContractRenameIntegrationTest.java
│ │ │ │ └── FileSystemContractSeekIntegrationTest.java
│ │ ├── meta
│ │ │ └── MetaMasterIntegrationTest.java
│ │ └── rest
│ │ │ ├── AlluxioMasterRestApiTest.java
│ │ │ ├── AlluxioWorkerRestApiTest.java
│ │ │ ├── JobMasterClientRestApiTest.java
│ │ │ ├── JobMasterRestApiTest.java
│ │ │ ├── RestApiTest.java
│ │ │ ├── S3ClientRestApiTest.java
│ │ │ ├── TestCase.java
│ │ │ ├── TestCaseOptions.java
│ │ │ └── TestCaseOptionsTest.java
│ │ ├── job
│ │ ├── JobIntegrationTest.java
│ │ ├── master
│ │ │ ├── JobMasterIntegrationTest.java
│ │ │ └── LostWorkerIntegrationTest.java
│ │ ├── plan
│ │ │ ├── load
│ │ │ │ └── LoadIntegrationTest.java
│ │ │ ├── migrate
│ │ │ │ └── MigrateIntegrationTest.java
│ │ │ ├── persist
│ │ │ │ └── PersistIntegrationTest.java
│ │ │ ├── replicate
│ │ │ │ ├── AdjustJobTestUtils.java
│ │ │ │ ├── SetReplicaEvictIntegrationTest.java
│ │ │ │ └── SetReplicaReplicateIntegrationTest.java
│ │ │ └── transform
│ │ │ │ └── format
│ │ │ │ ├── TableReaderIntegrationTest.java
│ │ │ │ ├── TableWriterIntegrationTest.java
│ │ │ │ └── parquet
│ │ │ │ └── ParquetTestUtils.java
│ │ ├── util
│ │ │ └── JobTestUtils.java
│ │ └── workflow
│ │ │ └── composite
│ │ │ └── CompositeIntegrationTest.java
│ │ ├── master
│ │ └── PortRegistryTest.java
│ │ ├── server
│ │ ├── auth
│ │ │ ├── ClusterInitializationIntegrationTest.java
│ │ │ └── MasterClientAuthenticationIntegrationTest.java
│ │ ├── block
│ │ │ ├── BlockMasterRegisterStreamIntegrationTest.java
│ │ │ ├── BlockWorkerRegisterStreamIntegrationTest.java
│ │ │ └── RegisterStreamTestUtils.java
│ │ ├── configuration
│ │ │ └── ConfigCheckerIntegrationTest.java
│ │ ├── ft
│ │ │ ├── FileSystemMasterFaultToleranceIntegrationTest.java
│ │ │ ├── FileSystemMasterMergeJournalContextIntegrationTest.java
│ │ │ ├── FlakyUfsIntegrationTest.java
│ │ │ ├── MasterFailoverIntegrationTest.java
│ │ │ ├── MultiWorkerIntegrationTest.java
│ │ │ ├── ZookeeperFailureIntegrationTest.java
│ │ │ └── journal
│ │ │ │ ├── BlockMasterJournalIntegrationTest.java
│ │ │ │ ├── JournalBackupIntegrationTest.java
│ │ │ │ ├── JournalCheckpointIntegrationTest.java
│ │ │ │ ├── JournalIntegrationTest.java
│ │ │ │ ├── JournalMigrationIntegrationTest.java
│ │ │ │ ├── JournalReplayIntegrationTest.java
│ │ │ │ ├── JournalShutdownIntegrationTest.java
│ │ │ │ ├── MetaMasterJournalTest.java
│ │ │ │ ├── MultiMasterJournalTest.java
│ │ │ │ ├── MultiProcessCheckpointTest.java
│ │ │ │ ├── TriggeredCheckpointTest.java
│ │ │ │ ├── raft
│ │ │ │ ├── EmbeddedJournalIntegrationTestBase.java
│ │ │ │ ├── EmbeddedJournalIntegrationTestFaultTolerance.java
│ │ │ │ ├── EmbeddedJournalIntegrationTestResizing.java
│ │ │ │ └── EmbeddedJournalIntegrationTestTransferLeadership.java
│ │ │ │ └── ufs
│ │ │ │ ├── RenameFailureJournalTest.java
│ │ │ │ ├── SecondaryMasterTest.java
│ │ │ │ ├── UfsConfigurationJournalTest.java
│ │ │ │ └── UfsJournalIntegrationTest.java
│ │ ├── health
│ │ │ ├── BlockMasterIntegrityIntegrationTest.java
│ │ │ ├── JobMasterHealthCheckClientIntegrationTest.java
│ │ │ ├── JobWorkerHealthCheckClientIntegrationTest.java
│ │ │ ├── MasterHealthCheckClientIntegrationTest.java
│ │ │ ├── ProxyHealthCheckClientIntegrationTest.java
│ │ │ └── WorkerHealthCheckClientIntegrationTest.java
│ │ ├── tieredstore
│ │ │ ├── CapacityUsageIntegrationTest.java
│ │ │ ├── LostStorageIntegrationTest.java
│ │ │ ├── SpecificTierWriteIntegrationTest.java
│ │ │ ├── TierPromoteIntegrationTest.java
│ │ │ ├── TieredStoreBlockCorruptionIntegrationTest.java
│ │ │ └── TieredStoreIntegrationTest.java
│ │ └── worker
│ │ │ ├── PagedBlockStoreIntegrationTest.java
│ │ │ ├── WorkerAllMasterRegistrationTest.java
│ │ │ ├── WorkerFuseIntegrationTest.java
│ │ │ └── WorkerMetadataSyncIntegrationTest.java
│ │ ├── stress
│ │ ├── AbstractStressBenchIntegrationTest.java
│ │ ├── BatchTaskRunnerIntegrationTest.java
│ │ ├── StressClientIOBenchIntegrationTest.java
│ │ ├── StressMasterBenchIntegrationTest.java
│ │ └── StressWorkerBenchIntegrationTest.java
│ │ ├── testutils
│ │ ├── AlluxioOperationThread.java
│ │ ├── BaseIntegrationTest.java
│ │ ├── IntegrationTestUtils.java
│ │ ├── LocalAlluxioClusterResource.java
│ │ ├── PersistenceTestUtils.java
│ │ ├── master
│ │ │ ├── FsMasterResource.java
│ │ │ └── MasterTestUtils.java
│ │ └── underfs
│ │ │ ├── ConfExpectingUnderFileSystemFactory.java
│ │ │ ├── UnderFileSystemTestUtils.java
│ │ │ ├── delegating
│ │ │ ├── DelegatingUnderFileSystem.java
│ │ │ └── DelegatingUnderFileSystemFactory.java
│ │ │ └── sleeping
│ │ │ ├── SleepingUnderFileSystem.java
│ │ │ ├── SleepingUnderFileSystemFactory.java
│ │ │ ├── SleepingUnderFileSystemOptions.java
│ │ │ └── SleepingUnderFileSystemOptionsTest.java
│ │ └── web
│ │ ├── ServiceSocketBindIntegrationTest.java
│ │ └── WebServerIntegrationTest.java
│ └── resources
│ ├── META-INF
│ └── services
│ │ └── alluxio.table.common.udb.UnderDatabaseFactory
│ ├── contract
│ └── alluxiofs.xml
│ ├── log4j.properties
│ └── old_journals
│ ├── backup-1.8.0
│ └── journal-1.8.0
│ ├── BlockMaster
│ └── v1
│ │ ├── _format_1534449775823
│ │ └── logs
│ │ └── 0x0-0x7fffffffffffffff
│ ├── FileSystemMaster
│ └── v1
│ │ ├── _format_1534449775832
│ │ └── logs
│ │ └── 0x0-0x7fffffffffffffff
│ ├── MetaMaster
│ └── v1
│ │ └── _format_1534449775839
│ └── MetricsMaster
│ └── v1
│ └── _format_1534449775847
├── underfs
├── abfs
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── abfs
│ │ │ │ ├── AbfsUnderFileSystem.java
│ │ │ │ └── AbfsUnderFileSystemFactory.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ └── underfs
│ │ └── abfs
│ │ └── AbfsUnderFileSystemFactoryTest.java
├── adl
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── adl
│ │ │ │ ├── AdlUnderFileSystem.java
│ │ │ │ └── AdlUnderFileSystemFactory.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── adl
│ │ │ └── AdlUnderFileSystemFactoryTest.java
│ │ └── resources
│ │ └── log4j.properties
├── cephfs-hadoop
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── cephfshadoop
│ │ │ ├── CephfsHadoopUnderFileSystem.java
│ │ │ └── CephfsHadoopUnderFileSystemFactory.java
│ │ └── resources
│ │ └── META-INF
│ │ └── services
│ │ └── alluxio.underfs.UnderFileSystemFactory
├── cephfs
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── cephfs
│ │ │ ├── CephFSUnderFileSystem.java
│ │ │ ├── CephFSUnderFileSystemFactory.java
│ │ │ ├── CephInputStream.java
│ │ │ ├── CephOutputStream.java
│ │ │ └── CephSeekableInputStream.java
│ │ └── resources
│ │ └── META-INF
│ │ └── services
│ │ └── alluxio.underfs.UnderFileSystemFactory
├── cos
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── cos
│ │ │ ├── AlluxioCosException.java
│ │ │ ├── COSInputStream.java
│ │ │ ├── COSOutputStream.java
│ │ │ ├── COSUnderFileSystem.java
│ │ │ └── COSUnderFileSystemFactory.java
│ │ └── resources
│ │ └── META-INF
│ │ └── services
│ │ └── alluxio.underfs.UnderFileSystemFactory
├── cosn
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java-templates
│ │ │ └── alluxio
│ │ │ │ └── CosnUfsConstants.java
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── cosn
│ │ │ │ ├── CosNUnderFileSystemFactory.java
│ │ │ │ └── CosnUnderFileSystem.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── cosn
│ │ │ └── CosNUnderFileSystemFactoryTest.java
│ │ └── resources
│ │ └── log4j.properties
├── gcs
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── gcs
│ │ │ │ ├── GCSInputStream.java
│ │ │ │ ├── GCSOutputStream.java
│ │ │ │ ├── GCSUnderFileSystem.java
│ │ │ │ ├── GCSUnderFileSystemFactory.java
│ │ │ │ ├── GCSUtils.java
│ │ │ │ └── v2
│ │ │ │ ├── GCSV2InputStream.java
│ │ │ │ ├── GCSV2OutputStream.java
│ │ │ │ └── GCSV2UnderFileSystem.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── gcs
│ │ │ ├── GCSUnderFileSystemFactoryTest.java
│ │ │ ├── GCSUnderFileSystemTest.java
│ │ │ └── GCSUtilsTest.java
│ │ └── resources
│ │ └── log4j.properties
├── hdfs
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java-templates
│ │ │ └── alluxio
│ │ │ │ └── UfsConstants.java
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── hdfs
│ │ │ │ ├── AlluxioHdfsException.java
│ │ │ │ ├── HdfsAclProvider.java
│ │ │ │ ├── HdfsActiveSyncProvider.java
│ │ │ │ ├── HdfsPositionedUnderFileInputStream.java
│ │ │ │ ├── HdfsUnderFileInputStream.java
│ │ │ │ ├── HdfsUnderFileOutputStream.java
│ │ │ │ ├── HdfsUnderFileSystem.java
│ │ │ │ ├── HdfsUnderFileSystemFactory.java
│ │ │ │ ├── HdfsVersion.java
│ │ │ │ ├── NoopHdfsAclProvider.java
│ │ │ │ ├── NoopHdfsActiveSyncProvider.java
│ │ │ │ ├── acl
│ │ │ │ └── SupportedHdfsAclProvider.java
│ │ │ │ └── activesync
│ │ │ │ └── SupportedHdfsActiveSyncProvider.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── hdfs
│ │ │ ├── HdfsUnderFileSystemFactoryTest.java
│ │ │ ├── HdfsUnderFileSystemTest.java
│ │ │ ├── HdfsVersionTest.java
│ │ │ └── PreadSeekableStream.java
│ │ └── resources
│ │ └── log4j.properties
├── kodo
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── kodo
│ │ │ │ ├── KodoClient.java
│ │ │ │ ├── KodoInputStream.java
│ │ │ │ ├── KodoOutputStream.java
│ │ │ │ ├── KodoUnderFileSystem.java
│ │ │ │ └── KodoUnderFileSystemFactory.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ └── underfs
│ │ └── kodo
│ │ ├── KodoOutputStreamTest.java
│ │ ├── KodoUnderFileSystemFactoryTest.java
│ │ └── KodoUnderFileSystemTest.java
├── local
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── local
│ │ │ │ ├── LocalUnderFileSystem.java
│ │ │ │ └── LocalUnderFileSystemFactory.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── local
│ │ │ ├── LocalUnderFileSystemFactoryTest.java
│ │ │ └── LocalUnderFileSystemTest.java
│ │ └── resources
│ │ └── log4j.properties
├── obs
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── obs
│ │ │ │ ├── OBSInputStream.java
│ │ │ │ ├── OBSLowLevelOutputStream.java
│ │ │ │ ├── OBSOutputStream.java
│ │ │ │ ├── OBSUnderFileSystem.java
│ │ │ │ ├── OBSUnderFileSystemFactory.java
│ │ │ │ └── ObsClientExt.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ └── underfs
│ │ └── obs
│ │ ├── OBSInputStreamTest.java
│ │ ├── OBSLowLevelOutputStreamTest.java
│ │ ├── OBSOutputStreamTest.java
│ │ ├── OBSUnderFileSystemFactoryTest.java
│ │ └── OBSUnderFileSystemTest.java
├── oss
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── oss
│ │ │ │ ├── OSSInputStream.java
│ │ │ │ ├── OSSLowLevelOutputStream.java
│ │ │ │ ├── OSSOutputStream.java
│ │ │ │ ├── OSSUnderFileSystem.java
│ │ │ │ ├── OSSUnderFileSystemFactory.java
│ │ │ │ └── StsOssClientProvider.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── oss
│ │ │ ├── OSSInputStreamTest.java
│ │ │ ├── OSSLowLevelOutputStreamTest.java
│ │ │ ├── OSSOutputStreamTest.java
│ │ │ ├── OSSUnderFileSystemFactoryTest.java
│ │ │ ├── OSSUnderFileSystemTest.java
│ │ │ └── StsOssClientProviderTest.java
│ │ └── resources
│ │ └── log4j.properties
├── ozone
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ ├── java-templates
│ │ └── alluxio
│ │ │ └── OzoneUfsConstants.java
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── ozone
│ │ │ ├── OzoneUnderFileSystem.java
│ │ │ └── OzoneUnderFileSystemFactory.java
│ │ └── resources
│ │ └── META-INF
│ │ └── services
│ │ └── alluxio.underfs.UnderFileSystemFactory
├── pom.xml
├── s3a
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── s3a
│ │ │ │ ├── AlluxioS3Exception.java
│ │ │ │ ├── S3AInputStream.java
│ │ │ │ ├── S3ALowLevelOutputStream.java
│ │ │ │ ├── S3AOutputStream.java
│ │ │ │ ├── S3AUnderFileSystem.java
│ │ │ │ ├── S3AUnderFileSystemFactory.java
│ │ │ │ └── S3AUtils.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── s3a
│ │ │ ├── S3ALowLevelOutputStreamTest.java
│ │ │ ├── S3AOutputStreamTest.java
│ │ │ ├── S3AUnderFileSystemFactoryTest.java
│ │ │ ├── S3AUnderFileSystemMockServerTest.java
│ │ │ ├── S3AUnderFileSystemTest.java
│ │ │ └── S3AUtilsTest.java
│ │ └── resources
│ │ └── log4j.properties
├── swift
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── swift
│ │ │ │ ├── KeystoneV3Access.java
│ │ │ │ ├── KeystoneV3AccessProvider.java
│ │ │ │ ├── MidPartLongRange.java
│ │ │ │ ├── SwiftInputStream.java
│ │ │ │ ├── SwiftMockOutputStream.java
│ │ │ │ ├── SwiftOutputStream.java
│ │ │ │ ├── SwiftUnderFileSystem.java
│ │ │ │ ├── SwiftUnderFileSystemFactory.java
│ │ │ │ └── http
│ │ │ │ └── SwiftDirectClient.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── swift
│ │ │ ├── SwiftOutputStreamTest.java
│ │ │ └── SwiftUnderFileSystemFactoryTest.java
│ │ └── resources
│ │ └── log4j.properties
├── tos
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── tos
│ │ │ │ ├── AlluxioTosException.java
│ │ │ │ ├── TOSInputStream.java
│ │ │ │ ├── TOSLowLevelOutputStream.java
│ │ │ │ ├── TOSOutputStream.java
│ │ │ │ ├── TOSUnderFileSystem.java
│ │ │ │ └── TOSUnderFileSystemFactory.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ └── java
│ │ └── alluxio
│ │ └── underfs
│ │ └── tos
│ │ ├── TOSInputStreamTest.java
│ │ ├── TOSLowLevelOutputStreamTest.java
│ │ ├── TOSOutputStreamTest.java
│ │ ├── TOSUnderFileSystemFactoryTest.java
│ │ └── TOSUnderFileSystemTest.java
├── wasb
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── alluxio
│ │ │ │ └── underfs
│ │ │ │ └── wasb
│ │ │ │ ├── WasbUnderFileSystem.java
│ │ │ │ └── WasbUnderFileSystemFactory.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ └── services
│ │ │ └── alluxio.underfs.UnderFileSystemFactory
│ │ └── test
│ │ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── wasb
│ │ │ └── WasbUnderFileSystemFactoryTest.java
│ │ └── resources
│ │ └── log4j.properties
└── web
│ ├── pom.xml
│ └── src
│ ├── main
│ ├── java
│ │ └── alluxio
│ │ │ └── underfs
│ │ │ └── web
│ │ │ ├── WebUnderFileSystem.java
│ │ │ └── WebUnderFileSystemFactory.java
│ └── resources
│ │ └── META-INF
│ │ └── services
│ │ └── alluxio.underfs.UnderFileSystemFactory
│ └── test
│ ├── java
│ └── alluxio
│ │ └── underfs
│ │ └── web
│ │ ├── WebUnderFileSystemFactoryTest.java
│ │ └── WebUnderFileSystemTest.java
│ └── resources
│ └── log4j.properties
└── webui
├── .nvmrc
├── README.md
├── common
├── .eslintignore
├── .eslintrc.js
├── .nvmrc
├── .prettierrc.js
├── npm-shrinkwrap.json
├── package.json
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
├── src
│ ├── App.test.tsx
│ ├── App.tsx
│ ├── __snapshots__
│ │ └── App.test.tsx.snap
│ ├── components
│ │ ├── Configuration
│ │ │ ├── Configuration.scss
│ │ │ ├── Configuration.test.tsx
│ │ │ ├── Configuration.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Configuration.test.tsx.snap
│ │ ├── FileView
│ │ │ ├── FileView.test.tsx
│ │ │ ├── FileView.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── FileView.test.tsx.snap
│ │ ├── Footer
│ │ │ ├── Footer.scss
│ │ │ ├── Footer.test.tsx
│ │ │ ├── Footer.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Footer.test.tsx.snap
│ │ ├── HOCs
│ │ │ ├── withErrors
│ │ │ │ ├── __snapshots__
│ │ │ │ │ └── withErrors.test.tsx.snap
│ │ │ │ ├── withErrors.test.tsx
│ │ │ │ └── withErrors.tsx
│ │ │ ├── withFetchData
│ │ │ │ ├── __snapshots__
│ │ │ │ │ └── withFetchData.test.tsx.snap
│ │ │ │ ├── withFetchData.test.tsx
│ │ │ │ └── withFetchData.tsx
│ │ │ ├── withFetchDataFromPath
│ │ │ │ ├── __snapshots__
│ │ │ │ │ └── withFetchDataFromPath.test.tsx.snap
│ │ │ │ ├── withFetchDataFromPath.test.tsx
│ │ │ │ └── withFetchDataFromPath.tsx
│ │ │ ├── withFluidContainer
│ │ │ │ ├── __snapshots__
│ │ │ │ │ └── withFluidContainer.test.tsx.snap
│ │ │ │ ├── withFluidContainer.test.tsx
│ │ │ │ └── withFluidContainer.tsx
│ │ │ ├── withLoadingMessage
│ │ │ │ ├── __snapshots__
│ │ │ │ │ └── withLoadingMessage.test.tsx.snap
│ │ │ │ ├── withLoadingMessage.test.tsx
│ │ │ │ └── withLoadingMessage.tsx
│ │ │ └── withTextAreaResize
│ │ │ │ ├── __snapshots__
│ │ │ │ └── withTextAreaResize.test.tsx.snap
│ │ │ │ ├── withTextAreaResize.test.tsx
│ │ │ │ └── withTextAreaResize.tsx
│ │ ├── Header
│ │ │ ├── Header.scss
│ │ │ ├── Header.test.tsx
│ │ │ ├── Header.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Header.test.tsx.snap
│ │ ├── LineGraph
│ │ │ ├── LineGraph.scss
│ │ │ ├── LineGraph.test.tsx
│ │ │ ├── LineGraph.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── LineGraph.test.tsx.snap
│ │ ├── LoadingMessage
│ │ │ ├── LoadingMessage.scss
│ │ │ ├── LoadingMessage.test.tsx
│ │ │ ├── LoadingMessage.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── LoadingMessage.test.tsx.snap
│ │ ├── Logs
│ │ │ ├── Logs.test.tsx
│ │ │ ├── Logs.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Logs.test.tsx.snap
│ │ ├── Paginator
│ │ │ ├── Paginator.scss
│ │ │ ├── Paginator.test.tsx
│ │ │ ├── Paginator.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Paginator.test.tsx.snap
│ │ ├── SlackButton
│ │ │ ├── SlackButton.scss
│ │ │ ├── SlackButton.test.tsx
│ │ │ ├── SlackButton.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── SlackButton.test.tsx.snap
│ │ ├── Stacks
│ │ │ ├── Stacks.test.tsx
│ │ │ ├── Stacks.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Stacks.test.tsx.snap
│ │ └── index.tsx
│ ├── constants
│ │ ├── index.tsx
│ │ ├── scss
│ │ │ ├── _themeCustomization.scss
│ │ │ └── _themeVariables.scss
│ │ └── types
│ │ │ ├── IAlertErrors.tsx
│ │ │ ├── ICommonState.tsx
│ │ │ ├── IConfigTriple.tsx
│ │ │ ├── ICounter.tsx
│ │ │ ├── IFileBlockInfo.tsx
│ │ │ ├── IFileInfo.tsx
│ │ │ ├── IFileViewData.tsx
│ │ │ ├── INavigationData.tsx
│ │ │ └── IRequest.tsx
│ ├── images
│ │ ├── alluxio-logo-horizontal-tight.svg
│ │ ├── alluxio-mark-tight-sm.svg
│ │ └── icon-slack.svg
│ ├── index.scss
│ ├── index.tsx
│ ├── react-app-env.d.ts
│ ├── store
│ │ ├── config
│ │ │ ├── actions.tsx
│ │ │ ├── reducer.tsx
│ │ │ ├── sagas.tsx
│ │ │ └── types.tsx
│ │ ├── logs
│ │ │ ├── actions.tsx
│ │ │ ├── reducer.tsx
│ │ │ ├── sagas.tsx
│ │ │ └── types.tsx
│ │ ├── refresh
│ │ │ ├── actions.tsx
│ │ │ ├── reducer.tsx
│ │ │ └── types.tsx
│ │ └── stacks
│ │ │ ├── actions.tsx
│ │ │ ├── reducer.tsx
│ │ │ ├── sagas.tsx
│ │ │ └── types.tsx
│ └── utilities
│ │ ├── index.tsx
│ │ ├── misc
│ │ ├── autoRefresh.tsx
│ │ ├── bytesToString.tsx
│ │ ├── createAlertErrors.tsx
│ │ ├── disableFormSubmit.tsx
│ │ ├── getDebouncedFunction.tsx
│ │ ├── getDisplayName.tsx
│ │ ├── isExternalLink.tsx
│ │ ├── queryStringUtils.test.tsx
│ │ ├── queryStringUtils.tsx
│ │ └── renderFileNameLink.tsx
│ │ ├── nivo
│ │ └── transformToNivoFormat.tsx
│ │ └── saga
│ │ └── getSagaRequest.tsx
├── tsconfig.json
└── tslint.json
├── lerna.json
├── master
├── .env
├── .env.development
├── .env.production
├── .eslintignore
├── .eslintrc.js
├── .nvmrc
├── .prettierrc.js
├── config-overrides.js
├── npm-shrinkwrap.json
├── package.json
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
├── src
│ ├── configureStore.tsx
│ ├── constants
│ │ ├── data
│ │ │ ├── footerNavigation.tsx
│ │ │ ├── headerNavigation.tsx
│ │ │ └── routePaths.tsx
│ │ ├── index.tsx
│ │ └── types
│ │ │ ├── IJournalDiskInfo.tsx
│ │ │ ├── IMasterInfo.tsx
│ │ │ ├── INodeInfo.tsx
│ │ │ ├── IScopedPropertyInfo.tsx
│ │ │ └── IStorageTierInfo.tsx
│ ├── containers
│ │ ├── App
│ │ │ ├── App.scss
│ │ │ ├── App.test.tsx
│ │ │ ├── App.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── App.test.tsx.snap
│ │ ├── index.tsx
│ │ └── pages
│ │ │ ├── Browse
│ │ │ ├── Browse.scss
│ │ │ ├── Browse.test.tsx
│ │ │ ├── Browse.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Browse.test.tsx.snap
│ │ │ ├── Data
│ │ │ ├── Data.test.tsx
│ │ │ ├── Data.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Data.test.tsx.snap
│ │ │ ├── MasterConfiguration
│ │ │ ├── MasterConfiguration.test.tsx
│ │ │ ├── MasterConfiguration.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── MasterConfiguration.test.tsx.snap
│ │ │ ├── MasterLogs
│ │ │ └── MasterLogs.tsx
│ │ │ ├── MasterStacks
│ │ │ ├── MasterStacks.test.tsx
│ │ │ ├── MasterStacks.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── MasterStacks.test.tsx.snap
│ │ │ ├── Masters
│ │ │ ├── Masters.test.tsx
│ │ │ ├── Masters.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Masters.test.tsx.snap
│ │ │ ├── Metrics
│ │ │ ├── Metrics.test.tsx
│ │ │ ├── Metrics.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Metrics.test.tsx.snap
│ │ │ ├── MountTable
│ │ │ ├── MountTable.test.tsx
│ │ │ ├── MountTable.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── MountTable.test.tsx.snap
│ │ │ ├── Overview
│ │ │ ├── Overview.test.tsx
│ │ │ ├── Overview.tsx
│ │ │ └── __snapshots__
│ │ │ │ └── Overview.test.tsx.snap
│ │ │ └── Workers
│ │ │ ├── Workers.test.tsx
│ │ │ ├── Workers.tsx
│ │ │ └── __snapshots__
│ │ │ └── Workers.test.tsx.snap
│ ├── index.scss
│ ├── index.tsx
│ ├── react-app-env.d.ts
│ └── store
│ │ ├── browse
│ │ ├── actions.tsx
│ │ ├── reducer.tsx
│ │ ├── sagas.tsx
│ │ └── types.tsx
│ │ ├── data
│ │ ├── actions.tsx
│ │ ├── reducer.tsx
│ │ ├── sagas.tsx
│ │ └── types.tsx
│ │ ├── index.tsx
│ │ ├── init
│ │ ├── actions.tsx
│ │ ├── reducer.tsx
│ │ ├── sagas.tsx
│ │ └── types.tsx
│ │ ├── masters
│ │ ├── actions.tsx
│ │ ├── reducer.tsx
│ │ ├── sagas.tsx
│ │ └── types.tsx
│ │ ├── metrics
│ │ ├── actions.tsx
│ │ ├── reducer.tsx
│ │ ├── sagas.tsx
│ │ └── types.tsx
│ │ ├── mounttable
│ │ ├── actions.tsx
│ │ ├── reducer.tsx
│ │ ├── sagas.tsx
│ │ └── types.tsx
│ │ ├── overview
│ │ ├── actions.tsx
│ │ ├── reducer.tsx
│ │ ├── sagas.tsx
│ │ └── types.tsx
│ │ └── workers
│ │ ├── actions.tsx
│ │ ├── reducer.tsx
│ │ ├── sagas.tsx
│ │ └── types.tsx
├── tsconfig.json
└── tslint.json
├── npm-shrinkwrap.json
├── package.json
├── pom.xml
└── worker
├── .env
├── .env.development
├── .env.production
├── .eslintignore
├── .eslintrc.js
├── .nvmrc
├── .prettierrc.js
├── config-overrides.js
├── images.d.ts
├── npm-shrinkwrap.json
├── package.json
├── public
├── favicon.ico
├── index.html
└── manifest.json
├── src
├── configureStore.tsx
├── constants
│ ├── data
│ │ ├── footerNavigation.tsx
│ │ ├── headerNavigation.tsx
│ │ └── routePaths.tsx
│ ├── index.tsx
│ └── types
│ │ └── IStorageTierInfo.tsx
├── containers
│ ├── App
│ │ ├── App.scss
│ │ ├── App.test.tsx
│ │ ├── App.tsx
│ │ └── __snapshots__
│ │ │ └── App.test.tsx.snap
│ ├── index.tsx
│ └── pages
│ │ ├── BlockInfo
│ │ ├── BlockInfo.test.tsx
│ │ ├── BlockInfo.tsx
│ │ └── __snapshots__
│ │ │ └── BlockInfo.test.tsx.snap
│ │ ├── Metrics
│ │ ├── Metrics.test.tsx
│ │ ├── Metrics.tsx
│ │ └── __snapshots__
│ │ │ └── Metrics.test.tsx.snap
│ │ ├── Overview
│ │ ├── Overview.test.tsx
│ │ ├── Overview.tsx
│ │ └── __snapshots__
│ │ │ └── Overview.test.tsx.snap
│ │ ├── WorkerConfiguration
│ │ ├── WorkerConfiguration.test.tsx
│ │ ├── WorkerConfiguration.tsx
│ │ └── __snapshots__
│ │ │ └── WorkerConfiguration.test.tsx.snap
│ │ ├── WorkerLogs
│ │ ├── WorkerLogs.test.tsx
│ │ ├── WorkerLogs.tsx
│ │ └── __snapshots__
│ │ │ └── WorkerLogs.test.tsx.snap
│ │ └── WorkerStacks
│ │ └── WorkerStacks.tsx
├── index.scss
├── index.tsx
├── react-app-env.d.ts
└── store
│ ├── blockInfo
│ ├── actions.tsx
│ ├── reducer.tsx
│ ├── sagas.tsx
│ └── types.tsx
│ ├── index.tsx
│ ├── init
│ ├── actions.tsx
│ ├── reducer.tsx
│ ├── sagas.tsx
│ └── types.tsx
│ ├── metrics
│ ├── actions.tsx
│ ├── reducer.tsx
│ ├── sagas.tsx
│ └── types.tsx
│ └── overview
│ ├── actions.tsx
│ ├── reducer.tsx
│ ├── sagas.tsx
│ └── types.tsx
├── tsconfig.json
└── tslint.json
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/ISSUE_TEMPLATE/bug_report.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/docs_defect.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/ISSUE_TEMPLATE/docs_defect.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/ISSUE_TEMPLATE/feature_request.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/tech_debt.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/ISSUE_TEMPLATE/tech_debt.md
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/PULL_REQUEST_TEMPLATE
--------------------------------------------------------------------------------
/.github/workflows/checkstyle.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/workflows/checkstyle.yml
--------------------------------------------------------------------------------
/.github/workflows/fuse_integration_tests.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/workflows/fuse_integration_tests.yml
--------------------------------------------------------------------------------
/.github/workflows/java8_integration_tests.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/workflows/java8_integration_tests.yml
--------------------------------------------------------------------------------
/.github/workflows/java8_integration_tests_ft.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/workflows/java8_integration_tests_ft.yml
--------------------------------------------------------------------------------
/.github/workflows/java8_integration_tests_webui.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/workflows/java8_integration_tests_webui.yml
--------------------------------------------------------------------------------
/.github/workflows/java8_unit_tests.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/workflows/java8_unit_tests.yml
--------------------------------------------------------------------------------
/.github/workflows/stale.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.github/workflows/stale.yaml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/.gitignore
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/LICENSE
--------------------------------------------------------------------------------
/NOTICE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/NOTICE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/README.md
--------------------------------------------------------------------------------
/assembly/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/assembly/README.md
--------------------------------------------------------------------------------
/assembly/client/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/assembly/client/pom.xml
--------------------------------------------------------------------------------
/assembly/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/assembly/pom.xml
--------------------------------------------------------------------------------
/assembly/server/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/assembly/server/pom.xml
--------------------------------------------------------------------------------
/bin/alluxio:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/alluxio
--------------------------------------------------------------------------------
/bin/alluxio-common.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/alluxio-common.sh
--------------------------------------------------------------------------------
/bin/alluxio-masters.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/alluxio-masters.sh
--------------------------------------------------------------------------------
/bin/alluxio-monitor.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/alluxio-monitor.sh
--------------------------------------------------------------------------------
/bin/alluxio-mount.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/alluxio-mount.sh
--------------------------------------------------------------------------------
/bin/alluxio-start.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/alluxio-start.sh
--------------------------------------------------------------------------------
/bin/alluxio-stop.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/alluxio-stop.sh
--------------------------------------------------------------------------------
/bin/alluxio-workers.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/alluxio-workers.sh
--------------------------------------------------------------------------------
/bin/launch-process:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/bin/launch-process
--------------------------------------------------------------------------------
/conf/alluxio-env.sh.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/alluxio-env.sh.template
--------------------------------------------------------------------------------
/conf/alluxio-site.properties.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/alluxio-site.properties.template
--------------------------------------------------------------------------------
/conf/core-site.xml.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/core-site.xml.template
--------------------------------------------------------------------------------
/conf/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/log4j.properties
--------------------------------------------------------------------------------
/conf/masters:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/masters
--------------------------------------------------------------------------------
/conf/metrics.properties.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/metrics.properties.template
--------------------------------------------------------------------------------
/conf/rocks-block-bloom.ini.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/rocks-block-bloom.ini.template
--------------------------------------------------------------------------------
/conf/rocks-block.ini.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/rocks-block.ini.template
--------------------------------------------------------------------------------
/conf/rocks-inode-bloom.ini.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/rocks-inode-bloom.ini.template
--------------------------------------------------------------------------------
/conf/rocks-inode.ini.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/rocks-inode.ini.template
--------------------------------------------------------------------------------
/conf/workers:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/conf/workers
--------------------------------------------------------------------------------
/core/client/fs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/client/fs/pom.xml
--------------------------------------------------------------------------------
/core/client/fs/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/client/fs/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/core/client/hdfs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/client/hdfs/pom.xml
--------------------------------------------------------------------------------
/core/client/hdfs/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/client/hdfs/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/core/client/hdfs3/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/client/hdfs3/pom.xml
--------------------------------------------------------------------------------
/core/client/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/client/pom.xml
--------------------------------------------------------------------------------
/core/common/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/pom.xml
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/AbstractClient.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/AbstractClient.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/AlluxioURI.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/AlluxioURI.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/Client.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/Client.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/ClientContext.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/ClientContext.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/Constants.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/Constants.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/DefaultSupplier.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/DefaultSupplier.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/HealthCheckClient.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/HealthCheckClient.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/Positioned.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/Positioned.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/Seekable.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/Seekable.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/Server.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/Server.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/SessionInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/SessionInfo.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/Sessions.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/Sessions.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/SyncInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/SyncInfo.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/cli/Command.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/cli/Command.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/conf/Hash.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/conf/Hash.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/conf/Source.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/conf/Source.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/grpc/GrpcUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/grpc/GrpcUtils.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/job/JobRequest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/job/JobRequest.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/metrics/Metric.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/metrics/Metric.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/resource/Pool.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/resource/Pool.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/security/User.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/security/User.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/time/Sleeper.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/time/Sleeper.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/uri/Authority.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/uri/Authority.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/uri/URI.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/uri/URI.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/util/CRC64.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/util/CRC64.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/util/HFSUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/util/HFSUtils.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/util/IdUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/util/IdUtils.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/util/LogUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/util/LogUtils.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/util/ModeUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/util/ModeUtils.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/util/OSUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/util/OSUtils.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/util/URIUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/util/URIUtils.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/wire/Address.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/wire/Address.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/wire/BlockInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/wire/BlockInfo.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/wire/Capacity.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/wire/Capacity.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/wire/FileInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/wire/FileInfo.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/wire/LogInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/wire/LogInfo.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/wire/Property.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/wire/Property.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/wire/UfsInfo.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/wire/UfsInfo.java
--------------------------------------------------------------------------------
/core/common/src/main/java/alluxio/worker/Worker.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/main/java/alluxio/worker/Worker.java
--------------------------------------------------------------------------------
/core/common/src/test/java/alluxio/AlluxioURITest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/test/java/alluxio/AlluxioURITest.java
--------------------------------------------------------------------------------
/core/common/src/test/java/alluxio/SystemErrRule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/test/java/alluxio/SystemErrRule.java
--------------------------------------------------------------------------------
/core/common/src/test/java/alluxio/SystemOutRule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/test/java/alluxio/SystemOutRule.java
--------------------------------------------------------------------------------
/core/common/src/test/java/alluxio/TestLoggerRule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/test/java/alluxio/TestLoggerRule.java
--------------------------------------------------------------------------------
/core/common/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/common/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/core/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/pom.xml
--------------------------------------------------------------------------------
/core/server/common/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/server/common/pom.xml
--------------------------------------------------------------------------------
/core/server/common/src/main/java/alluxio/Process.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/server/common/src/main/java/alluxio/Process.java
--------------------------------------------------------------------------------
/core/server/master/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/server/master/pom.xml
--------------------------------------------------------------------------------
/core/server/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/server/pom.xml
--------------------------------------------------------------------------------
/core/server/proxy/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/server/proxy/pom.xml
--------------------------------------------------------------------------------
/core/server/proxy/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/server/proxy/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/core/server/worker/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/server/worker/pom.xml
--------------------------------------------------------------------------------
/core/transport/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/pom.xml
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/block_master.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/block_master.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/block_worker.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/block_worker.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/common.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/common.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/fscommon.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/fscommon.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/job_master.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/job_master.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/meta_master.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/meta_master.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/raft_journal.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/raft_journal.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/sasl_server.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/sasl_server.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/grpc/version.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/grpc/version.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/proto.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/proto.lock
--------------------------------------------------------------------------------
/core/transport/src/main/proto/proto/journal/job.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/proto/journal/job.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/proto/meta/block.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/proto/meta/block.proto
--------------------------------------------------------------------------------
/core/transport/src/main/proto/proto/shared/acl.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/core/transport/src/main/proto/proto/shared/acl.proto
--------------------------------------------------------------------------------
/dev/github/component_owners.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/github/component_owners.yaml
--------------------------------------------------------------------------------
/dev/github/run_checks.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/github/run_checks.sh
--------------------------------------------------------------------------------
/dev/github/run_docker.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/github/run_docker.sh
--------------------------------------------------------------------------------
/dev/github/run_tests.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/github/run_tests.sh
--------------------------------------------------------------------------------
/dev/intellij/install-runconfig.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/install-runconfig.sh
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioFuse.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioFuse.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioJobMaster.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioJobMaster.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioJobMaster_0.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioJobMaster_0.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioJobMaster_1.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioJobMaster_1.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioJobMaster_2.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioJobMaster_2.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioJobWorker.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioJobWorker.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioMaster.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioMaster.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioMaster_0.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioMaster_0.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioMaster_1.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioMaster_1.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioMaster_2.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioMaster_2.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioProxy.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioProxy.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/AlluxioWorker.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/AlluxioWorker.xml
--------------------------------------------------------------------------------
/dev/intellij/runConfigurations/FileSystemShell.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/intellij/runConfigurations/FileSystemShell.xml
--------------------------------------------------------------------------------
/dev/jenkins/Dockerfile-jdk11:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/jenkins/Dockerfile-jdk11
--------------------------------------------------------------------------------
/dev/jenkins/Dockerfile-jdk17:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/jenkins/Dockerfile-jdk17
--------------------------------------------------------------------------------
/dev/jenkins/Dockerfile-jdk8:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/jenkins/Dockerfile-jdk8
--------------------------------------------------------------------------------
/dev/jenkins/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/jenkins/build.sh
--------------------------------------------------------------------------------
/dev/jenkins/run_docker.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/jenkins/run_docker.sh
--------------------------------------------------------------------------------
/dev/scripts/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/.gitignore
--------------------------------------------------------------------------------
/dev/scripts/build-docker.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/build-docker.sh
--------------------------------------------------------------------------------
/dev/scripts/check-docs.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/check-docs.sh
--------------------------------------------------------------------------------
/dev/scripts/generate-backcompat-journal.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/generate-backcompat-journal.sh
--------------------------------------------------------------------------------
/dev/scripts/generate-tarballs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/generate-tarballs
--------------------------------------------------------------------------------
/dev/scripts/src/alluxio.org/check-docs/main.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/src/alluxio.org/check-docs/main.go
--------------------------------------------------------------------------------
/dev/scripts/src/alluxio.org/go.mod:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/src/alluxio.org/go.mod
--------------------------------------------------------------------------------
/dev/scripts/src/alluxio.org/go.sum:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/src/alluxio.org/go.sum
--------------------------------------------------------------------------------
/dev/scripts/update-versions.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/update-versions.sh
--------------------------------------------------------------------------------
/dev/scripts/watch-metrics.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/dev/scripts/watch-metrics.sh
--------------------------------------------------------------------------------
/docs/.gitignore:
--------------------------------------------------------------------------------
1 | .jekyll-cache/
2 |
--------------------------------------------------------------------------------
/docs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/README.md
--------------------------------------------------------------------------------
/docs/_config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_config.yml
--------------------------------------------------------------------------------
/docs/_data/table/Alluxio-FUSE-parameter.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/Alluxio-FUSE-parameter.csv
--------------------------------------------------------------------------------
/docs/_data/table/ReadType.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/ReadType.csv
--------------------------------------------------------------------------------
/docs/_data/table/WriteTier.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/WriteTier.csv
--------------------------------------------------------------------------------
/docs/_data/table/WriteType.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/WriteType.csv
--------------------------------------------------------------------------------
/docs/_data/table/chmod-permission.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/chmod-permission.csv
--------------------------------------------------------------------------------
/docs/_data/table/client-metrics.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/client-metrics.csv
--------------------------------------------------------------------------------
/docs/_data/table/cluster-management-configuration.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cluster-management-configuration.csv
--------------------------------------------------------------------------------
/docs/_data/table/cluster-metrics.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cluster-metrics.csv
--------------------------------------------------------------------------------
/docs/_data/table/cn/Alluxio-FUSE-parameter.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/Alluxio-FUSE-parameter.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/Developer-Tips.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/Developer-Tips.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/ReadType.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/ReadType.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/WriteType.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/WriteType.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/client-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/client-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/cluster-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/cluster-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/common-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/common-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/fuse-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/fuse-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/master-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/master-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/master-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/master-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/operation-command.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/operation-command.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/process-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/process-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/security-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/security-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/server-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/server-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/user-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/user-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/worker-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/worker-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/cn/worker-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/cn/worker-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/common-configuration.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/common-configuration.csv
--------------------------------------------------------------------------------
/docs/_data/table/developer-tips.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/developer-tips.csv
--------------------------------------------------------------------------------
/docs/_data/table/en/Alluxio-FUSE-parameter.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/Alluxio-FUSE-parameter.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/ReadType.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/ReadType.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/WriteType.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/WriteType.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/client-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/client-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/cluster-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/cluster-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/common-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/common-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/developer-tips.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/developer-tips.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/env_vars.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/env_vars.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/fsadmin-command.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/fsadmin-command.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/fuse-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/fuse-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/master-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/master-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/master-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/master-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/operation-command.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/operation-command.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/process-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/process-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/proxy-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/proxy-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/security-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/security-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/server-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/server-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/user-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/user-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/worker-configuration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/worker-configuration.yml
--------------------------------------------------------------------------------
/docs/_data/table/en/worker-metrics.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/en/worker-metrics.yml
--------------------------------------------------------------------------------
/docs/_data/table/fsadmin-command.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/fsadmin-command.csv
--------------------------------------------------------------------------------
/docs/_data/table/fuse-metrics.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/fuse-metrics.csv
--------------------------------------------------------------------------------
/docs/_data/table/java-options-for-fault-tolerance.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/java-options-for-fault-tolerance.csv
--------------------------------------------------------------------------------
/docs/_data/table/master-configuration.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/master-configuration.csv
--------------------------------------------------------------------------------
/docs/_data/table/master-metrics.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/master-metrics.csv
--------------------------------------------------------------------------------
/docs/_data/table/operation-command.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/operation-command.csv
--------------------------------------------------------------------------------
/docs/_data/table/process-metrics.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/process-metrics.csv
--------------------------------------------------------------------------------
/docs/_data/table/proxy-metrics.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/proxy-metrics.csv
--------------------------------------------------------------------------------
/docs/_data/table/s3-api-supported-actions.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/s3-api-supported-actions.csv
--------------------------------------------------------------------------------
/docs/_data/table/security-configuration.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/security-configuration.csv
--------------------------------------------------------------------------------
/docs/_data/table/server-metrics.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/server-metrics.csv
--------------------------------------------------------------------------------
/docs/_data/table/user-configuration.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/user-configuration.csv
--------------------------------------------------------------------------------
/docs/_data/table/versions-of-Spark-and-Alluxio.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/versions-of-Spark-and-Alluxio.csv
--------------------------------------------------------------------------------
/docs/_data/table/worker-configuration.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/worker-configuration.csv
--------------------------------------------------------------------------------
/docs/_data/table/worker-metrics.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_data/table/worker-metrics.csv
--------------------------------------------------------------------------------
/docs/_layouts/404.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_layouts/404.html
--------------------------------------------------------------------------------
/docs/_layouts/global.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_layouts/global.html
--------------------------------------------------------------------------------
/docs/_plugins/accordion.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_plugins/accordion.rb
--------------------------------------------------------------------------------
/docs/_plugins/collapsible.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_plugins/collapsible.rb
--------------------------------------------------------------------------------
/docs/_plugins/copy_javadoc_to_docs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_plugins/copy_javadoc_to_docs.rb
--------------------------------------------------------------------------------
/docs/_plugins/nav-tabs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_plugins/nav-tabs.rb
--------------------------------------------------------------------------------
/docs/_plugins/relativize_url.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/_plugins/relativize_url.rb
--------------------------------------------------------------------------------
/docs/cn/Overview.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/Overview.md
--------------------------------------------------------------------------------
/docs/cn/administration/Troubleshooting.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/administration/Troubleshooting.md
--------------------------------------------------------------------------------
/docs/cn/administration/Upgrade.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/administration/Upgrade.md
--------------------------------------------------------------------------------
/docs/cn/api/Clients-Go.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/api/Clients-Go.md
--------------------------------------------------------------------------------
/docs/cn/api/Clients-Hadoop.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/api/Clients-Hadoop.md
--------------------------------------------------------------------------------
/docs/cn/api/Clients-Python.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/api/Clients-Python.md
--------------------------------------------------------------------------------
/docs/cn/api/Clients-Rest.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/api/Clients-Rest.md
--------------------------------------------------------------------------------
/docs/cn/api/FS-API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/api/FS-API.md
--------------------------------------------------------------------------------
/docs/cn/api/POSIX-API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/api/POSIX-API.md
--------------------------------------------------------------------------------
/docs/cn/api/S3-API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/api/S3-API.md
--------------------------------------------------------------------------------
/docs/cn/cloud/Tencent-Cloud-EMR.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/cloud/Tencent-Cloud-EMR.md
--------------------------------------------------------------------------------
/docs/cn/compute/Flink.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/compute/Flink.md
--------------------------------------------------------------------------------
/docs/cn/compute/Hadoop-MapReduce.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/compute/Hadoop-MapReduce.md
--------------------------------------------------------------------------------
/docs/cn/compute/Hive.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/compute/Hive.md
--------------------------------------------------------------------------------
/docs/cn/compute/Presto-Iceberg.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/compute/Presto-Iceberg.md
--------------------------------------------------------------------------------
/docs/cn/compute/Presto.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/compute/Presto.md
--------------------------------------------------------------------------------
/docs/cn/compute/Spark.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/compute/Spark.md
--------------------------------------------------------------------------------
/docs/cn/compute/Tensorflow.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/compute/Tensorflow.md
--------------------------------------------------------------------------------
/docs/cn/compute/Trino.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/compute/Trino.md
--------------------------------------------------------------------------------
/docs/cn/contributor/Building-Alluxio-From-Source.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/contributor/Building-Alluxio-From-Source.md
--------------------------------------------------------------------------------
/docs/cn/contributor/Code-Conventions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/contributor/Code-Conventions.md
--------------------------------------------------------------------------------
/docs/cn/contributor/Contributor-Getting-Started.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/contributor/Contributor-Getting-Started.md
--------------------------------------------------------------------------------
/docs/cn/contributor/Documentation-Conventions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/contributor/Documentation-Conventions.md
--------------------------------------------------------------------------------
/docs/cn/contributor/Unit-Testing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/contributor/Unit-Testing.md
--------------------------------------------------------------------------------
/docs/cn/core-services/Caching.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/core-services/Caching.md
--------------------------------------------------------------------------------
/docs/cn/core-services/Unified-Namespace.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/core-services/Unified-Namespace.md
--------------------------------------------------------------------------------
/docs/cn/deploy/Requirements.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/deploy/Requirements.md
--------------------------------------------------------------------------------
/docs/cn/deploy/Running-Alluxio-Locally.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/deploy/Running-Alluxio-Locally.md
--------------------------------------------------------------------------------
/docs/cn/deploy/Running-Alluxio-On-Docker.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/deploy/Running-Alluxio-On-Docker.md
--------------------------------------------------------------------------------
/docs/cn/deploy/Running-Alluxio-On-a-HA-Cluster.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/deploy/Running-Alluxio-On-a-HA-Cluster.md
--------------------------------------------------------------------------------
/docs/cn/deploy/Running-Alluxio-on-a-Cluster.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/deploy/Running-Alluxio-on-a-Cluster.md
--------------------------------------------------------------------------------
/docs/cn/deploy/Running-AlluxioFuse-On-Docker.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/deploy/Running-AlluxioFuse-On-Docker.md
--------------------------------------------------------------------------------
/docs/cn/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/index.html
--------------------------------------------------------------------------------
/docs/cn/kubernetes/Running-Alluxio-On-Kubernetes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/kubernetes/Running-Alluxio-On-Kubernetes.md
--------------------------------------------------------------------------------
/docs/cn/kubernetes/Spark-On-Kubernetes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/kubernetes/Spark-On-Kubernetes.md
--------------------------------------------------------------------------------
/docs/cn/operation/Admin-CLI.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/operation/Admin-CLI.md
--------------------------------------------------------------------------------
/docs/cn/operation/Configuration.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/operation/Configuration.md
--------------------------------------------------------------------------------
/docs/cn/operation/Journal.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/operation/Journal.md
--------------------------------------------------------------------------------
/docs/cn/operation/Metrics-System.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/operation/Metrics-System.md
--------------------------------------------------------------------------------
/docs/cn/operation/Server-Logging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/operation/Server-Logging.md
--------------------------------------------------------------------------------
/docs/cn/operation/User-CLI.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/operation/User-CLI.md
--------------------------------------------------------------------------------
/docs/cn/operation/Web-Interface.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/operation/Web-Interface.md
--------------------------------------------------------------------------------
/docs/cn/overview/Architecture.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/overview/Architecture.md
--------------------------------------------------------------------------------
/docs/cn/overview/FAQ.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/overview/FAQ.md
--------------------------------------------------------------------------------
/docs/cn/overview/Getting-Started.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/overview/Getting-Started.md
--------------------------------------------------------------------------------
/docs/cn/overview/JobService.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/overview/JobService.md
--------------------------------------------------------------------------------
/docs/cn/overview/Use-Cases.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/overview/Use-Cases.md
--------------------------------------------------------------------------------
/docs/cn/reference/Metrics-List.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/reference/Metrics-List.md
--------------------------------------------------------------------------------
/docs/cn/reference/Properties-List.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/reference/Properties-List.md
--------------------------------------------------------------------------------
/docs/cn/security/Security.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/security/Security.md
--------------------------------------------------------------------------------
/docs/cn/solutions/Deep-Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/solutions/Deep-Learning.md
--------------------------------------------------------------------------------
/docs/cn/ufs/Azure-Blob-Store.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/Azure-Blob-Store.md
--------------------------------------------------------------------------------
/docs/cn/ufs/Azure-Data-Lake-Gen2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/Azure-Data-Lake-Gen2.md
--------------------------------------------------------------------------------
/docs/cn/ufs/Azure-Data-Lake.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/Azure-Data-Lake.md
--------------------------------------------------------------------------------
/docs/cn/ufs/COS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/COS.md
--------------------------------------------------------------------------------
/docs/cn/ufs/COSN.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/COSN.md
--------------------------------------------------------------------------------
/docs/cn/ufs/CephFS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/CephFS.md
--------------------------------------------------------------------------------
/docs/cn/ufs/CephObjectStorage.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/CephObjectStorage.md
--------------------------------------------------------------------------------
/docs/cn/ufs/GCS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/GCS.md
--------------------------------------------------------------------------------
/docs/cn/ufs/HDFS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/HDFS.md
--------------------------------------------------------------------------------
/docs/cn/ufs/Minio.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/Minio.md
--------------------------------------------------------------------------------
/docs/cn/ufs/NFS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/NFS.md
--------------------------------------------------------------------------------
/docs/cn/ufs/OSS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/OSS.md
--------------------------------------------------------------------------------
/docs/cn/ufs/Ozone.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/Ozone.md
--------------------------------------------------------------------------------
/docs/cn/ufs/Qiniu-KODO.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/Qiniu-KODO.md
--------------------------------------------------------------------------------
/docs/cn/ufs/S3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/S3.md
--------------------------------------------------------------------------------
/docs/cn/ufs/Swift.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/Swift.md
--------------------------------------------------------------------------------
/docs/cn/ufs/TOS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/TOS.md
--------------------------------------------------------------------------------
/docs/cn/ufs/WEB.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/cn/ufs/WEB.md
--------------------------------------------------------------------------------
/docs/css/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/css/bootstrap.min.css
--------------------------------------------------------------------------------
/docs/css/main.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/css/main.css
--------------------------------------------------------------------------------
/docs/css/pygments-default.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/css/pygments-default.css
--------------------------------------------------------------------------------
/docs/en/Overview.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/Overview.md
--------------------------------------------------------------------------------
/docs/en/administration/Basic-Logging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/administration/Basic-Logging.md
--------------------------------------------------------------------------------
/docs/en/administration/Performance-Tuning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/administration/Performance-Tuning.md
--------------------------------------------------------------------------------
/docs/en/administration/Remote-Logging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/administration/Remote-Logging.md
--------------------------------------------------------------------------------
/docs/en/administration/Scalability-Tuning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/administration/Scalability-Tuning.md
--------------------------------------------------------------------------------
/docs/en/administration/StressBench.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/administration/StressBench.md
--------------------------------------------------------------------------------
/docs/en/administration/Troubleshooting.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/administration/Troubleshooting.md
--------------------------------------------------------------------------------
/docs/en/administration/Upgrade.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/administration/Upgrade.md
--------------------------------------------------------------------------------
/docs/en/api/Java-API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/api/Java-API.md
--------------------------------------------------------------------------------
/docs/en/api/POSIX-API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/api/POSIX-API.md
--------------------------------------------------------------------------------
/docs/en/api/REST-API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/api/REST-API.md
--------------------------------------------------------------------------------
/docs/en/api/S3-API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/api/S3-API.md
--------------------------------------------------------------------------------
/docs/en/cloud/AWS-EMR.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/cloud/AWS-EMR.md
--------------------------------------------------------------------------------
/docs/en/cloud/Alibaba-Cloud-ACK.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/cloud/Alibaba-Cloud-ACK.md
--------------------------------------------------------------------------------
/docs/en/cloud/Google-Dataproc.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/cloud/Google-Dataproc.md
--------------------------------------------------------------------------------
/docs/en/cloud/Tencent-Cloud-EMR.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/cloud/Tencent-Cloud-EMR.md
--------------------------------------------------------------------------------
/docs/en/compute/Flink.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/compute/Flink.md
--------------------------------------------------------------------------------
/docs/en/compute/Hadoop-MapReduce.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/compute/Hadoop-MapReduce.md
--------------------------------------------------------------------------------
/docs/en/compute/Hive.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/compute/Hive.md
--------------------------------------------------------------------------------
/docs/en/compute/Presto-Iceberg.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/compute/Presto-Iceberg.md
--------------------------------------------------------------------------------
/docs/en/compute/Presto.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/compute/Presto.md
--------------------------------------------------------------------------------
/docs/en/compute/Spark.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/compute/Spark.md
--------------------------------------------------------------------------------
/docs/en/compute/Tensorflow.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/compute/Tensorflow.md
--------------------------------------------------------------------------------
/docs/en/compute/Trino.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/compute/Trino.md
--------------------------------------------------------------------------------
/docs/en/contributor/Building-Alluxio-From-Source.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/contributor/Building-Alluxio-From-Source.md
--------------------------------------------------------------------------------
/docs/en/contributor/Code-Conventions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/contributor/Code-Conventions.md
--------------------------------------------------------------------------------
/docs/en/contributor/Contributor-Getting-Started.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/contributor/Contributor-Getting-Started.md
--------------------------------------------------------------------------------
/docs/en/contributor/Contributor-Tools.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/contributor/Contributor-Tools.md
--------------------------------------------------------------------------------
/docs/en/contributor/Documentation-Conventions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/contributor/Documentation-Conventions.md
--------------------------------------------------------------------------------
/docs/en/core-services/Caching.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/core-services/Caching.md
--------------------------------------------------------------------------------
/docs/en/core-services/Unified-Namespace.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/core-services/Unified-Namespace.md
--------------------------------------------------------------------------------
/docs/en/deploy/Requirements.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/deploy/Requirements.md
--------------------------------------------------------------------------------
/docs/en/deploy/Running-Alluxio-Locally.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/deploy/Running-Alluxio-Locally.md
--------------------------------------------------------------------------------
/docs/en/deploy/Running-Alluxio-On-Docker.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/deploy/Running-Alluxio-On-Docker.md
--------------------------------------------------------------------------------
/docs/en/deploy/Running-Alluxio-On-a-Cluster.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/deploy/Running-Alluxio-On-a-Cluster.md
--------------------------------------------------------------------------------
/docs/en/deploy/Running-Alluxio-On-a-HA-Cluster.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/deploy/Running-Alluxio-On-a-HA-Cluster.md
--------------------------------------------------------------------------------
/docs/en/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/index.html
--------------------------------------------------------------------------------
/docs/en/kubernetes/Metrics-On-Kubernetes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/kubernetes/Metrics-On-Kubernetes.md
--------------------------------------------------------------------------------
/docs/en/kubernetes/Running-Alluxio-On-Kubernetes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/kubernetes/Running-Alluxio-On-Kubernetes.md
--------------------------------------------------------------------------------
/docs/en/kubernetes/Spark-On-Kubernetes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/kubernetes/Spark-On-Kubernetes.md
--------------------------------------------------------------------------------
/docs/en/operation/Admin-CLI.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/operation/Admin-CLI.md
--------------------------------------------------------------------------------
/docs/en/operation/Configuration.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/operation/Configuration.md
--------------------------------------------------------------------------------
/docs/en/operation/Journal.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/operation/Journal.md
--------------------------------------------------------------------------------
/docs/en/operation/Metastore.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/operation/Metastore.md
--------------------------------------------------------------------------------
/docs/en/operation/Metrics-System.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/operation/Metrics-System.md
--------------------------------------------------------------------------------
/docs/en/operation/User-CLI.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/operation/User-CLI.md
--------------------------------------------------------------------------------
/docs/en/operation/Web-Interface.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/operation/Web-Interface.md
--------------------------------------------------------------------------------
/docs/en/overview/Architecture.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/overview/Architecture.md
--------------------------------------------------------------------------------
/docs/en/overview/FAQ.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/overview/FAQ.md
--------------------------------------------------------------------------------
/docs/en/overview/Getting-Started.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/overview/Getting-Started.md
--------------------------------------------------------------------------------
/docs/en/overview/JobService.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/overview/JobService.md
--------------------------------------------------------------------------------
/docs/en/overview/Use-Cases.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/overview/Use-Cases.md
--------------------------------------------------------------------------------
/docs/en/reference/Metrics-List.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/reference/Metrics-List.md
--------------------------------------------------------------------------------
/docs/en/reference/Properties-List.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/reference/Properties-List.md
--------------------------------------------------------------------------------
/docs/en/security/Security.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/security/Security.md
--------------------------------------------------------------------------------
/docs/en/solutions/Deep-Learning.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/solutions/Deep-Learning.md
--------------------------------------------------------------------------------
/docs/en/ufs/Azure-Blob-Store.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/Azure-Blob-Store.md
--------------------------------------------------------------------------------
/docs/en/ufs/Azure-Data-Lake-Gen2.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/Azure-Data-Lake-Gen2.md
--------------------------------------------------------------------------------
/docs/en/ufs/Azure-Data-Lake.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/Azure-Data-Lake.md
--------------------------------------------------------------------------------
/docs/en/ufs/COSN.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/COSN.md
--------------------------------------------------------------------------------
/docs/en/ufs/CephFS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/CephFS.md
--------------------------------------------------------------------------------
/docs/en/ufs/CephObjectStorage.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/CephObjectStorage.md
--------------------------------------------------------------------------------
/docs/en/ufs/GCS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/GCS.md
--------------------------------------------------------------------------------
/docs/en/ufs/HDFS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/HDFS.md
--------------------------------------------------------------------------------
/docs/en/ufs/Minio.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/Minio.md
--------------------------------------------------------------------------------
/docs/en/ufs/NFS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/NFS.md
--------------------------------------------------------------------------------
/docs/en/ufs/OSS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/OSS.md
--------------------------------------------------------------------------------
/docs/en/ufs/Ozone.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/Ozone.md
--------------------------------------------------------------------------------
/docs/en/ufs/Qiniu-KODO.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/Qiniu-KODO.md
--------------------------------------------------------------------------------
/docs/en/ufs/S3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/S3.md
--------------------------------------------------------------------------------
/docs/en/ufs/Swift.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/Swift.md
--------------------------------------------------------------------------------
/docs/en/ufs/TOS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/TOS.md
--------------------------------------------------------------------------------
/docs/en/ufs/WEB.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/en/ufs/WEB.md
--------------------------------------------------------------------------------
/docs/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/favicon.ico
--------------------------------------------------------------------------------
/docs/img/alluxio_book.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/alluxio_book.png
--------------------------------------------------------------------------------
/docs/img/architecture-master-docs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/architecture-master-docs.png
--------------------------------------------------------------------------------
/docs/img/architecture-overview-simple-docs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/architecture-overview-simple-docs.png
--------------------------------------------------------------------------------
/docs/img/architecture-worker-docs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/architecture-worker-docs.png
--------------------------------------------------------------------------------
/docs/img/dataflow-async-through.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/dataflow-async-through.gif
--------------------------------------------------------------------------------
/docs/img/dataflow-cache-miss.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/dataflow-cache-miss.gif
--------------------------------------------------------------------------------
/docs/img/dataflow-cache-through.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/dataflow-cache-through.gif
--------------------------------------------------------------------------------
/docs/img/dataflow-local-cache-hit.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/dataflow-local-cache-hit.gif
--------------------------------------------------------------------------------
/docs/img/dataflow-must-cache.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/dataflow-must-cache.gif
--------------------------------------------------------------------------------
/docs/img/dataflow-partial-caching.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/dataflow-partial-caching.gif
--------------------------------------------------------------------------------
/docs/img/dataflow-remote-cache-hit.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/dataflow-remote-cache-hit.gif
--------------------------------------------------------------------------------
/docs/img/emr_ami_accept_terms.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/emr_ami_accept_terms.png
--------------------------------------------------------------------------------
/docs/img/emr_ami_subscribe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/emr_ami_subscribe.png
--------------------------------------------------------------------------------
/docs/img/emr_ami_subscribe_done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/emr_ami_subscribe_done.png
--------------------------------------------------------------------------------
/docs/img/emr_console_public_dns.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/emr_console_public_dns.png
--------------------------------------------------------------------------------
/docs/img/emr_console_waiting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/emr_console_waiting.png
--------------------------------------------------------------------------------
/docs/img/fuse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/fuse.png
--------------------------------------------------------------------------------
/docs/img/glyphicons-halflings-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/glyphicons-halflings-white.png
--------------------------------------------------------------------------------
/docs/img/glyphicons-halflings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/glyphicons-halflings.png
--------------------------------------------------------------------------------
/docs/img/logo-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/logo-white.png
--------------------------------------------------------------------------------
/docs/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/logo.png
--------------------------------------------------------------------------------
/docs/img/posix-cache.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/posix-cache.png
--------------------------------------------------------------------------------
/docs/img/posix-stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/posix-stack.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_choose_ami.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_choose_ami.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_instance_type.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_instance_type.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_instances.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_instances.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_key_pair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_key_pair.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_launched_instance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_launched_instance.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_limit_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_limit_error.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_limits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_limits.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_region.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_region.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_review.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_review.png
--------------------------------------------------------------------------------
/docs/img/presto_sandbox_ec2_security_groups.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/presto_sandbox_ec2_security_groups.png
--------------------------------------------------------------------------------
/docs/img/screenshot_browseFileSystem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_browseFileSystem.png
--------------------------------------------------------------------------------
/docs/img/screenshot_cdh_compute_hadoop_classpath.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_cdh_compute_hadoop_classpath.png
--------------------------------------------------------------------------------
/docs/img/screenshot_configuration_checker_webui.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_configuration_checker_webui.png
--------------------------------------------------------------------------------
/docs/img/screenshot_datalocality_sparkwebui.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_datalocality_sparkwebui.png
--------------------------------------------------------------------------------
/docs/img/screenshot_datalocality_tasklocality.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_datalocality_tasklocality.png
--------------------------------------------------------------------------------
/docs/img/screenshot_generalMetrics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_generalMetrics.png
--------------------------------------------------------------------------------
/docs/img/screenshot_grafana_webui.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_grafana_webui.png
--------------------------------------------------------------------------------
/docs/img/screenshot_hbase_hadoop_output.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_hbase_hadoop_output.png
--------------------------------------------------------------------------------
/docs/img/screenshot_hbase_shell_output.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_hbase_shell_output.png
--------------------------------------------------------------------------------
/docs/img/screenshot_hive_query_result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_hive_query_result.png
--------------------------------------------------------------------------------
/docs/img/screenshot_hive_table_in_alluxio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_hive_table_in_alluxio.png
--------------------------------------------------------------------------------
/docs/img/screenshot_inMemoryFiles.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_inMemoryFiles.png
--------------------------------------------------------------------------------
/docs/img/screenshot_masterLogs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_masterLogs.png
--------------------------------------------------------------------------------
/docs/img/screenshot_masterMetrics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_masterMetrics.png
--------------------------------------------------------------------------------
/docs/img/screenshot_overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_overview.png
--------------------------------------------------------------------------------
/docs/img/screenshot_presto_query_log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_presto_query_log.png
--------------------------------------------------------------------------------
/docs/img/screenshot_presto_query_result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_presto_query_result.png
--------------------------------------------------------------------------------
/docs/img/screenshot_presto_table_in_alluxio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_presto_table_in_alluxio.png
--------------------------------------------------------------------------------
/docs/img/screenshot_sharing_setting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_sharing_setting.png
--------------------------------------------------------------------------------
/docs/img/screenshot_start_hbase_alluxio_webui.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_start_hbase_alluxio_webui.png
--------------------------------------------------------------------------------
/docs/img/screenshot_start_hbase_webui.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_start_hbase_webui.png
--------------------------------------------------------------------------------
/docs/img/screenshot_systemConfiguration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_systemConfiguration.png
--------------------------------------------------------------------------------
/docs/img/screenshot_transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_transparent.png
--------------------------------------------------------------------------------
/docs/img/screenshot_unified.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_unified.png
--------------------------------------------------------------------------------
/docs/img/screenshot_viewFile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_viewFile.png
--------------------------------------------------------------------------------
/docs/img/screenshot_workerBlockInfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_workerBlockInfo.png
--------------------------------------------------------------------------------
/docs/img/screenshot_workerLogs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_workerLogs.png
--------------------------------------------------------------------------------
/docs/img/screenshot_workerMetrics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_workerMetrics.png
--------------------------------------------------------------------------------
/docs/img/screenshot_workerOverview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_workerOverview.png
--------------------------------------------------------------------------------
/docs/img/screenshot_workers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/screenshot_workers.png
--------------------------------------------------------------------------------
/docs/img/stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/img/stack.png
--------------------------------------------------------------------------------
/docs/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/index.html
--------------------------------------------------------------------------------
/docs/js/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/js/main.js
--------------------------------------------------------------------------------
/docs/js/vendor/bootstrap.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/js/vendor/bootstrap.min.js
--------------------------------------------------------------------------------
/docs/js/vendor/jquery-3.3.1.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/js/vendor/jquery-3.3.1.min.js
--------------------------------------------------------------------------------
/docs/js/vendor/popper.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/js/vendor/popper.min.js
--------------------------------------------------------------------------------
/docs/link_checker.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/link_checker.sh
--------------------------------------------------------------------------------
/docs/resources/alluxio-code-formatter-eclipse.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/alluxio-code-formatter-eclipse.xml
--------------------------------------------------------------------------------
/docs/resources/alluxio_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/alluxio_logo.png
--------------------------------------------------------------------------------
/docs/resources/eclipse_imports.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/eclipse_imports.png
--------------------------------------------------------------------------------
/docs/resources/importorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/importorder.png
--------------------------------------------------------------------------------
/docs/resources/intellij/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/intellij/LICENSE.txt
--------------------------------------------------------------------------------
/docs/resources/intellij/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/intellij/README.md
--------------------------------------------------------------------------------
/docs/resources/intellij/codestyles/AlluxioStyle.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/intellij/codestyles/AlluxioStyle.xml
--------------------------------------------------------------------------------
/docs/resources/intellij/import.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/intellij/import.sh
--------------------------------------------------------------------------------
/docs/resources/intellij/update.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/intellij/update.sh
--------------------------------------------------------------------------------
/docs/resources/intellij_checkstyle_plugin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/intellij_checkstyle_plugin.png
--------------------------------------------------------------------------------
/docs/resources/intellij_code_formatter.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/intellij_code_formatter.xml
--------------------------------------------------------------------------------
/docs/resources/intellij_imports.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/intellij_imports.png
--------------------------------------------------------------------------------
/docs/resources/mnist_classification.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/mnist_classification.py
--------------------------------------------------------------------------------
/docs/resources/pr/pr_title_words.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/pr/pr_title_words.md
--------------------------------------------------------------------------------
/docs/resources/style_scheme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/style_scheme.png
--------------------------------------------------------------------------------
/docs/resources/templates/Design-Document-Template.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/docs/resources/templates/Design-Document-Template.md
--------------------------------------------------------------------------------
/examples/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/examples/pom.xml
--------------------------------------------------------------------------------
/examples/src/main/java/alluxio/cli/MiniBenchmark.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/examples/src/main/java/alluxio/cli/MiniBenchmark.java
--------------------------------------------------------------------------------
/examples/src/main/java/alluxio/examples/HDFS.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/examples/src/main/java/alluxio/examples/HDFS.java
--------------------------------------------------------------------------------
/integration/dataproc/.gitignore:
--------------------------------------------------------------------------------
1 | .generated
2 |
--------------------------------------------------------------------------------
/integration/dataproc/alluxio-dataproc.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/dataproc/alluxio-dataproc.sh
--------------------------------------------------------------------------------
/integration/dataproc/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/dataproc/build.sh
--------------------------------------------------------------------------------
/integration/docker/.dockerignore:
--------------------------------------------------------------------------------
1 | conf/.gitignore
2 |
--------------------------------------------------------------------------------
/integration/docker/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/Dockerfile
--------------------------------------------------------------------------------
/integration/docker/Dockerfile-dev:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/Dockerfile-dev
--------------------------------------------------------------------------------
/integration/docker/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/README.md
--------------------------------------------------------------------------------
/integration/docker/conf/alluxio-env.sh.template:
--------------------------------------------------------------------------------
1 | ../../../conf/alluxio-env.sh.template
--------------------------------------------------------------------------------
/integration/docker/conf/alluxio-site.properties.template:
--------------------------------------------------------------------------------
1 | ../../../conf/alluxio-site.properties.template
--------------------------------------------------------------------------------
/integration/docker/csi/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/csi/README.md
--------------------------------------------------------------------------------
/integration/docker/csi/alluxio/controllerserver.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/csi/alluxio/controllerserver.go
--------------------------------------------------------------------------------
/integration/docker/csi/alluxio/driver.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/csi/alluxio/driver.go
--------------------------------------------------------------------------------
/integration/docker/csi/alluxio/nodeserver.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/csi/alluxio/nodeserver.go
--------------------------------------------------------------------------------
/integration/docker/csi/go.mod:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/csi/go.mod
--------------------------------------------------------------------------------
/integration/docker/csi/go.sum:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/csi/go.sum
--------------------------------------------------------------------------------
/integration/docker/csi/main.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/csi/main.go
--------------------------------------------------------------------------------
/integration/docker/entrypoint.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/entrypoint.sh
--------------------------------------------------------------------------------
/integration/docker/hms/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/hms/Dockerfile
--------------------------------------------------------------------------------
/integration/docker/hms/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/hms/README.md
--------------------------------------------------------------------------------
/integration/docker/hms/entrypoint.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/hms/entrypoint.sh
--------------------------------------------------------------------------------
/integration/docker/hms/initialize.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/docker/hms/initialize.sh
--------------------------------------------------------------------------------
/integration/emr/.gitignore:
--------------------------------------------------------------------------------
1 | .generated
2 |
--------------------------------------------------------------------------------
/integration/emr/alluxio-emr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/emr/alluxio-emr.json
--------------------------------------------------------------------------------
/integration/emr/alluxio-emr.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/emr/alluxio-emr.sh
--------------------------------------------------------------------------------
/integration/emr/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/emr/build.sh
--------------------------------------------------------------------------------
/integration/fuse/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/fuse/README.md
--------------------------------------------------------------------------------
/integration/fuse/bin/alluxio-fuse:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/fuse/bin/alluxio-fuse
--------------------------------------------------------------------------------
/integration/fuse/bin/alluxio-fuse-sdk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/fuse/bin/alluxio-fuse-sdk
--------------------------------------------------------------------------------
/integration/fuse/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/fuse/pom.xml
--------------------------------------------------------------------------------
/integration/jnifuse/fs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/jnifuse/fs/pom.xml
--------------------------------------------------------------------------------
/integration/jnifuse/native/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/jnifuse/native/pom.xml
--------------------------------------------------------------------------------
/integration/jnifuse/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/jnifuse/pom.xml
--------------------------------------------------------------------------------
/integration/kubernetes/.gitignore:
--------------------------------------------------------------------------------
1 | *.jar
2 | *.properties
3 | /*.yaml
4 |
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/.gitignore:
--------------------------------------------------------------------------------
1 | charts
2 |
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/README.md
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/alluxio/.helmignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/alluxio/.helmignore
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/alluxio/Chart.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/alluxio/Chart.yaml
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/alluxio/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/alluxio/README.md
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/alluxio/values.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/alluxio/values.yaml
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/monitor/.helmignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/monitor/.helmignore
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/monitor/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | 0.1.0
2 |
3 | - Init support
4 | - Modularized the directory structure
5 |
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/monitor/Chart.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/monitor/Chart.yaml
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/monitor/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/monitor/README.md
--------------------------------------------------------------------------------
/integration/kubernetes/helm-chart/monitor/values.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/helm-chart/monitor/values.yaml
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/.gitignore
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/Dockerfile
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/Makefile
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/PROJECT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/PROJECT
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/README.md
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/docs/dev.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/docs/dev.md
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/go-mod.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/go-mod.sh
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/go.mod:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/go.mod
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/go.sum:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/go.sum
--------------------------------------------------------------------------------
/integration/kubernetes/operator/alluxio/issues.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/alluxio/issues.md
--------------------------------------------------------------------------------
/integration/kubernetes/operator/presto/bin/kustomize:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/kubernetes/operator/presto/bin/kustomize
--------------------------------------------------------------------------------
/integration/metrics/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/metrics/README.md
--------------------------------------------------------------------------------
/integration/metrics/docker-compose-master.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/metrics/docker-compose-master.yaml
--------------------------------------------------------------------------------
/integration/metrics/docker-compose-worker.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/metrics/docker-compose-worker.yaml
--------------------------------------------------------------------------------
/integration/metrics/otel-agent-config-worker.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/metrics/otel-agent-config-worker.yaml
--------------------------------------------------------------------------------
/integration/metrics/otel-agent-config.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/metrics/otel-agent-config.yaml
--------------------------------------------------------------------------------
/integration/metrics/otel-collector-config.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/metrics/otel-collector-config.yaml
--------------------------------------------------------------------------------
/integration/metrics/prometheus.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/metrics/prometheus.yaml
--------------------------------------------------------------------------------
/integration/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/pom.xml
--------------------------------------------------------------------------------
/integration/tools/benchmark/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/benchmark/README.md
--------------------------------------------------------------------------------
/integration/tools/benchmark/pytorch/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/benchmark/pytorch/Dockerfile
--------------------------------------------------------------------------------
/integration/tools/benchmark/pytorch/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/benchmark/pytorch/README.md
--------------------------------------------------------------------------------
/integration/tools/benchmark/pytorch/load.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/benchmark/pytorch/load.py
--------------------------------------------------------------------------------
/integration/tools/benchmark/pytorch/run-test.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/benchmark/pytorch/run-test.sh
--------------------------------------------------------------------------------
/integration/tools/hms/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/hms/pom.xml
--------------------------------------------------------------------------------
/integration/tools/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/pom.xml
--------------------------------------------------------------------------------
/integration/tools/ratis-shell/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/ratis-shell/README.md
--------------------------------------------------------------------------------
/integration/tools/ratis-shell/install-ratis-shell.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/ratis-shell/install-ratis-shell.sh
--------------------------------------------------------------------------------
/integration/tools/validation/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/tools/validation/pom.xml
--------------------------------------------------------------------------------
/integration/vagrant/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/README.md
--------------------------------------------------------------------------------
/integration/vagrant/Vagrantfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/Vagrantfile
--------------------------------------------------------------------------------
/integration/vagrant/ansible.cfg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/ansible.cfg
--------------------------------------------------------------------------------
/integration/vagrant/ansible/playbook-basic.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/ansible/playbook-basic.yml
--------------------------------------------------------------------------------
/integration/vagrant/ansible/playbook.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/ansible/playbook.yml
--------------------------------------------------------------------------------
/integration/vagrant/ansible/roles/common/files/ssh.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/ansible/roles/common/files/ssh.sh
--------------------------------------------------------------------------------
/integration/vagrant/ansible/roles/lib/files/device.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/ansible/roles/lib/files/device.sh
--------------------------------------------------------------------------------
/integration/vagrant/ansible/roles/lib/files/maven.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/ansible/roles/lib/files/maven.sh
--------------------------------------------------------------------------------
/integration/vagrant/ansible/roles/lib/tasks/maven.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/ansible/roles/lib/tasks/maven.yml
--------------------------------------------------------------------------------
/integration/vagrant/ansible/roles/lib/tasks/mount.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/ansible/roles/lib/tasks/mount.yml
--------------------------------------------------------------------------------
/integration/vagrant/bin/init_aws.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/bin/init_aws.py
--------------------------------------------------------------------------------
/integration/vagrant/bin/install.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/bin/install.sh
--------------------------------------------------------------------------------
/integration/vagrant/bin/is_aws_spot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/bin/is_aws_spot.py
--------------------------------------------------------------------------------
/integration/vagrant/bin/spot_request.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/bin/spot_request.py
--------------------------------------------------------------------------------
/integration/vagrant/bin/util.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/bin/util.py
--------------------------------------------------------------------------------
/integration/vagrant/conf/alluxio.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/conf/alluxio.yml
--------------------------------------------------------------------------------
/integration/vagrant/conf/ec2.yml.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/conf/ec2.yml.template
--------------------------------------------------------------------------------
/integration/vagrant/conf/gce.yml.template:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/conf/gce.yml.template
--------------------------------------------------------------------------------
/integration/vagrant/conf/mesos.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/conf/mesos.yml
--------------------------------------------------------------------------------
/integration/vagrant/conf/spark.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/conf/spark.yml
--------------------------------------------------------------------------------
/integration/vagrant/conf/ufs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/conf/ufs.yml
--------------------------------------------------------------------------------
/integration/vagrant/conf/vb.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/conf/vb.yml
--------------------------------------------------------------------------------
/integration/vagrant/conf/zookeeper.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/conf/zookeeper.yml
--------------------------------------------------------------------------------
/integration/vagrant/create:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/create
--------------------------------------------------------------------------------
/integration/vagrant/destroy:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/destroy
--------------------------------------------------------------------------------
/integration/vagrant/pip-req.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/pip-req.txt
--------------------------------------------------------------------------------
/integration/vagrant/vagrant/config_aws.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/vagrant/config_aws.rb
--------------------------------------------------------------------------------
/integration/vagrant/vagrant/config_google.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/vagrant/config_google.rb
--------------------------------------------------------------------------------
/integration/vagrant/vagrant/config_software.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/vagrant/config_software.rb
--------------------------------------------------------------------------------
/integration/vagrant/vagrant/config_vb.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/vagrant/config_vb.rb
--------------------------------------------------------------------------------
/integration/vagrant/vbox/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/vbox/README.md
--------------------------------------------------------------------------------
/integration/vagrant/vbox/Vagrantfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/vbox/Vagrantfile
--------------------------------------------------------------------------------
/integration/vagrant/vbox/buildbox.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/integration/vagrant/vbox/buildbox.sh
--------------------------------------------------------------------------------
/job/client/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/client/pom.xml
--------------------------------------------------------------------------------
/job/common/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/common/pom.xml
--------------------------------------------------------------------------------
/job/common/src/main/java/alluxio/job/CmdConfig.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/common/src/main/java/alluxio/job/CmdConfig.java
--------------------------------------------------------------------------------
/job/common/src/main/java/alluxio/job/ErrorUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/common/src/main/java/alluxio/job/ErrorUtils.java
--------------------------------------------------------------------------------
/job/common/src/main/java/alluxio/job/JobConfig.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/common/src/main/java/alluxio/job/JobConfig.java
--------------------------------------------------------------------------------
/job/common/src/main/java/alluxio/job/ProtoUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/common/src/main/java/alluxio/job/ProtoUtils.java
--------------------------------------------------------------------------------
/job/common/src/main/java/alluxio/job/wire/Status.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/common/src/main/java/alluxio/job/wire/Status.java
--------------------------------------------------------------------------------
/job/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/pom.xml
--------------------------------------------------------------------------------
/job/server/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/job/server/pom.xml
--------------------------------------------------------------------------------
/libexec/alluxio-config.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/libexec/alluxio-config.sh
--------------------------------------------------------------------------------
/logserver/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/logserver/pom.xml
--------------------------------------------------------------------------------
/microbench/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/microbench/pom.xml
--------------------------------------------------------------------------------
/microbench/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/microbench/readme.md
--------------------------------------------------------------------------------
/microbench/src/main/java/alluxio/BaseThreadState.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/microbench/src/main/java/alluxio/BaseThreadState.java
--------------------------------------------------------------------------------
/microbench/src/main/java/alluxio/RpcUtilsBench.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/microbench/src/main/java/alluxio/RpcUtilsBench.java
--------------------------------------------------------------------------------
/minicluster/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/minicluster/pom.xml
--------------------------------------------------------------------------------
/minicluster/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/minicluster/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/pom.xml
--------------------------------------------------------------------------------
/shaded/client-hadoop3/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shaded/client-hadoop3/pom.xml
--------------------------------------------------------------------------------
/shaded/client/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shaded/client/pom.xml
--------------------------------------------------------------------------------
/shaded/hadoop/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shaded/hadoop/pom.xml
--------------------------------------------------------------------------------
/shaded/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shaded/pom.xml
--------------------------------------------------------------------------------
/shell/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/pom.xml
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/BasicCheckpoint.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/BasicCheckpoint.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/BasicOperations.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/BasicOperations.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/DocGenerator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/DocGenerator.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/GetConf.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/GetConf.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/HmsTests.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/HmsTests.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/JournalCrashTest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/JournalCrashTest.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/LogLevel.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/LogLevel.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/RunOperation.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/RunOperation.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/TestRunner.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/TestRunner.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/ValidateConf.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/ValidateConf.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/Version.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/Version.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/bundler/TarUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/bundler/TarUtils.java
--------------------------------------------------------------------------------
/shell/src/main/java/alluxio/cli/job/JobShell.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/java/alluxio/cli/job/JobShell.java
--------------------------------------------------------------------------------
/shell/src/main/resources/fs.man:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/main/resources/fs.man
--------------------------------------------------------------------------------
/shell/src/test/java/alluxio/cli/LogLevelTest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/shell/src/test/java/alluxio/cli/LogLevelTest.java
--------------------------------------------------------------------------------
/stress/common/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/stress/common/pom.xml
--------------------------------------------------------------------------------
/stress/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/stress/pom.xml
--------------------------------------------------------------------------------
/stress/shell/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/stress/shell/pom.xml
--------------------------------------------------------------------------------
/table/base/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/base/pom.xml
--------------------------------------------------------------------------------
/table/client/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/client/pom.xml
--------------------------------------------------------------------------------
/table/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/pom.xml
--------------------------------------------------------------------------------
/table/server/common/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/server/common/pom.xml
--------------------------------------------------------------------------------
/table/server/master/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/server/master/pom.xml
--------------------------------------------------------------------------------
/table/server/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/server/pom.xml
--------------------------------------------------------------------------------
/table/server/underdb/glue/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/server/underdb/glue/pom.xml
--------------------------------------------------------------------------------
/table/server/underdb/hive/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/server/underdb/hive/pom.xml
--------------------------------------------------------------------------------
/table/server/underdb/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/server/underdb/pom.xml
--------------------------------------------------------------------------------
/table/shell/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/table/shell/pom.xml
--------------------------------------------------------------------------------
/templates/markdown.hbs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/templates/markdown.hbs
--------------------------------------------------------------------------------
/templates/operation.hbs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/templates/operation.hbs
--------------------------------------------------------------------------------
/templates/strapdown.html.hbs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/templates/strapdown.html.hbs
--------------------------------------------------------------------------------
/tests/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/tests/pom.xml
--------------------------------------------------------------------------------
/tests/src/test/java/alluxio/client/rest/TestCase.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/tests/src/test/java/alluxio/client/rest/TestCase.java
--------------------------------------------------------------------------------
/tests/src/test/resources/contract/alluxiofs.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/tests/src/test/resources/contract/alluxiofs.xml
--------------------------------------------------------------------------------
/tests/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/tests/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/tests/src/test/resources/old_journals/backup-1.8.0:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/tests/src/test/resources/old_journals/backup-1.8.0
--------------------------------------------------------------------------------
/tests/src/test/resources/old_journals/journal-1.8.0/BlockMaster/v1/_format_1534449775823:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/src/test/resources/old_journals/journal-1.8.0/FileSystemMaster/v1/_format_1534449775832:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/src/test/resources/old_journals/journal-1.8.0/MetaMaster/v1/_format_1534449775839:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/src/test/resources/old_journals/journal-1.8.0/MetricsMaster/v1/_format_1534449775847:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/underfs/abfs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/abfs/pom.xml
--------------------------------------------------------------------------------
/underfs/adl/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/adl/pom.xml
--------------------------------------------------------------------------------
/underfs/adl/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/adl/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/cephfs-hadoop/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/cephfs-hadoop/pom.xml
--------------------------------------------------------------------------------
/underfs/cephfs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/cephfs/pom.xml
--------------------------------------------------------------------------------
/underfs/cos/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/cos/pom.xml
--------------------------------------------------------------------------------
/underfs/cosn/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/cosn/pom.xml
--------------------------------------------------------------------------------
/underfs/cosn/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/cosn/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/gcs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/gcs/pom.xml
--------------------------------------------------------------------------------
/underfs/gcs/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/gcs/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/hdfs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/hdfs/pom.xml
--------------------------------------------------------------------------------
/underfs/hdfs/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/hdfs/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/kodo/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/kodo/pom.xml
--------------------------------------------------------------------------------
/underfs/local/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/local/pom.xml
--------------------------------------------------------------------------------
/underfs/local/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/local/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/obs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/obs/pom.xml
--------------------------------------------------------------------------------
/underfs/oss/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/oss/pom.xml
--------------------------------------------------------------------------------
/underfs/oss/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/oss/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/ozone/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/ozone/pom.xml
--------------------------------------------------------------------------------
/underfs/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/pom.xml
--------------------------------------------------------------------------------
/underfs/s3a/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/s3a/pom.xml
--------------------------------------------------------------------------------
/underfs/s3a/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/s3a/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/swift/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/swift/pom.xml
--------------------------------------------------------------------------------
/underfs/swift/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/swift/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/tos/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/tos/pom.xml
--------------------------------------------------------------------------------
/underfs/wasb/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/wasb/pom.xml
--------------------------------------------------------------------------------
/underfs/wasb/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/wasb/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/underfs/web/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/web/pom.xml
--------------------------------------------------------------------------------
/underfs/web/src/test/resources/log4j.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/underfs/web/src/test/resources/log4j.properties
--------------------------------------------------------------------------------
/webui/.nvmrc:
--------------------------------------------------------------------------------
1 | 10.11.0
2 |
--------------------------------------------------------------------------------
/webui/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/README.md
--------------------------------------------------------------------------------
/webui/common/.eslintignore:
--------------------------------------------------------------------------------
1 | **/*.js
2 |
--------------------------------------------------------------------------------
/webui/common/.eslintrc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/.eslintrc.js
--------------------------------------------------------------------------------
/webui/common/.nvmrc:
--------------------------------------------------------------------------------
1 | 10.11.0
2 |
--------------------------------------------------------------------------------
/webui/common/.prettierrc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/.prettierrc.js
--------------------------------------------------------------------------------
/webui/common/npm-shrinkwrap.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/npm-shrinkwrap.json
--------------------------------------------------------------------------------
/webui/common/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/package.json
--------------------------------------------------------------------------------
/webui/common/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/public/favicon.ico
--------------------------------------------------------------------------------
/webui/common/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/public/index.html
--------------------------------------------------------------------------------
/webui/common/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/public/manifest.json
--------------------------------------------------------------------------------
/webui/common/src/App.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/App.test.tsx
--------------------------------------------------------------------------------
/webui/common/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/App.tsx
--------------------------------------------------------------------------------
/webui/common/src/__snapshots__/App.test.tsx.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/__snapshots__/App.test.tsx.snap
--------------------------------------------------------------------------------
/webui/common/src/components/FileView/FileView.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/FileView/FileView.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Footer/Footer.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Footer/Footer.scss
--------------------------------------------------------------------------------
/webui/common/src/components/Footer/Footer.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Footer/Footer.test.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Footer/Footer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Footer/Footer.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Header/Header.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Header/Header.scss
--------------------------------------------------------------------------------
/webui/common/src/components/Header/Header.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Header/Header.test.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Header/Header.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Header/Header.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/LineGraph/LineGraph.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/LineGraph/LineGraph.scss
--------------------------------------------------------------------------------
/webui/common/src/components/LineGraph/LineGraph.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/LineGraph/LineGraph.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Logs/Logs.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Logs/Logs.test.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Logs/Logs.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Logs/Logs.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Paginator/Paginator.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Paginator/Paginator.scss
--------------------------------------------------------------------------------
/webui/common/src/components/Paginator/Paginator.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Paginator/Paginator.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Stacks/Stacks.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Stacks/Stacks.test.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/Stacks/Stacks.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/Stacks/Stacks.tsx
--------------------------------------------------------------------------------
/webui/common/src/components/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/components/index.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/index.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/scss/_themeVariables.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/scss/_themeVariables.scss
--------------------------------------------------------------------------------
/webui/common/src/constants/types/IAlertErrors.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/IAlertErrors.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/types/ICommonState.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/ICommonState.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/types/IConfigTriple.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/IConfigTriple.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/types/ICounter.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/ICounter.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/types/IFileBlockInfo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/IFileBlockInfo.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/types/IFileInfo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/IFileInfo.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/types/IFileViewData.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/IFileViewData.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/types/INavigationData.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/INavigationData.tsx
--------------------------------------------------------------------------------
/webui/common/src/constants/types/IRequest.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/constants/types/IRequest.tsx
--------------------------------------------------------------------------------
/webui/common/src/images/alluxio-mark-tight-sm.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/images/alluxio-mark-tight-sm.svg
--------------------------------------------------------------------------------
/webui/common/src/images/icon-slack.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/images/icon-slack.svg
--------------------------------------------------------------------------------
/webui/common/src/index.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/index.scss
--------------------------------------------------------------------------------
/webui/common/src/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/index.tsx
--------------------------------------------------------------------------------
/webui/common/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/webui/common/src/store/config/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/config/actions.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/config/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/config/reducer.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/config/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/config/sagas.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/config/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/config/types.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/logs/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/logs/actions.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/logs/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/logs/reducer.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/logs/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/logs/sagas.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/logs/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/logs/types.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/refresh/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/refresh/actions.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/refresh/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/refresh/reducer.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/refresh/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/refresh/types.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/stacks/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/stacks/actions.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/stacks/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/stacks/reducer.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/stacks/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/stacks/sagas.tsx
--------------------------------------------------------------------------------
/webui/common/src/store/stacks/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/store/stacks/types.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/index.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/misc/autoRefresh.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/misc/autoRefresh.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/misc/bytesToString.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/misc/bytesToString.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/misc/createAlertErrors.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/misc/createAlertErrors.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/misc/disableFormSubmit.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/misc/disableFormSubmit.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/misc/getDisplayName.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/misc/getDisplayName.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/misc/isExternalLink.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/misc/isExternalLink.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/misc/queryStringUtils.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/misc/queryStringUtils.tsx
--------------------------------------------------------------------------------
/webui/common/src/utilities/saga/getSagaRequest.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/src/utilities/saga/getSagaRequest.tsx
--------------------------------------------------------------------------------
/webui/common/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/tsconfig.json
--------------------------------------------------------------------------------
/webui/common/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/common/tslint.json
--------------------------------------------------------------------------------
/webui/lerna.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/lerna.json
--------------------------------------------------------------------------------
/webui/master/.env:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/webui/master/.env.development:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/.env.development
--------------------------------------------------------------------------------
/webui/master/.env.production:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/.env.production
--------------------------------------------------------------------------------
/webui/master/.eslintignore:
--------------------------------------------------------------------------------
1 | **/*.js
2 |
--------------------------------------------------------------------------------
/webui/master/.eslintrc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/.eslintrc.js
--------------------------------------------------------------------------------
/webui/master/.nvmrc:
--------------------------------------------------------------------------------
1 | 10.11.0
2 |
--------------------------------------------------------------------------------
/webui/master/.prettierrc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/.prettierrc.js
--------------------------------------------------------------------------------
/webui/master/config-overrides.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/config-overrides.js
--------------------------------------------------------------------------------
/webui/master/npm-shrinkwrap.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/npm-shrinkwrap.json
--------------------------------------------------------------------------------
/webui/master/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/package.json
--------------------------------------------------------------------------------
/webui/master/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/public/favicon.ico
--------------------------------------------------------------------------------
/webui/master/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/public/index.html
--------------------------------------------------------------------------------
/webui/master/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/public/manifest.json
--------------------------------------------------------------------------------
/webui/master/src/configureStore.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/configureStore.tsx
--------------------------------------------------------------------------------
/webui/master/src/constants/data/footerNavigation.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/constants/data/footerNavigation.tsx
--------------------------------------------------------------------------------
/webui/master/src/constants/data/headerNavigation.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/constants/data/headerNavigation.tsx
--------------------------------------------------------------------------------
/webui/master/src/constants/data/routePaths.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/constants/data/routePaths.tsx
--------------------------------------------------------------------------------
/webui/master/src/constants/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/constants/index.tsx
--------------------------------------------------------------------------------
/webui/master/src/constants/types/IJournalDiskInfo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/constants/types/IJournalDiskInfo.tsx
--------------------------------------------------------------------------------
/webui/master/src/constants/types/IMasterInfo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/constants/types/IMasterInfo.tsx
--------------------------------------------------------------------------------
/webui/master/src/constants/types/INodeInfo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/constants/types/INodeInfo.tsx
--------------------------------------------------------------------------------
/webui/master/src/constants/types/IStorageTierInfo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/constants/types/IStorageTierInfo.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/App/App.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/App/App.scss
--------------------------------------------------------------------------------
/webui/master/src/containers/App/App.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/App/App.test.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/App/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/App/App.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/index.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/pages/Browse/Browse.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/pages/Browse/Browse.scss
--------------------------------------------------------------------------------
/webui/master/src/containers/pages/Browse/Browse.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/pages/Browse/Browse.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/pages/Data/Data.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/pages/Data/Data.test.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/pages/Data/Data.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/pages/Data/Data.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/pages/Masters/Masters.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/pages/Masters/Masters.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/pages/Metrics/Metrics.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/pages/Metrics/Metrics.tsx
--------------------------------------------------------------------------------
/webui/master/src/containers/pages/Workers/Workers.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/containers/pages/Workers/Workers.tsx
--------------------------------------------------------------------------------
/webui/master/src/index.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/index.scss
--------------------------------------------------------------------------------
/webui/master/src/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/index.tsx
--------------------------------------------------------------------------------
/webui/master/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/webui/master/src/store/browse/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/browse/actions.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/browse/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/browse/reducer.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/browse/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/browse/sagas.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/browse/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/browse/types.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/data/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/data/actions.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/data/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/data/reducer.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/data/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/data/sagas.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/data/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/data/types.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/index.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/init/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/init/actions.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/init/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/init/reducer.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/init/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/init/sagas.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/init/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/init/types.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/masters/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/masters/actions.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/masters/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/masters/reducer.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/masters/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/masters/sagas.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/masters/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/masters/types.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/metrics/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/metrics/actions.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/metrics/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/metrics/reducer.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/metrics/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/metrics/sagas.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/metrics/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/metrics/types.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/mounttable/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/mounttable/actions.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/mounttable/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/mounttable/reducer.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/mounttable/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/mounttable/sagas.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/mounttable/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/mounttable/types.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/overview/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/overview/actions.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/overview/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/overview/reducer.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/overview/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/overview/sagas.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/overview/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/overview/types.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/workers/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/workers/actions.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/workers/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/workers/reducer.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/workers/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/workers/sagas.tsx
--------------------------------------------------------------------------------
/webui/master/src/store/workers/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/src/store/workers/types.tsx
--------------------------------------------------------------------------------
/webui/master/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/tsconfig.json
--------------------------------------------------------------------------------
/webui/master/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/master/tslint.json
--------------------------------------------------------------------------------
/webui/npm-shrinkwrap.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/npm-shrinkwrap.json
--------------------------------------------------------------------------------
/webui/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/package.json
--------------------------------------------------------------------------------
/webui/pom.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/pom.xml
--------------------------------------------------------------------------------
/webui/worker/.env:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/webui/worker/.env.development:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/.env.development
--------------------------------------------------------------------------------
/webui/worker/.env.production:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/.env.production
--------------------------------------------------------------------------------
/webui/worker/.eslintignore:
--------------------------------------------------------------------------------
1 | **/*.js
2 |
--------------------------------------------------------------------------------
/webui/worker/.eslintrc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/.eslintrc.js
--------------------------------------------------------------------------------
/webui/worker/.nvmrc:
--------------------------------------------------------------------------------
1 | 10.11.0
2 |
--------------------------------------------------------------------------------
/webui/worker/.prettierrc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/.prettierrc.js
--------------------------------------------------------------------------------
/webui/worker/config-overrides.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/config-overrides.js
--------------------------------------------------------------------------------
/webui/worker/images.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/images.d.ts
--------------------------------------------------------------------------------
/webui/worker/npm-shrinkwrap.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/npm-shrinkwrap.json
--------------------------------------------------------------------------------
/webui/worker/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/package.json
--------------------------------------------------------------------------------
/webui/worker/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/public/favicon.ico
--------------------------------------------------------------------------------
/webui/worker/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/public/index.html
--------------------------------------------------------------------------------
/webui/worker/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/public/manifest.json
--------------------------------------------------------------------------------
/webui/worker/src/configureStore.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/configureStore.tsx
--------------------------------------------------------------------------------
/webui/worker/src/constants/data/footerNavigation.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/constants/data/footerNavigation.tsx
--------------------------------------------------------------------------------
/webui/worker/src/constants/data/headerNavigation.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/constants/data/headerNavigation.tsx
--------------------------------------------------------------------------------
/webui/worker/src/constants/data/routePaths.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/constants/data/routePaths.tsx
--------------------------------------------------------------------------------
/webui/worker/src/constants/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/constants/index.tsx
--------------------------------------------------------------------------------
/webui/worker/src/constants/types/IStorageTierInfo.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/constants/types/IStorageTierInfo.tsx
--------------------------------------------------------------------------------
/webui/worker/src/containers/App/App.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/containers/App/App.scss
--------------------------------------------------------------------------------
/webui/worker/src/containers/App/App.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/containers/App/App.test.tsx
--------------------------------------------------------------------------------
/webui/worker/src/containers/App/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/containers/App/App.tsx
--------------------------------------------------------------------------------
/webui/worker/src/containers/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/containers/index.tsx
--------------------------------------------------------------------------------
/webui/worker/src/containers/pages/Metrics/Metrics.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/containers/pages/Metrics/Metrics.tsx
--------------------------------------------------------------------------------
/webui/worker/src/index.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/index.scss
--------------------------------------------------------------------------------
/webui/worker/src/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/index.tsx
--------------------------------------------------------------------------------
/webui/worker/src/react-app-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/webui/worker/src/store/blockInfo/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/blockInfo/actions.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/blockInfo/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/blockInfo/reducer.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/blockInfo/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/blockInfo/sagas.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/blockInfo/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/blockInfo/types.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/index.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/init/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/init/actions.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/init/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/init/reducer.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/init/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/init/sagas.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/init/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/init/types.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/metrics/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/metrics/actions.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/metrics/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/metrics/reducer.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/metrics/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/metrics/sagas.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/metrics/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/metrics/types.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/overview/actions.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/overview/actions.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/overview/reducer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/overview/reducer.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/overview/sagas.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/overview/sagas.tsx
--------------------------------------------------------------------------------
/webui/worker/src/store/overview/types.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/src/store/overview/types.tsx
--------------------------------------------------------------------------------
/webui/worker/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/tsconfig.json
--------------------------------------------------------------------------------
/webui/worker/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Alluxio/alluxio/HEAD/webui/worker/tslint.json
--------------------------------------------------------------------------------