Skip to content

Commit d15c5d7

Browse files
committed
init docs
1 parent 0dc60ac commit d15c5d7

File tree

377 files changed

+43707
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

377 files changed

+43707
-0
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Intellij configuration files
2+
*.iml
3+
*.ipr
4+
*.iws
5+
.idea
6+
# MacOS files
7+
.DS_Store
8+
9+
# IDE / text editor
10+
.vscode
11+
.fleet
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
parameter,defaultValue
2+
alluxio.fuse.cached.paths.max,500
3+
alluxio.fuse.debug.enabled,false
4+
alluxio.fuse.fs.name,alluxio-fuse
5+
alluxio.fuse.jnifuse.enabled,true
6+
alluxio.fuse.shared.caching.reader.enabled,false
7+
alluxio.fuse.logging.threshold,10s
8+
alluxio.fuse.maxwrite.bytes,131072
9+
alluxio.fuse.user.group.translation.enabled,false

docs/_data/table/ReadType.csv

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
readtype
2+
CACHE_PROMOTE
3+
CACHE
4+
NO_CACHE

docs/_data/table/WriteTier.csv

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
writetier
2+
HIGHEST
3+
SECOND_HIGHEST
4+
LOWEST

docs/_data/table/WriteType.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
writetype
2+
CACHE_THROUGH
3+
MUST_CACHE
4+
THROUGH
5+
ASYNC_THROUGH

docs/_data/table/chmod-permission.csv

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
number,permission,rwx
2+
7,"read, write and execute",rwx
3+
6,read and write,rw-
4+
5,read and execute,r-x
5+
4,read only,r--
6+
3,write and execute,-wx
7+
2,write only,-w-
8+
1,execute only,--x
9+
0,none,---

docs/_data/table/client-metrics.csv

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
metricName,metricType
2+
Client.BlockMasterClientCount,COUNTER
3+
Client.BlockReadChunkRemote,TIMER
4+
Client.BlockWorkerClientCount,COUNTER
5+
Client.BusyExceptionCount,COUNTER
6+
Client.BytesReadLocal,COUNTER
7+
Client.BytesReadLocalThroughput,METER
8+
Client.BytesWrittenLocal,COUNTER
9+
Client.BytesWrittenLocalThroughput,METER
10+
Client.BytesWrittenUfs,COUNTER
11+
Client.CacheBytesDiscarded,METER
12+
Client.CacheBytesEvicted,METER
13+
Client.CacheBytesReadCache,METER
14+
Client.CacheBytesReadExternal,METER
15+
Client.CacheBytesReadInStreamBuffer,METER
16+
Client.CacheBytesRequestedExternal,METER
17+
Client.CacheBytesWrittenCache,METER
18+
Client.CacheCleanErrors,COUNTER
19+
Client.CacheCleanupGetErrors,COUNTER
20+
Client.CacheCleanupPutErrors,COUNTER
21+
Client.CacheCreateErrors,COUNTER
22+
Client.CacheDeleteErrors,COUNTER
23+
Client.CacheDeleteFromStoreErrors,COUNTER
24+
Client.CacheDeleteNonExistingPageErrors,COUNTER
25+
Client.CacheDeleteNotReadyErrors,COUNTER
26+
Client.CacheGetErrors,COUNTER
27+
Client.CacheGetNotReadyErrors,COUNTER
28+
Client.CacheGetStoreReadErrors,COUNTER
29+
Client.CacheHitRate,GAUGE
30+
Client.CachePageReadCacheTimeNanos,METER
31+
Client.CachePageReadExternalTimeNanos,METER
32+
Client.CachePages,COUNTER
33+
Client.CachePagesDiscarded,METER
34+
Client.CachePagesEvicted,METER
35+
Client.CachePutAsyncRejectionErrors,COUNTER
36+
Client.CachePutBenignRacingErrors,COUNTER
37+
Client.CachePutErrors,COUNTER
38+
Client.CachePutEvictionErrors,COUNTER
39+
Client.CachePutInsufficientSpaceErrors,COUNTER
40+
Client.CachePutNotReadyErrors,COUNTER
41+
Client.CachePutStoreDeleteErrors,COUNTER
42+
Client.CachePutStoreWriteErrors,COUNTER
43+
Client.CachePutStoreWriteNoSpaceErrors,COUNTER
44+
Client.CacheShadowCacheBytes,COUNTER
45+
Client.CacheShadowCacheBytesHit,COUNTER
46+
Client.CacheShadowCacheBytesRead,COUNTER
47+
Client.CacheShadowCacheFalsePositiveRatio,COUNTER
48+
Client.CacheShadowCachePages,COUNTER
49+
Client.CacheShadowCachePagesHit,COUNTER
50+
Client.CacheShadowCachePagesRead,COUNTER
51+
Client.CacheSpaceAvailable,GAUGE
52+
Client.CacheSpaceUsed,GAUGE
53+
Client.CacheSpaceUsedCount,COUNTER
54+
Client.CacheState,COUNTER
55+
Client.CacheStoreDeleteTimeout,COUNTER
56+
Client.CacheStoreGetTimeout,COUNTER
57+
Client.CacheStorePutTimeout,COUNTER
58+
Client.CacheStoreThreadsRejected,COUNTER
59+
Client.CloseAlluxioOutStreamLatency,TIMER
60+
Client.CloseUFSOutStreamLatency,TIMER
61+
Client.DefaultHiveClientCount,COUNTER
62+
Client.FileSystemMasterClientCount,COUNTER
63+
Client.MetadataCacheSize,GAUGE
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
propertyName,defaultValue
2+
alluxio.integration.master.resource.cpu,"1"
3+
alluxio.integration.master.resource.mem,"1024MB"
4+
alluxio.integration.worker.resource.cpu,"1"
5+
alluxio.integration.worker.resource.mem,"1024MB"
6+
alluxio.integration.yarn.workers.per.host.max,"1"

docs/_data/table/cluster-metrics.csv

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
metricName,metricType
2+
Cluster.ActiveRpcReadCount,COUNTER
3+
Cluster.ActiveRpcWriteCount,COUNTER
4+
Cluster.BytesReadDirect,COUNTER
5+
Cluster.BytesReadDirectThroughput,GAUGE
6+
Cluster.BytesReadDomain,COUNTER
7+
Cluster.BytesReadDomainThroughput,GAUGE
8+
Cluster.BytesReadLocal,COUNTER
9+
Cluster.BytesReadLocalThroughput,GAUGE
10+
Cluster.BytesReadPerUfs,COUNTER
11+
Cluster.BytesReadRemote,COUNTER
12+
Cluster.BytesReadRemoteThroughput,GAUGE
13+
Cluster.BytesReadUfsAll,COUNTER
14+
Cluster.BytesReadUfsThroughput,GAUGE
15+
Cluster.BytesWrittenDomain,COUNTER
16+
Cluster.BytesWrittenDomainThroughput,GAUGE
17+
Cluster.BytesWrittenLocal,COUNTER
18+
Cluster.BytesWrittenLocalThroughput,GAUGE
19+
Cluster.BytesWrittenPerUfs,COUNTER
20+
Cluster.BytesWrittenRemote,COUNTER
21+
Cluster.BytesWrittenRemoteThroughput,GAUGE
22+
Cluster.BytesWrittenUfsAll,COUNTER
23+
Cluster.BytesWrittenUfsThroughput,GAUGE
24+
Cluster.CacheHitRate,GAUGE
25+
Cluster.CapacityFree,GAUGE
26+
Cluster.CapacityTotal,GAUGE
27+
Cluster.CapacityUsed,GAUGE
28+
Cluster.LeaderId,GAUGE
29+
Cluster.LeaderIndex,GAUGE
30+
Cluster.LostWorkers,GAUGE
31+
Cluster.RootUfsCapacityFree,GAUGE
32+
Cluster.RootUfsCapacityTotal,GAUGE
33+
Cluster.RootUfsCapacityUsed,GAUGE
34+
Cluster.Workers,GAUGE
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
alluxio.fuse.cachedpaths.max:
2+
定义Alluxio-FUSE内部缓存的大小,该缓存用于存储最频繁使用的本地文件系统路径与Alluxio文件URI的对应关系。
3+
alluxio.fuse.debug.enabled:
4+
允许FUSE调试输出, 该输出会被重定向到`alluxio.logs.dir`指定目录中的`fuse.out`日志文件。
5+
alluxio.fuse.fs.name:
6+
FUSE挂载文件系统使用的描述性名称。
7+
alluxio.fuse.maxwrite.bytes:
8+
FUSE写操作的粒度(bytes),注意目前128KB是linux内核限制的上界。
9+
alluxio.fuse.user.group.translation.enabled:
10+
是否在FUSE API中将Alluxio的用户与组转化为对应的Unix用户与组。当设为false时,所有FUSE文件的用户与组
11+
将会显示为挂载alluxio-fuse线程的用户与组。

0 commit comments

Comments
 (0)