Constants used in data files. More...
Public Attributes | |
const string | MetaDataSync = "avro.sync" |
Key for the 'sync' metadata entry. More... | |
const string | MetaDataCodec = "avro.codec" |
Key for the 'codec' metadata entry. More... | |
const string | MetaDataSchema = "avro.schema" |
Key for the 'schema' metadata entry. More... | |
const string | NullCodec = "null" |
Identifier for the null codec. More... | |
const string | DeflateCodec = "deflate" |
Identifier for the deflate codec. More... | |
const string | MetaDataReserved = "avro" |
Reserved 'avro' metadata key. More... | |
const int | Version = 1 |
Avro specification version. More... | |
const int | NullCodecHash = 2 |
Hash code for the null codec. More... | |
const int | DeflateCodecHash = 0 |
Hash code for the deflate codec. More... | |
const int | SyncSize = 16 |
Size of a sync token in bytes. More... | |
const int | DefaultSyncInterval = 4000 * SyncSize |
Default interval for sync tokens. More... | |
Static Public Attributes | |
static byte [] | Magic |
Magic bytes at the beginning of an Avro data file. More... | |
Constants used in data files.
const int Avro.File.DataFileConstants.DefaultSyncInterval = 4000 * SyncSize |
Default interval for sync tokens.
const string Avro.File.DataFileConstants.DeflateCodec = "deflate" |
Identifier for the deflate codec.
const int Avro.File.DataFileConstants.DeflateCodecHash = 0 |
Hash code for the deflate codec.
|
static |
const string Avro.File.DataFileConstants.MetaDataCodec = "avro.codec" |
Key for the 'codec' metadata entry.
const string Avro.File.DataFileConstants.MetaDataReserved = "avro" |
Reserved 'avro' metadata key.
const string Avro.File.DataFileConstants.MetaDataSchema = "avro.schema" |
Key for the 'schema' metadata entry.
const string Avro.File.DataFileConstants.MetaDataSync = "avro.sync" |
Key for the 'sync' metadata entry.
const string Avro.File.DataFileConstants.NullCodec = "null" |
Identifier for the null codec.
const int Avro.File.DataFileConstants.NullCodecHash = 2 |
Hash code for the null codec.
const int Avro.File.DataFileConstants.SyncSize = 16 |
Size of a sync token in bytes.
const int Avro.File.DataFileConstants.Version = 1 |
Avro specification version.