@@ -51,7 +51,7 @@ class StoragePolicy(conf: CelebornConf, storageManager: StorageManager, source:
51
51
orderList)
52
52
}
53
53
}
54
- logError(s " Create evict file filaed for ${partitionDataWriterContext.getPartitionLocation}" )
54
+ logError(s " Create evict file failed for ${partitionDataWriterContext.getPartitionLocation}" )
55
55
null
56
56
}
57
57
@@ -69,7 +69,7 @@ class StoragePolicy(conf: CelebornConf, storageManager: StorageManager, source:
69
69
" Partition data writer context can not have null partition location" )
70
70
}
71
71
72
- def getPartitionMetahandler (fileInfo : FileInfo ) = {
72
+ def getPartitionMetaHandler (fileInfo : FileInfo ) = {
73
73
partitionType match {
74
74
case PartitionType .REDUCE =>
75
75
new ReducePartitionMetaHandler (partitionDataWriterContext.isRangeReadFilter, fileInfo)
@@ -98,7 +98,7 @@ class StoragePolicy(conf: CelebornConf, storageManager: StorageManager, source:
98
98
partitionDataWriterContext.getUserIdentifier,
99
99
partitionDataWriterContext.getPartitionType,
100
100
partitionDataWriterContext.isPartitionSplitEnabled)
101
- val metaHandler = getPartitionMetahandler (memoryFileInfo)
101
+ val metaHandler = getPartitionMetaHandler (memoryFileInfo)
102
102
new MemoryTierWriter (
103
103
conf,
104
104
metaHandler,
@@ -120,7 +120,7 @@ class StoragePolicy(conf: CelebornConf, storageManager: StorageManager, source:
120
120
partitionDataWriterContext.getPartitionType,
121
121
partitionDataWriterContext.isPartitionSplitEnabled)
122
122
partitionDataWriterContext.setWorkingDir(workingDir)
123
- val metaHandler = getPartitionMetahandler (diskFileInfo)
123
+ val metaHandler = getPartitionMetaHandler (diskFileInfo)
124
124
if (storageInfoType == StorageInfo .Type .HDD || storageInfoType == StorageInfo .Type .SSD ) {
125
125
new LocalTierWriter (
126
126
conf,
0 commit comments