117 lines
2.8 KiB
Go
117 lines
2.8 KiB
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
"go.opencensus.io/plugin/ochttp"
|
|
"go.uber.org/zap"
|
|
"golang.org/x/net/context/ctxhttp"
|
|
|
|
ferror "github.com/fission/fission/pkg/error"
|
|
"github.com/fission/fission/pkg/types"
|
|
)
|
|
|
|
type (
|
|
Client struct {
|
|
logger *zap.Logger
|
|
url string
|
|
httpClient *http.Client
|
|
}
|
|
)
|
|
|
|
func MakeClient(logger *zap.Logger, fetcherUrl string) *Client {
|
|
return &Client{
|
|
logger: logger.Named("fetcher_client"),
|
|
url: strings.TrimSuffix(fetcherUrl, "/"),
|
|
httpClient: &http.Client{
|
|
Transport: &ochttp.Transport{},
|
|
},
|
|
}
|
|
}
|
|
|
|
func (c *Client) getSpecializeUrl() string {
|
|
return c.url + "/specialize"
|
|
}
|
|
|
|
func (c *Client) getFetchUrl() string {
|
|
return c.url + "/fetch"
|
|
}
|
|
|
|
func (c *Client) getUploadUrl() string {
|
|
return c.url + "/upload"
|
|
}
|
|
|
|
func (c *Client) Specialize(ctx context.Context, req *types.FunctionSpecializeRequest) error {
|
|
_, err := sendRequest(c.logger, ctx, c.httpClient, req, c.getSpecializeUrl())
|
|
return err
|
|
}
|
|
|
|
func (c *Client) Fetch(ctx context.Context, fr *types.FunctionFetchRequest) error {
|
|
_, err := sendRequest(c.logger, ctx, c.httpClient, fr, c.getFetchUrl())
|
|
return err
|
|
}
|
|
|
|
func (c *Client) Upload(ctx context.Context, fr *types.ArchiveUploadRequest) (*types.ArchiveUploadResponse, error) {
|
|
body, err := sendRequest(c.logger, ctx, c.httpClient, fr, c.getUploadUrl())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
uploadResp := types.ArchiveUploadResponse{}
|
|
err = json.Unmarshal(body, &uploadResp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &uploadResp, nil
|
|
}
|
|
|
|
func sendRequest(logger *zap.Logger, ctx context.Context, httpClient *http.Client, req interface{}, url string) ([]byte, error) {
|
|
body, err := json.Marshal(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
maxRetries := 20
|
|
var resp *http.Response
|
|
|
|
for i := 0; i < maxRetries; i++ {
|
|
resp, err = ctxhttp.Post(ctx, httpClient, url, "application/json", bytes.NewReader(body))
|
|
|
|
if err == nil {
|
|
if resp.StatusCode == 200 {
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
logger.Error("error reading response body", zap.Error(err))
|
|
}
|
|
defer resp.Body.Close()
|
|
return body, err
|
|
}
|
|
err = ferror.MakeErrorFromHTTP(resp)
|
|
}
|
|
|
|
// skip retry and return directly due to context deadline exceeded
|
|
if err == context.DeadlineExceeded {
|
|
msg := "error specializing function pod, either increase the specialization timeout for function or check function pod log would help."
|
|
err = errors.Wrap(err, msg)
|
|
logger.Error(msg, zap.Error(err), zap.String("url", url))
|
|
return nil, err
|
|
}
|
|
|
|
if i < maxRetries-1 {
|
|
time.Sleep(50 * time.Duration(2*i) * time.Millisecond)
|
|
logger.Error("error specializing/fetching/uploading package, retrying", zap.Error(err), zap.String("url", url))
|
|
continue
|
|
}
|
|
}
|
|
|
|
return nil, err
|
|
}
|