Browse Source
Merge branch 'upstreamMaster' into check_chunkviews_mr
Merge branch 'upstreamMaster' into check_chunkviews_mr
# Conflicts: # weed/filer/filechunk_manifest.go # weed/filer/stream.go # weed/replication/repl_util/replication_util.go # weed/util/fasthttp_util.gopull/1913/head
Konstantin Lebedev
4 years ago
20 changed files with 109 additions and 208 deletions
-
4k8s/seaweedfs/Chart.yaml
-
2k8s/seaweedfs/values.yaml
-
2weed/command/benchmark.go
-
2weed/filer/filechunk_manifest.go
-
4weed/filer/filechunks.go
-
2weed/filer/read_write.go
-
3weed/filer/stream.go
-
58weed/filesys/dir.go
-
10weed/filesys/dir_link.go
-
2weed/filesys/dirty_page.go
-
50weed/filesys/file.go
-
37weed/filesys/filehandle.go
-
2weed/filesys/fscache.go
-
2weed/filesys/wfs.go
-
13weed/filesys/xattr.go
-
2weed/replication/repl_util/replication_util.go
-
1weed/s3api/s3api_objects_list_handlers.go
-
2weed/util/constants.go
-
117weed/util/fasthttp_util.go
-
2weed/util/http_util.go
@ -1,5 +1,5 @@ |
|||||
apiVersion: v1 |
apiVersion: v1 |
||||
description: SeaweedFS |
description: SeaweedFS |
||||
name: seaweedfs |
name: seaweedfs |
||||
appVersion: "2.32" |
|
||||
version: 2.32 |
|
||||
|
appVersion: "2.34" |
||||
|
version: 2.34 |
@ -1,117 +0,0 @@ |
|||||
package util |
|
||||
|
|
||||
import ( |
|
||||
"bytes" |
|
||||
"fmt" |
|
||||
"github.com/valyala/fasthttp" |
|
||||
"sync" |
|
||||
"time" |
|
||||
) |
|
||||
|
|
||||
var ( |
|
||||
fastClient = &fasthttp.Client{ |
|
||||
NoDefaultUserAgentHeader: true, // Don't send: User-Agent: fasthttp
|
|
||||
MaxConnsPerHost: 1024, |
|
||||
ReadBufferSize: 4096, // Make sure to set this big enough that your whole request can be read at once.
|
|
||||
WriteBufferSize: 64 * 1024, // Same but for your response.
|
|
||||
ReadTimeout: time.Second, |
|
||||
WriteTimeout: time.Second, |
|
||||
MaxIdleConnDuration: time.Minute, |
|
||||
DisableHeaderNamesNormalizing: true, // If you set the case on your headers correctly you can enable this.
|
|
||||
DialDualStack: true, |
|
||||
} |
|
||||
|
|
||||
// Put everything in pools to prevent garbage.
|
|
||||
bytesPool = sync.Pool{ |
|
||||
New: func() interface{} { |
|
||||
b := make([]byte, 0) |
|
||||
return &b |
|
||||
}, |
|
||||
} |
|
||||
|
|
||||
responsePool = sync.Pool{ |
|
||||
New: func() interface{} { |
|
||||
return make(chan *fasthttp.Response) |
|
||||
}, |
|
||||
} |
|
||||
) |
|
||||
|
|
||||
func FastGet(url string) ([]byte, bool, error) { |
|
||||
|
|
||||
req := fasthttp.AcquireRequest() |
|
||||
res := fasthttp.AcquireResponse() |
|
||||
defer fasthttp.ReleaseRequest(req) |
|
||||
defer fasthttp.ReleaseResponse(res) |
|
||||
|
|
||||
req.SetRequestURIBytes([]byte(url)) |
|
||||
req.Header.Add("Accept-Encoding", "gzip") |
|
||||
|
|
||||
err := fastClient.Do(req, res) |
|
||||
if err != nil { |
|
||||
return nil, true, err |
|
||||
} |
|
||||
|
|
||||
var data []byte |
|
||||
contentEncoding := res.Header.Peek("Content-Encoding") |
|
||||
if bytes.Compare(contentEncoding, []byte("gzip")) == 0 { |
|
||||
data, err = res.BodyGunzip() |
|
||||
} else { |
|
||||
data = res.Body() |
|
||||
} |
|
||||
|
|
||||
out := make([]byte, len(data)) |
|
||||
copy(out, data) |
|
||||
|
|
||||
if res.StatusCode() >= 400 { |
|
||||
retryable := res.StatusCode() >= 500 |
|
||||
return nil, retryable, fmt.Errorf("%s: %d", url, res.StatusCode()) |
|
||||
} |
|
||||
if err != nil { |
|
||||
return nil, false, err |
|
||||
} |
|
||||
return out, false, nil |
|
||||
} |
|
||||
|
|
||||
func FastReadUrlAsStream(fileUrl string, cipherKey []byte, isContentGzipped bool, isFullChunk bool, isCheck bool, offset int64, size int, fn func(data []byte)) (retryable bool, err error) { |
|
||||
|
|
||||
if cipherKey != nil { |
|
||||
return readEncryptedUrl(fileUrl, cipherKey, isContentGzipped, isFullChunk, offset, size, fn) |
|
||||
} |
|
||||
req := fasthttp.AcquireRequest() |
|
||||
res := fasthttp.AcquireResponse() |
|
||||
defer fasthttp.ReleaseRequest(req) |
|
||||
defer fasthttp.ReleaseResponse(res) |
|
||||
|
|
||||
req.SetRequestURIBytes([]byte(fileUrl)) |
|
||||
|
|
||||
if isCheck { |
|
||||
req.Header.Add("Range", "bytes=0-1") |
|
||||
} else if isFullChunk { |
|
||||
req.Header.Add("Accept-Encoding", "gzip") |
|
||||
} else { |
|
||||
req.Header.Add("Range", fmt.Sprintf("bytes=%d-%d", offset, offset+int64(size)-1)) |
|
||||
} |
|
||||
|
|
||||
if err = fastClient.Do(req, res); err != nil { |
|
||||
return true, err |
|
||||
} |
|
||||
|
|
||||
if res.StatusCode() >= 400 { |
|
||||
retryable = res.StatusCode() >= 500 |
|
||||
return retryable, fmt.Errorf("%s: %d", fileUrl, res.StatusCode()) |
|
||||
} |
|
||||
|
|
||||
contentEncoding := res.Header.Peek("Content-Encoding") |
|
||||
if bytes.Compare(contentEncoding, []byte("gzip")) == 0 { |
|
||||
bodyData, err := res.BodyGunzip() |
|
||||
if err != nil { |
|
||||
return false, err |
|
||||
} |
|
||||
fn(bodyData) |
|
||||
} else { |
|
||||
fn(res.Body()) |
|
||||
} |
|
||||
|
|
||||
return false, nil |
|
||||
|
|
||||
} |
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue