File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed
hadoop-cloud-storage-project/hadoop-tos/src/main/java/org/apache/hadoop/fs/tosfs/util
hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/router
hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-catalog/hadoop-yarn-applications-catalog-webapp Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1919package org .apache .hadoop .fs .tosfs .util ;
2020
2121import org .apache .hadoop .util .Preconditions ;
22- import org .checkerframework .checker .nullness .qual .Nullable ;
22+ import org .apache . hadoop . thirdparty . org . checkerframework .checker .nullness .qual .Nullable ;
2323
2424import java .util .Iterator ;
2525import java .util .NoSuchElementException ;
Original file line number Diff line number Diff line change 9999import org .apache .hadoop .thirdparty .com .google .common .util .concurrent .ListeningExecutorService ;
100100import org .apache .hadoop .thirdparty .com .google .common .util .concurrent .MoreExecutors ;
101101import org .apache .hadoop .thirdparty .com .google .common .util .concurrent .ThreadFactoryBuilder ;
102+ import org .apache .hadoop .thirdparty .org .checkerframework .checker .nullness .qual .NonNull ;
102103import org .apache .hadoop .conf .Configuration ;
103104import org .apache .hadoop .crypto .CryptoProtocolVersion ;
104105import org .apache .hadoop .fs .BatchedRemoteIterator .BatchedEntries ;
213214import org .apache .hadoop .tools .protocolPB .GetUserMappingsProtocolPB ;
214215import org .apache .hadoop .tools .protocolPB .GetUserMappingsProtocolServerSideTranslatorPB ;
215216import org .apache .hadoop .util .ReflectionUtils ;
216- import org .checkerframework .checker .nullness .qual .NonNull ;
217217import org .slf4j .Logger ;
218218import org .slf4j .LoggerFactory ;
219219
Original file line number Diff line number Diff line change @@ -184,13 +184,11 @@ public AbfsInputStream(
184184 * If none of the V1 and V2 are enabled, then no read ahead will be done.
185185 */
186186 if (readAheadV2Enabled ) {
187- ReadBufferManagerV2 .setReadBufferManagerConfigs (
188- readAheadBlockSize , client .getAbfsConfiguration ());
189- readBufferManager = ReadBufferManagerV2 .getBufferManager ();
190- } else {
191- ReadBufferManagerV1 .setReadBufferManagerConfigs (readAheadBlockSize );
192- readBufferManager = ReadBufferManagerV1 .getBufferManager ();
187+ LOG .debug ("ReadBufferManagerV2 not yet implemented, defaulting to ReadBufferManagerV1" );
193188 }
189+ ReadBufferManagerV1 .setReadBufferManagerConfigs (readAheadBlockSize );
190+ readBufferManager = ReadBufferManagerV1 .getBufferManager ();
191+
194192 if (streamStatistics != null ) {
195193 ioStatistics = streamStatistics .getIOStatistics ();
196194 }
Original file line number Diff line number Diff line change 2020 "apidoc" : " 0.17.7"
2121 },
2222 "resolutions" : {
23+ "color" : " 3.1.3" ,
2324 "triple-beam" : " 1.3.0"
2425 },
2526 "scripts" : {
You can’t perform that action at this time.
0 commit comments