- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for CompressionType (0.16 sec)
-
internal/s3select/select.go
parquetFormat = "parquet" ) // CompressionType - represents value inside <CompressionType/> in request XML. type CompressionType string const ( noneType CompressionType = "none" gzipType CompressionType = "GZIP" bzip2Type CompressionType = "BZIP2" zstdType CompressionType = "ZSTD" lz4Type CompressionType = "LZ4" s2Type CompressionType = "S2" snappyType CompressionType = "SNAPPY" )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 22 00:33:43 UTC 2024 - 21.2K bytes - Viewed (0) -
api/go1.6.txt
pkg debug/elf, const COMPRESS_HIOS CompressionType pkg debug/elf, const COMPRESS_HIPROC = 2147483647 pkg debug/elf, const COMPRESS_HIPROC CompressionType pkg debug/elf, const COMPRESS_LOOS = 1610612736 pkg debug/elf, const COMPRESS_LOOS CompressionType pkg debug/elf, const COMPRESS_LOPROC = 1879048192 pkg debug/elf, const COMPRESS_LOPROC CompressionType pkg debug/elf, const COMPRESS_ZLIB = 1
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jan 13 23:40:13 UTC 2016 - 12.9K bytes - Viewed (0) -
internal/s3select/select_test.go
<SelectObjectContentRequest> <Expression>SELECT s.synonyms from s3object s WHERE 'whatever' IN s.synonyms</Expression> <ExpressionType>SQL</ExpressionType> <InputSerialization> <CompressionType>NONE</CompressionType> <JSON> <Type>DOCUMENT</Type> </JSON> </InputSerialization> <OutputSerialization> <CSV> <QuoteCharacter>"</QuoteCharacter> </CSV>
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 23 07:19:11 UTC 2023 - 76.2K bytes - Viewed (0) -
docs/select/select.py
ExpressionType='SQL', Expression="select * from s3object s where s.Location like '%United States%'", InputSerialization={ 'CSV': { "FileHeaderInfo": "USE", }, 'CompressionType': 'GZIP', }, OutputSerialization={'CSV': {}}, ) for event in r['Payload']: if 'Records' in event: records = event['Records']['Payload'].decode('utf-8') print(records)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Aug 18 00:11:39 UTC 2018 - 1K bytes - Viewed (0) -
internal/s3select/select_benchmark_test.go
<?xml version="1.0" encoding="UTF-8"?> <SelectObjectContentRequest> <Expression>` + query + `</Expression> <ExpressionType>SQL</ExpressionType> <InputSerialization> <CompressionType>NONE</CompressionType> <CSV> <FileHeaderInfo>USE</FileHeaderInfo> </CSV> </InputSerialization> <OutputSerialization> <CSV> </CSV> </OutputSerialization>
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 14 13:54:47 UTC 2022 - 5K bytes - Viewed (0) -
internal/s3select/errors.go
message: "The file is not in a supported compression format. GZIP, BZIP2, ZSTD, LZ4, S2 and SNAPPY are supported.", statusCode: 400, cause: err, } } func errInvalidCompression(err error, t CompressionType) *s3Error { return &s3Error{ code: "InvalidCompressionFormat", message: strings.ToUpper(string(t)) + " is not applicable to the queried object. Please correct the request and try again.", statusCode: 400,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 14 16:48:36 UTC 2022 - 4.3K bytes - Viewed (0) -
internal/s3select/progress.go
if pr == nil { return 0, 0 } return pr.scannedReader.BytesRead(), pr.processedReader.BytesRead() } func newProgressReader(rc io.ReadCloser, compType CompressionType) (*progressReader, error) { if rc == nil { return nil, errors.New("newProgressReader: nil reader provided") } scannedReader := newCountUpReader(rc) pr := progressReader{ rc: rc,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 22 00:33:43 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/select/README.md
ExpressionType='SQL', Expression="select * from s3object s where s.Location like '%United States%'", InputSerialization={ 'CSV': { "FileHeaderInfo": "USE", }, 'CompressionType': 'GZIP', }, OutputSerialization={'CSV': {}}, ) for event in r['Payload']: if 'Records' in event: records = event['Records']['Payload'].decode('utf-8') print(records)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 6.5K bytes - Viewed (0) -
api/go1.21.txt
pkg crypto/x509, type RevocationList struct, RevokedCertificates //deprecated #53573 pkg debug/elf, const COMPRESS_ZSTD = 2 #55107 pkg debug/elf, const COMPRESS_ZSTD CompressionType #55107 pkg debug/elf, const DF_1_CONFALT = 8192 #56887 pkg debug/elf, const DF_1_CONFALT DynFlag1 #56887 pkg debug/elf, const DF_1_DIRECT = 256 #56887 pkg debug/elf, const DF_1_DIRECT DynFlag1 #56887
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 07 09:39:17 UTC 2023 - 25.6K bytes - Viewed (0)