Uses of Enum Class
org.apache.hadoop.util.DataChecksum.Type
Packages that use DataChecksum.Type
Package
Description
An abstract file system API.
Filesystem implementations that allow Hadoop to read directly from
the local file system.
Common utilities.
-
Uses of DataChecksum.Type in org.apache.hadoop.fs
Methods in org.apache.hadoop.fs that return DataChecksum.TypeModifier and TypeMethodDescriptionFsServerDefaults.getChecksumType()Options.ChecksumOpt.getChecksumType()MD5MD5CRC32CastagnoliFileChecksum.getCrcType()MD5MD5CRC32FileChecksum.getCrcType()returns the CRC type.MD5MD5CRC32GzipFileChecksum.getCrcType()static DataChecksum.TypeMD5MD5CRC32FileChecksum.getCrcTypeFromAlgorithmName(String algorithm) Constructors in org.apache.hadoop.fs with parameters of type DataChecksum.TypeModifierConstructorDescriptionChecksumOpt(DataChecksum.Type type, int size) Normal ctorCompositeCrcFileChecksum(int crc, DataChecksum.Type crcType, int bytesPerCrc) Create a CompositeCrcFileChecksum.FsServerDefaults(long blockSize, int bytesPerChecksum, int writePacketSize, short replication, int fileBufferSize, boolean encryptDataTransfer, long trashInterval, DataChecksum.Type checksumType) FsServerDefaults(long blockSize, int bytesPerChecksum, int writePacketSize, short replication, int fileBufferSize, boolean encryptDataTransfer, long trashInterval, DataChecksum.Type checksumType, String keyProviderUri) FsServerDefaults(long blockSize, int bytesPerChecksum, int writePacketSize, short replication, int fileBufferSize, boolean encryptDataTransfer, long trashInterval, DataChecksum.Type checksumType, String keyProviderUri, byte storagepolicy) FsServerDefaults(long blockSize, int bytesPerChecksum, int writePacketSize, short replication, int fileBufferSize, boolean encryptDataTransfer, long trashInterval, DataChecksum.Type checksumType, String keyProviderUri, byte storagepolicy, boolean snapshotTrashRootEnabled) -
Uses of DataChecksum.Type in org.apache.hadoop.fs.ftp
Fields in org.apache.hadoop.fs.ftp declared as DataChecksum.TypeModifier and TypeFieldDescriptionstatic final DataChecksum.TypeFtpConfigKeys.CHECKSUM_TYPE_DEFAULT -
Uses of DataChecksum.Type in org.apache.hadoop.fs.local
Fields in org.apache.hadoop.fs.local declared as DataChecksum.TypeModifier and TypeFieldDescriptionstatic final DataChecksum.TypeLocalConfigKeys.CHECKSUM_TYPE_DEFAULT -
Uses of DataChecksum.Type in org.apache.hadoop.util
Methods in org.apache.hadoop.util that return DataChecksum.TypeModifier and TypeMethodDescriptionDataChecksum.getChecksumType()static DataChecksum.TypeDataChecksum.Type.valueOf(int id) the type corresponding to the id.static DataChecksum.TypeReturns the enum constant of this class with the specified name.static DataChecksum.Type[]DataChecksum.Type.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.hadoop.util with parameters of type DataChecksum.TypeModifier and TypeMethodDescriptionstatic CrcComposerCrcComposer.newCrcComposer(DataChecksum.Type type, long bytesPerCrcHint) Returns a CrcComposer which will collapse all ingested CRCs into a single value.static DataChecksumDataChecksum.newDataChecksum(DataChecksum.Type type, int bytesPerChecksum) static CrcComposerCrcComposer.newStripedCrcComposer(DataChecksum.Type type, long bytesPerCrcHint, long stripeLength) Returns a CrcComposer which will collapse CRCs for every combined underlying data size which aligns with the specified stripe boundary.