mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-27 12:49:41 +08:00
86d92a42b4
* Added global http client * Added Do func for global http client * Changed the code to use the global http client * Fix http client in volume uploader * Fixed pkg name * Fixed http util funcs * Fixed http client for bench_filer_upload * Fixed http client for stress_filer_upload * Fixed http client for filer_server_handlers_proxy * Fixed http client for command_fs_merge_volumes * Fixed http client for command_fs_merge_volumes and command_volume_fsck * Fixed http client for s3api_server * Added init global client for main funcs * Rename global_client to client * Changed: - fixed NewHttpClient; - added CheckIsHttpsClientEnabled func - updated security.toml in scaffold * Reduce the visibility of some functions in the util/http/client pkg * Added the loadSecurityConfig function * Use util.LoadSecurityConfiguration() in NewHttpClient func
93 lines
2.3 KiB
Go
93 lines
2.3 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
"log"
|
|
"math/rand"
|
|
"time"
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/operation"
|
|
"github.com/seaweedfs/seaweedfs/weed/security"
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
|
util_http "github.com/seaweedfs/seaweedfs/weed/util/http"
|
|
)
|
|
|
|
var (
|
|
master = flag.String("master", "127.0.0.1:9333", "the master server")
|
|
repeat = flag.Int("n", 5, "repeat how many times")
|
|
garbageThreshold = flag.Float64("garbageThreshold", 0.3, "garbageThreshold")
|
|
replication = flag.String("replication", "", "replication 000, 001, 002, etc")
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
util_http.InitGlobalHttpClient()
|
|
|
|
util.LoadSecurityConfiguration()
|
|
grpcDialOption := security.LoadClientTLS(util.GetViper(), "grpc.client")
|
|
|
|
genFile(grpcDialOption, 0)
|
|
|
|
go func() {
|
|
for {
|
|
println("vacuum threshold", *garbageThreshold)
|
|
_, _, err := util_http.Get(fmt.Sprintf("http://%s/vol/vacuum?garbageThreshold=%f", pb.ServerAddress(*master).ToHttpAddress(), *garbageThreshold))
|
|
if err != nil {
|
|
log.Fatalf("vacuum: %v", err)
|
|
}
|
|
time.Sleep(time.Second)
|
|
}
|
|
}()
|
|
|
|
for i := 0; i < *repeat; i++ {
|
|
// create 2 files, and delete one of them
|
|
|
|
assignResult, targetUrl := genFile(grpcDialOption, i)
|
|
|
|
util_http.Delete(targetUrl, string(assignResult.Auth))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func genFile(grpcDialOption grpc.DialOption, i int) (*operation.AssignResult, string) {
|
|
assignResult, err := operation.Assign(func(_ context.Context) pb.ServerAddress { return pb.ServerAddress(*master) }, grpcDialOption, &operation.VolumeAssignRequest{
|
|
Count: 1,
|
|
Replication: *replication,
|
|
})
|
|
if err != nil {
|
|
log.Fatalf("assign: %v", err)
|
|
}
|
|
|
|
data := make([]byte, 1024)
|
|
rand.Read(data)
|
|
|
|
targetUrl := fmt.Sprintf("http://%s/%s", assignResult.Url, assignResult.Fid)
|
|
|
|
uploadOption := &operation.UploadOption{
|
|
UploadUrl: targetUrl,
|
|
Filename: fmt.Sprintf("test%d", i),
|
|
Cipher: false,
|
|
IsInputCompressed: true,
|
|
MimeType: "bench/test",
|
|
PairMap: nil,
|
|
Jwt: assignResult.Auth,
|
|
}
|
|
|
|
uploader, err := operation.NewUploader()
|
|
if err != nil {
|
|
log.Fatalf("upload: %v", err)
|
|
}
|
|
|
|
_, err = uploader.UploadData(data, uploadOption)
|
|
if err != nil {
|
|
log.Fatalf("upload: %v", err)
|
|
}
|
|
return assignResult, targetUrl
|
|
}
|