hdr.go 980 B

123456789101112131415161718192021222324252627282930313233343536
  1. package funcgraph
  2. import (
  3. "fmt"
  4. "mats/conf"
  5. "strings"
  6. "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/functiongraph/v2/model"
  7. )
  8. func CreateHdr(fileUrl string, assetId string, dbId string, table string) error {
  9. client := createFuncGraphClient()
  10. streamTopic := conf.AppConfig.Nats.HdrConvStreamTopic
  11. streamTopics := strings.Split(streamTopic, "#")
  12. request := &model.AsyncInvokeFunctionRequest{Body: map[string]interface{}{
  13. "meshUrl": fileUrl,
  14. "assetId": assetId,
  15. "dbId": dbId,
  16. "table": table,
  17. "notifyNatsUrl": conf.AppConfig.Nats.Url,
  18. "notifyStream": streamTopics[0],
  19. "notifySubject": streamTopics[1],
  20. }}
  21. request.FunctionUrn = "urn:fss:cn-east-3:0956c65fd600f29f2ff6c00dbb3d1e2e:function:default:hdrconv:latest"
  22. response, err := client.AsyncInvokeFunction(request)
  23. if err == nil {
  24. fmt.Printf("%+v\n", response)
  25. return nil
  26. }
  27. fmt.Println("CreateHrc Function Graph call failed=>", err.Error())
  28. return err
  29. }