forked from JointCloud/pcm-coordinator
fix: update modelarts ServiceName now.Unix of ai
This commit is contained in:
parent
32bc8b11fe
commit
0003d147a0
|
@ -791,11 +791,14 @@ func (m *ModelArtsLink) CreateInferDeployInstance(ctx context.Context, option *o
|
||||||
}
|
}
|
||||||
var configItems []*modelarts.ServiceConfig
|
var configItems []*modelarts.ServiceConfig
|
||||||
configItems = append(configItems, configParam)
|
configItems = append(configItems, configParam)
|
||||||
|
now := time.Now()
|
||||||
|
timestampSec := now.Unix()
|
||||||
|
str := strconv.FormatInt(timestampSec, 10)
|
||||||
req := &modelarts.CreateServiceReq{
|
req := &modelarts.CreateServiceReq{
|
||||||
Platform: m.platform,
|
Platform: m.platform,
|
||||||
Config: configItems,
|
Config: configItems,
|
||||||
InferType: "real-time",
|
InferType: "real-time",
|
||||||
ServiceName: option.ModelName + "_" + option.ModelType + "_" + Npu,
|
ServiceName: option.ModelName + "_" + option.ModelType + "_" + Npu + "_" + str,
|
||||||
}
|
}
|
||||||
ctx, cancel := context.WithTimeout(context.Background(), 150*time.Second)
|
ctx, cancel := context.WithTimeout(context.Background(), 150*time.Second)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
Loading…
Reference in New Issue