新增两个接口

This commit is contained in:
徐俊杰 2023-02-23 21:45:59 +08:00
parent 15e250bfe0
commit c35d8a4b63
12 changed files with 1352 additions and 548 deletions

View File

@ -6,10 +6,17 @@
<component name="ChangeListManager">
<list default="true" id="853fcb60-a62b-4975-bc33-7fe9b5daba92" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cmd/internal/controller/artisrInfo.go" beforeDir="false" afterPath="$PROJECT_DIR$/cmd/internal/controller/artisrInfo.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cmd/internal/dao/artistInfo.go" beforeDir="false" afterPath="$PROJECT_DIR$/cmd/internal/dao/artistInfo.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cmd/logs/artist_server.log" beforeDir="false" afterPath="$PROJECT_DIR$/cmd/logs/artist_server.log" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cmd/model/artwork.go" beforeDir="false" afterPath="$PROJECT_DIR$/cmd/model/artwork.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cmd/model/model.go" beforeDir="false" afterPath="$PROJECT_DIR$/cmd/model/model.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cmd/model/exhvideo.go" beforeDir="false" afterPath="$PROJECT_DIR$/cmd/model/exhvideo.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/conf/dubbogo.yaml" beforeDir="false" afterPath="$PROJECT_DIR$/conf/dubbogo.yaml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pb/artist/artist.pb.go" beforeDir="false" afterPath="$PROJECT_DIR$/pb/artist/artist.pb.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pb/artist/artist.proto" beforeDir="false" afterPath="$PROJECT_DIR$/pb/artist/artist.proto" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pb/artist/artist_triple.pb.go" beforeDir="false" afterPath="$PROJECT_DIR$/pb/artist/artist_triple.pb.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pb/artistinfo/artistinfo.pb.go" beforeDir="false" afterPath="$PROJECT_DIR$/pb/artistinfo/artistinfo.pb.go" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pb/artistinfo/artistinfo.proto" beforeDir="false" afterPath="$PROJECT_DIR$/pb/artistinfo/artistinfo.proto" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pkg/service/init.go" beforeDir="false" afterPath="$PROJECT_DIR$/pkg/service/init.go" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />

View File

@ -91,7 +91,9 @@ func (a *ArtistInfoProvider) FinishVerify(ctx context.Context, req *artistinfo.F
}
return rep, nil
}
func (a *ArtistInfoProvider) UserLock(ctx context.Context, req *artistinfo.UserLockRequest) (rep *artistinfo.UserLockRespond, err error) {
return a.artistInfoLogic.UserLock(req)
}
func (a *ArtistInfoProvider) CheckUserLock(ctx context.Context, req *artistinfo.CheckUserLockRequest) (rep *artistinfo.CheckUserLockRespond, err error) {
fmt.Println("第一处")
// backup := &artistInfo.GetUserInfoRespond{}

View File

@ -1,14 +1,18 @@
package dao
import (
"context"
"encoding/json"
"errors"
"fmt"
"github.com/alibaba/sentinel-golang/logging"
"github.com/fonchain/fonchain-artistinfo/cmd/model"
"github.com/fonchain/fonchain-artistinfo/pb/account"
"github.com/fonchain/fonchain-artistinfo/pb/artist"
"github.com/fonchain/fonchain-artistinfo/pb/artistinfo"
db "github.com/fonchain/fonchain-artistinfo/pkg/db"
"github.com/fonchain/fonchain-artistinfo/pkg/m"
"github.com/fonchain/fonchain-artistinfo/pkg/service"
"go.uber.org/zap"
)
@ -267,46 +271,57 @@ func ArtistSupplyList(req *artistinfo.ArtistSupplyListRequest) (rep *artistinfo.
}
return rep, nil
}
func UserLock(req *artistinfo.UserLockRequest) (rep *artistinfo.UserLockRespond, err error) {
var user model.User
user.ID = req.Id
if err = db.DB.Model(&user).Update("is_lock", req.IsLock).Error; err != nil {
var tx = db.DB.Model(model.User{})
switch {
case req.Id != 0:
tx = tx.Where("id = ?", req.Id)
case req.AccId != 0:
tx = tx.Where("mgmt_acc_id = ?", req.AccId)
case req.ArtistUid != "":
tx = tx.Where("mgmt_artist_uid = ?", req.ArtistUid)
default:
err = errors.New(m.ERROR_DATA_NOT_EXISTS)
zap.L().Error("get user info err", zap.Error(err))
return
}
if err = tx.Update("is_lock", req.IsLock).Error; err != nil {
zap.L().Error("get user info err", zap.Error(err))
err = errors.New(m.ERROR_SELECT)
return nil, err
}
if !req.IsLock {
var vas model.ExhVideo
vas.UserId = uint(req.Id)
if err = db.DB.Model(&vas).Update("state", 5).Where("state = 1 or state = 2 or state = 3").Error; err != nil {
zap.L().Error("get user info err", zap.Error(err))
err = errors.New(m.ERROR_SELECT)
return nil, err
}
var ee model.ExhExam
ee.UserId = uint(req.Id)
if err = db.DB.Model(&ee).Update("state", 5).Where("state = 1 or state = 2 or state = 3 or state = 4").Error; err != nil {
zap.L().Error("get user info err", zap.Error(err))
err = errors.New(m.ERROR_SELECT)
return nil, err
}
var si model.SupplyInfo
si.UserId = uint(req.Id)
if err = db.DB.Model(&si).Update("state", 5).Where("state = 1 or state = 2 or state = 3 or state = 4").Error; err != nil {
zap.L().Error("get user info err", zap.Error(err))
err = errors.New(m.ERROR_SELECT)
return nil, err
}
var ai model.ArtistInfo
ai.UserId = uint(req.Id)
if err = db.DB.Model(&ai).Update("state", 5).Where("state = 1 or state = 2 or state = 3 or state = 4").Error; err != nil {
zap.L().Error("get user info err", zap.Error(err))
err = errors.New(m.ERROR_SELECT)
return nil, err
}
}
//if !req.IsLock {
// var vas model.ExhVideo
// vas.UserId = uint(req.Id)
// if err = db.DB.Model(&vas).Update("state", 5).Where("state = 1 or state = 2 or state = 3").Error; err != nil {
// zap.L().Error("get user info err", zap.Error(err))
// err = errors.New(m.ERROR_SELECT)
// return nil, err
// }
// var ee model.ExhExam
// ee.UserId = uint(req.Id)
// if err = db.DB.Model(&ee).Update("state", 5).Where("state = 1 or state = 2 or state = 3 or state = 4").Error; err != nil {
// zap.L().Error("get user info err", zap.Error(err))
// err = errors.New(m.ERROR_SELECT)
// return nil, err
// }
// var si model.SupplyInfo
// si.UserId = uint(req.Id)
// if err = db.DB.Model(&si).Update("state", 5).Where("state = 1 or state = 2 or state = 3 or state = 4").Error; err != nil {
// zap.L().Error("get user info err", zap.Error(err))
// err = errors.New(m.ERROR_SELECT)
// return nil, err
// }
// var ai model.ArtistInfo
// ai.UserId = uint(req.Id)
// if err = db.DB.Model(&ai).Update("state", 5).Where("state = 1 or state = 2 or state = 3 or state = 4").Error; err != nil {
// zap.L().Error("get user info err", zap.Error(err))
// err = errors.New(m.ERROR_SELECT)
// return nil, err
// }
//}
return rep, nil
}
@ -494,8 +509,11 @@ func FindUser(req *artistinfo.FindUserRequest) (rep *artistinfo.UserInfo, err er
}
func UpdateUserData(req *artistinfo.UserInfo) (rep *artistinfo.CommonNoParams, err error) {
var preUpdateData model.User
var tx = db.DB.Preload("RealNameInfo")
var (
preUpdateData model.User
tx = db.DB.Preload("RealNameInfo")
needUpdateMobile bool
)
if req.Id != 0 {
tx = tx.Where("id = ?", req.Id)
} else if req.MgmtAccId != 0 {
@ -513,7 +531,8 @@ func UpdateUserData(req *artistinfo.UserInfo) (rep *artistinfo.CommonNoParams, e
if req.MgmtArtistUid != "" {
preUpdateData.MgmtArtistUid = req.MgmtArtistUid
}
if req.TelNum != "" {
if req.TelNum != "" && req.TelNum != preUpdateData.TelNum {
needUpdateMobile = true
preUpdateData.TelNum = req.TelNum
}
if req.InviteCode != "" {
@ -619,6 +638,26 @@ func UpdateUserData(req *artistinfo.UserInfo) (rep *artistinfo.CommonNoParams, e
}
err = db.DB.Save(&realName).Error
}
//更新手机号码
if needUpdateMobile {
// 更新账号服务中手机号
if _, err = service.AccountImpl.UpdateTelNum(context.Background(), &account.SendNewTelNumMsgRequest{
Domain: req.Domain,
ID: uint64(preUpdateData.MgmtAccId),
NewTelNum: preUpdateData.TelNum,
Code: req.VerCode,
Project: "",
}); err != nil {
fmt.Println("错误1-needUpdateMobile-AccountImpl.UpdateTelNum:", err.Error())
return
}
//更新画家服务中的手机号
if _, err = service.GrpcArtistImpl.UpdateProfile(context.Background(), &artist.ProfileRequest{Uid: preUpdateData.MgmtArtistUid, Phone: preUpdateData.TelNum}); err != nil {
fmt.Println("错误2-needUpdateMobile-rpcArtistImpl.UpdateProfile:", err.Error())
return
}
}
return nil, nil
}

View File

@ -8562,3 +8562,309 @@
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:51.304+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=27396&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677107658&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:51.304+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:51.304+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.294+0800","caller":"config/root_config.go:150","message":"[Config Center] Config center doesn't start"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.295+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=15920&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677116278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.295+0800","caller":"zookeeper/registry.go:72","message":"[Zookeeper Registry] New zookeeper registry with url map[host:127.0.0.1 port:2181 protocol:zookeeper registry:zookeeper registry.group: registry.label:true registry.namespace: registry.preferred:false registry.role:3 registry.timeout:120s registry.ttl:10s registry.weight:0 registry.zone: remote-client-name:dubbo.registries-zookeeper-127.0.0.1:2181 simplified:false]"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.295+0800","caller":"zookeeper/client.go:55","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 10s"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.305+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.311+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.312+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=15920&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677116278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.319+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.326+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.326+0800","caller":"dubbo/dubbo_protocol.go:83","message":"[DUBBO Protocol] Export service: dubbo://:61270/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=15920&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677116278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T09:37:58.326+0800","caller":"configurable/exporter.go:77","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:61270/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=15920&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677116278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup=] "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:12.098+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:12.098+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.102+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.102+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:12.102+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:12.102+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.102+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.102+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.105+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:12.105+0800","caller":"config/graceful_shutdown.go:162","message":"Graceful shutdown --- Keep waiting and accept new requests for a short time. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.105+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.105+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:12.105+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:12.105+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.105+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.105+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D15920%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677116278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T15:55:12.107+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.114+0800","caller":"config/graceful_shutdown.go:193","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.114+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.114+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.114+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.115+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=15920&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677116278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.115+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.115+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=15920&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677116278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.115+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:15.115+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.127+0800","caller":"config/root_config.go:150","message":"[Config Center] Config center doesn't start"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.129+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14532&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677138939&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.129+0800","caller":"zookeeper/registry.go:72","message":"[Zookeeper Registry] New zookeeper registry with url map[host:127.0.0.1 port:2181 protocol:zookeeper registry:zookeeper registry.group: registry.label:true registry.namespace: registry.preferred:false registry.role:3 registry.timeout:120s registry.ttl:10s registry.weight:0 registry.zone: remote-client-name:dubbo.registries-zookeeper-127.0.0.1:2181 simplified:false]"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.129+0800","caller":"zookeeper/client.go:55","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 10s"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.141+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.147+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.148+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14532&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677138939&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.154+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.161+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.161+0800","caller":"dubbo/dubbo_protocol.go:83","message":"[DUBBO Protocol] Export service: dubbo://:55480/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14532&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677138939&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T15:55:39.162+0800","caller":"configurable/exporter.go:77","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:55480/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14532&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677138939&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup=] "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:22.608+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:22.608+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.615+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.615+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:22.615+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:22.615+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.615+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.615+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.617+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:22.617+0800","caller":"config/graceful_shutdown.go:162","message":"Graceful shutdown --- Keep waiting and accept new requests for a short time. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.617+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.617+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:22.617+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:22.617+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.617+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.617+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F172.27.80.1%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14532%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677138939}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T17:15:22.618+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.619+0800","caller":"config/graceful_shutdown.go:193","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.619+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.619+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.619+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.620+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14532&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677138939&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.620+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.620+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14532&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677138939&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.621+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T17:15:25.621+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.541+0800","caller":"config/root_config.go:150","message":"[Config Center] Config center doesn't start"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.542+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=4596&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677155054&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.543+0800","caller":"zookeeper/registry.go:72","message":"[Zookeeper Registry] New zookeeper registry with url map[host:127.0.0.1 port:2181 protocol:zookeeper registry:zookeeper registry.group: registry.label:true registry.namespace: registry.preferred:false registry.role:3 registry.timeout:120s registry.ttl:10s registry.weight:0 registry.zone: remote-client-name:dubbo.registries-zookeeper-127.0.0.1:2181 simplified:false]"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.543+0800","caller":"zookeeper/client.go:55","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 10s"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.557+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.568+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.569+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=4596&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677155054&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.583+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.593+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.593+0800","caller":"dubbo/dubbo_protocol.go:83","message":"[DUBBO Protocol] Export service: dubbo://:63005/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=4596&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677155054&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:24:14.594+0800","caller":"configurable/exporter.go:77","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:63005/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=4596&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677155054&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup=] "}
{"level":"\u001b[31mERROR\u001b[0m","time":"2023-02-23T20:44:03.090+0800","caller":"zookeeper/listener.go:212","message":"path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers} child nodes changed, zk.Children() = error{zk.Children(path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers): zk: connection closed}"}
{"level":"\u001b[31mERROR\u001b[0m","time":"2023-02-23T20:44:03.090+0800","caller":"zookeeper/listener.go:212","message":"path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers} child nodes changed, zk.Children() = error{zk.Children(path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers): zk: connection closed}"}
{"level":"\u001b[31mERROR\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:212","message":"path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers} child nodes changed, zk.Children() = error{zk.Children(path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers): zk: could not connect to a server}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNotWatching, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054, state:-112-zookeeper connection expired, err:zk: session has been expired by the server}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:178","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNotWatching event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNotWatching, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054, state:-112-zookeeper connection expired, err:zk: session has been expired by the server}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNotWatching, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054, state:-112-zookeeper connection expired, err:zk: session has been expired by the server}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNotWatching, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054, state:-112-zookeeper connection expired, err:zk: session has been expired by the server}"}
{"level":"\u001b[31mERROR\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:212","message":"path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers} child nodes changed, zk.Children() = error{zk.Children(path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers): zk: could not connect to a server}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:178","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNotWatching event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:178","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNotWatching event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:30.658+0800","caller":"zookeeper/listener.go:178","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNotWatching event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D4596%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677155054}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:30.688+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:30.688+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.356+0800","caller":"config/root_config.go:150","message":"[Config Center] Config center doesn't start"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.357+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=18684&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.358+0800","caller":"zookeeper/registry.go:72","message":"[Zookeeper Registry] New zookeeper registry with url map[host:127.0.0.1 port:2181 protocol:zookeeper registry:zookeeper registry.group: registry.label:true registry.namespace: registry.preferred:false registry.role:3 registry.timeout:120s registry.ttl:10s registry.weight:0 registry.zone: remote-client-name:dubbo.registries-zookeeper-127.0.0.1:2181 simplified:false]"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.358+0800","caller":"zookeeper/client.go:55","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 10s"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.367+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.374+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.375+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=18684&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.381+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.389+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.389+0800","caller":"dubbo/dubbo_protocol.go:83","message":"[DUBBO Protocol] Export service: dubbo://:64382/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=18684&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:38.390+0800","caller":"configurable/exporter.go:77","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:64382/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=18684&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup=] "}
{"level":"\u001b[31mERROR\u001b[0m","time":"2023-02-23T20:44:50.170+0800","caller":"zookeeper/listener.go:212","message":"path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers} child nodes changed, zk.Children() = error{zk.Children(path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers): zk: connection closed}"}
{"level":"\u001b[31mERROR\u001b[0m","time":"2023-02-23T20:44:50.170+0800","caller":"zookeeper/listener.go:212","message":"path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers} child nodes changed, zk.Children() = error{zk.Children(path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers): zk: connection closed}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:51.190+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:51.200+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:51.200+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:51.200+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:51.202+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:51.202+0800","caller":"registry/base_registry.go:194","message":"success to re-register service :tri://:@192.168.88.173:20050/?interface=com.fontree.microservices.common.ArtistInfo&group=&version="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:51.211+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:51.225+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:51.225+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:51.225+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}) goroutine exit now"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:51.227+0800","caller":"registry/base_registry.go:194","message":"success to re-register service :tri://:@192.168.88.173:20050/?interface=grpc.reflection.v1alpha.ServerReflection&group=&version="}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:51.227+0800","caller":"registry/base_registry.go:371","message":"Selector.watch() = error{listener have been closed}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:51.227+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:44:51.227+0800","caller":"registry/base_registry.go:371","message":"Selector.watch() = error{listener have been closed}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:44:51.227+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:41.699+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:41.699+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.710+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"config/graceful_shutdown.go:162","message":"Graceful shutdown --- Keep waiting and accept new requests for a short time. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.713+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D18684%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156278}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.715+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:49:41.715+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"config/graceful_shutdown.go:193","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=18684&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=18684&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156278&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:44.725+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.966+0800","caller":"config/root_config.go:150","message":"[Config Center] Config center doesn't start"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.968+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=8480&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156593&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.969+0800","caller":"zookeeper/registry.go:72","message":"[Zookeeper Registry] New zookeeper registry with url map[host:127.0.0.1 port:2181 protocol:zookeeper registry:zookeeper registry.group: registry.label:true registry.namespace: registry.preferred:false registry.role:3 registry.timeout:120s registry.ttl:10s registry.weight:0 registry.zone: remote-client-name:dubbo.registries-zookeeper-127.0.0.1:2181 simplified:false]"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.969+0800","caller":"zookeeper/client.go:55","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 10s"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.979+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.985+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.986+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=8480&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156593&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.992+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.999+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.999+0800","caller":"dubbo/dubbo_protocol.go:83","message":"[DUBBO Protocol] Export service: dubbo://:64747/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=8480&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156593&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:49:53.999+0800","caller":"configurable/exporter.go:77","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:64747/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=8480&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156593&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup=] "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:37.128+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:37.128+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.140+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.140+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:37.140+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.140+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:37.140+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.140+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.143+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.143+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:37.143+0800","caller":"config/graceful_shutdown.go:162","message":"Graceful shutdown --- Keep waiting and accept new requests for a short time. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:37.143+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.143+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:37.143+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.143+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.143+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D8480%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156593}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:53:37.146+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.153+0800","caller":"config/graceful_shutdown.go:193","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.153+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.153+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.153+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.153+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=8480&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156593&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.153+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.153+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=8480&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156593&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.154+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:40.154+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.179+0800","caller":"config/root_config.go:150","message":"[Config Center] Config center doesn't start"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.180+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14196&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156829&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.181+0800","caller":"zookeeper/registry.go:72","message":"[Zookeeper Registry] New zookeeper registry with url map[host:127.0.0.1 port:2181 protocol:zookeeper registry:zookeeper registry.group: registry.label:true registry.namespace: registry.preferred:false registry.role:3 registry.timeout:120s registry.ttl:10s registry.weight:0 registry.zone: remote-client-name:dubbo.registries-zookeeper-127.0.0.1:2181 simplified:false]"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.181+0800","caller":"zookeeper/client.go:55","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 10s"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.193+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.201+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.201+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14196&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156829&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.208+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.214+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.215+0800","caller":"dubbo/dubbo_protocol.go:83","message":"[DUBBO Protocol] Export service: dubbo://:65009/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14196&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156829&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:53:49.215+0800","caller":"configurable/exporter.go:77","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:65009/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14196&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156829&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup=] "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:11.637+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:11.638+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.648+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.648+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:11.648+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:11.648+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.648+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.649+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.651+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:11.651+0800","caller":"config/graceful_shutdown.go:162","message":"Graceful shutdown --- Keep waiting and accept new requests for a short time. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.651+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.651+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:11.651+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:11.651+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.651+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.651+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D14196%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156829}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T20:56:11.654+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"config/graceful_shutdown.go:193","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14196&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156829&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=14196&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156829&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:14.667+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.936+0800","caller":"config/root_config.go:150","message":"[Config Center] Config center doesn't start"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.938+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=12268&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156983&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.938+0800","caller":"zookeeper/registry.go:72","message":"[Zookeeper Registry] New zookeeper registry with url map[host:127.0.0.1 port:2181 protocol:zookeeper registry:zookeeper registry.group: registry.label:true registry.namespace: registry.preferred:false registry.role:3 registry.timeout:120s registry.ttl:10s registry.weight:0 registry.zone: remote-client-name:dubbo.registries-zookeeper-127.0.0.1:2181 simplified:false]"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.938+0800","caller":"zookeeper/client.go:55","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 10s"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.948+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.955+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.955+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=12268&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156983&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.962+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.969+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.969+0800","caller":"dubbo/dubbo_protocol.go:83","message":"[DUBBO Protocol] Export service: dubbo://:65184/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=12268&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156983&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T20:56:23.969+0800","caller":"configurable/exporter.go:77","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:65184/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=12268&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156983&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup=] "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:51.940+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:51.940+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.951+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:51.951+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.951+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.951+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:51.951+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.951+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.953+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.953+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.953+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:51.954+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:51.953+0800","caller":"config/graceful_shutdown.go:162","message":"Graceful shutdown --- Keep waiting and accept new requests for a short time. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.954+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:51.953+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.954+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D12268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677156983}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:03:51.955+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.961+0800","caller":"config/graceful_shutdown.go:193","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.961+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.961+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.961+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.961+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=12268&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156983&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.961+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.962+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=12268&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677156983&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.962+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:03:54.962+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.085+0800","caller":"config/root_config.go:150","message":"[Config Center] Config center doesn't start"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.086+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=11680&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677157445&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.086+0800","caller":"zookeeper/registry.go:72","message":"[Zookeeper Registry] New zookeeper registry with url map[host:127.0.0.1 port:2181 protocol:zookeeper registry:zookeeper registry.group: registry.label:true registry.namespace: registry.preferred:false registry.role:3 registry.timeout:120s registry.ttl:10s registry.weight:0 registry.zone: remote-client-name:dubbo.registries-zookeeper-127.0.0.1:2181 simplified:false]"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.086+0800","caller":"zookeeper/client.go:55","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 10s"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.096+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.ArtistInfo/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.102+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.103+0800","caller":"dubbo3/dubbo3_protocol.go:81","message":"[Triple Protocol] Export service: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=11680&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677157445&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.109+0800","caller":"zookeeper/registry.go:223","message":"[Zookeeper Registry] Registry instance with root = /dubbo/grpc.reflection.v1alpha.ServerReflection/providers, node = tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.116+0800","caller":"zookeeper/listener.go:406","message":"[Zookeeper Listener] listen dubbo path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.117+0800","caller":"dubbo/dubbo_protocol.go:83","message":"[DUBBO Protocol] Export service: dubbo://:49295/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=11680&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677157445&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:04:05.117+0800","caller":"configurable/exporter.go:77","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:49295/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&group=dubbo.io&interface=org.apache.dubbo.metadata.MetadataService&loadbalance=&message_size=0&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=11680&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677157445&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&version=1.0.0&warmup=] "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:36.489+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:36.489+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.494+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.494+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:36.494+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:36.494+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.494+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.494+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.ArtistInfo/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fcom.fontree.microservices.common.ArtistInfo%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DArtistInfoProvider%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.ArtistInfo%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DArtistSupplyList%2CBindArtistId%2CBindInviteInvitedAccount%2CCheckInvitedCode%2CCheckUserLock%2CCreateUser%2CCreateUserInfo%2CFindUser%2CFindUsers%2CFinishVerify%2CGetPreSaveArtistInfo%2CGetUser%2CGetUserById%2CGetUserMsg%2CPreSaveArtistInfo%2CRegisterUser%2CUnFinishList%2CUpdateIdCard%2CUpdateMsg%2CUpdateUserData%2CUserLock%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.497+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/com.fontree.microservices.common.ArtistInfo/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.497+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.497+0800","caller":"zookeeper/listener.go:154","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445, state:3-zookeeper connected, err:%!s(<nil>)}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:36.497+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445}"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:36.497+0800","caller":"config/graceful_shutdown.go:162","message":"Graceful shutdown --- Keep waiting and accept new requests for a short time. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:36.497+0800","caller":"zookeeper/listener.go:180","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.497+0800","caller":"zookeeper/listener.go:239","message":"delete zkNode{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445}"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.497+0800","caller":"zookeeper/listener.go:351","message":"listenDirEvent->listenSelf(zk path{/dubbo/grpc.reflection.v1alpha.ServerReflection/providers/tri%3A%2F%2F192.168.88.173%3A20050%2Fgrpc.reflection.v1alpha.ServerReflection%3Fanyhost%3Dtrue%26app.version%3D3.0.0%26application%3Ddubbo.io%26bean.name%3DXXX_serverReflectionServer%26cluster%3Dfailover%26environment%3Ddev%26export%3Dtrue%26interface%3Dgrpc.reflection.v1alpha.ServerReflection%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DServerReflectionInfo%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D11680%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.0%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1677157445}) goroutine exit now"}
{"level":"\u001b[33mWARN\u001b[0m","time":"2023-02-23T21:45:36.499+0800","caller":"zookeeper/listener.go:80","message":"[RegistryDataListener][DataChange]Listen error zk node path {/dubbo/grpc.reflection.v1alpha.ServerReflection/providers}, this listener is used to listen services which under the directory of providers/"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"config/graceful_shutdown.go:193","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/com.fontree.microservices.common.ArtistInfo?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=ArtistInfoProvider&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.ArtistInfo&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=11680&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677157445&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"protocol/protocol.go:144","message":"Exporter unexport."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"protocol/invoker.go:98","message":"Destroy invoker: tri://:20050/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=3.0.0&application=dubbo.io&auth=&bean.name=XXX_serverReflectionServer&cluster=failover&config.tracing=&environment=dev&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.reflection.v1alpha.ServerReflection&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&param.sign=&pid=11680&registry=zookeeper&registry.role=3&release=dubbo-golang-3.0.0&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider&timestamp=1677157445&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
{"level":"\u001b[34mINFO\u001b[0m","time":"2023-02-23T21:45:39.502+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}

View File

@ -3,7 +3,6 @@ package model
// ExhVideo 视频资料
type ExhVideo struct {
Model
ID uint `gorm:"not null "`
UserId uint `gorm:"not null default:0"`
Url string `gorm:"type:varchar(256) default ''"`
State string `gorm:"type:varchar(25) default ''"`

View File

@ -31,6 +31,19 @@ dubbo:
#SupplyProvider:
# interface: com.fontree.microservices.common.Supply
# retries: 0
consumer:
request-timeout: 120s
references:
AccountClientImpl:
protocol: tri
interface: com.fontree.microservices.common.Account
filter: cshutdown,sign,fonDomainFilter,fonValidateFilter
params:
.accessKeyId: "Accountksl"
.secretAccessKey: "BSDY-FDF1-Fontree_account"
ArtistClientImpl:
protocol: tri
interface: com.fontree.microservices.common.Artist
logger:
zap-config:
level: info # 日志级别

View File

@ -1,7 +1,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.28.0
// protoc v3.21.1
// protoc-gen-go v1.28.1
// protoc v4.22.0--rc2
// source: pb/artist/artist.proto
package artist
@ -1117,7 +1117,7 @@ func (x *DetailRequest) GetUid() string {
return ""
}
//DetailRequest
// DetailRequest
// DetailResponse
type DetailResponse struct {
state protoimpl.MessageState
@ -3689,6 +3689,201 @@ func (x *GetCardIdWithImgResp) GetMsg() string {
return ""
}
type IdcardConvertArtistIdRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Idcard string `protobuf:"bytes,1,opt,name=idcard,proto3" json:"idcard,omitempty"`
}
func (x *IdcardConvertArtistIdRequest) Reset() {
*x = IdcardConvertArtistIdRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[52]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *IdcardConvertArtistIdRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*IdcardConvertArtistIdRequest) ProtoMessage() {}
func (x *IdcardConvertArtistIdRequest) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[52]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use IdcardConvertArtistIdRequest.ProtoReflect.Descriptor instead.
func (*IdcardConvertArtistIdRequest) Descriptor() ([]byte, []int) {
return file_pb_artist_artist_proto_rawDescGZIP(), []int{52}
}
func (x *IdcardConvertArtistIdRequest) GetIdcard() string {
if x != nil {
return x.Idcard
}
return ""
}
type IdcardConvertArtistIdResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
}
func (x *IdcardConvertArtistIdResponse) Reset() {
*x = IdcardConvertArtistIdResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[53]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *IdcardConvertArtistIdResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*IdcardConvertArtistIdResponse) ProtoMessage() {}
func (x *IdcardConvertArtistIdResponse) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[53]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use IdcardConvertArtistIdResponse.ProtoReflect.Descriptor instead.
func (*IdcardConvertArtistIdResponse) Descriptor() ([]byte, []int) {
return file_pb_artist_artist_proto_rawDescGZIP(), []int{53}
}
func (x *IdcardConvertArtistIdResponse) GetId() int64 {
if x != nil {
return x.Id
}
return 0
}
func (x *IdcardConvertArtistIdResponse) GetUid() string {
if x != nil {
return x.Uid
}
return ""
}
type CheckCaaCertNumRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
CaaCertNum string `protobuf:"bytes,1,opt,name=caaCertNum,proto3" json:"caaCertNum,omitempty"`
RealName string `protobuf:"bytes,2,opt,name=realName,proto3" json:"realName,omitempty"`
}
func (x *CheckCaaCertNumRequest) Reset() {
*x = CheckCaaCertNumRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[54]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CheckCaaCertNumRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CheckCaaCertNumRequest) ProtoMessage() {}
func (x *CheckCaaCertNumRequest) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[54]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CheckCaaCertNumRequest.ProtoReflect.Descriptor instead.
func (*CheckCaaCertNumRequest) Descriptor() ([]byte, []int) {
return file_pb_artist_artist_proto_rawDescGZIP(), []int{54}
}
func (x *CheckCaaCertNumRequest) GetCaaCertNum() string {
if x != nil {
return x.CaaCertNum
}
return ""
}
func (x *CheckCaaCertNumRequest) GetRealName() string {
if x != nil {
return x.RealName
}
return ""
}
type CheckCaaCertNumResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *CheckCaaCertNumResponse) Reset() {
*x = CheckCaaCertNumResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[55]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CheckCaaCertNumResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CheckCaaCertNumResponse) ProtoMessage() {}
func (x *CheckCaaCertNumResponse) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[55]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CheckCaaCertNumResponse.ProtoReflect.Descriptor instead.
func (*CheckCaaCertNumResponse) Descriptor() ([]byte, []int) {
return file_pb_artist_artist_proto_rawDescGZIP(), []int{55}
}
type ProfileResponse_Data struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@ -3700,7 +3895,7 @@ type ProfileResponse_Data struct {
func (x *ProfileResponse_Data) Reset() {
*x = ProfileResponse_Data{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[52]
mi := &file_pb_artist_artist_proto_msgTypes[56]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -3713,7 +3908,7 @@ func (x *ProfileResponse_Data) String() string {
func (*ProfileResponse_Data) ProtoMessage() {}
func (x *ProfileResponse_Data) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[52]
mi := &file_pb_artist_artist_proto_msgTypes[56]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -3748,7 +3943,7 @@ type MediaRequest_VideosMap struct {
func (x *MediaRequest_VideosMap) Reset() {
*x = MediaRequest_VideosMap{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[53]
mi := &file_pb_artist_artist_proto_msgTypes[57]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -3761,7 +3956,7 @@ func (x *MediaRequest_VideosMap) String() string {
func (*MediaRequest_VideosMap) ProtoMessage() {}
func (x *MediaRequest_VideosMap) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[53]
mi := &file_pb_artist_artist_proto_msgTypes[57]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -3802,7 +3997,7 @@ type IndexResponse_Data struct {
func (x *IndexResponse_Data) Reset() {
*x = IndexResponse_Data{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[54]
mi := &file_pb_artist_artist_proto_msgTypes[58]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -3815,7 +4010,7 @@ func (x *IndexResponse_Data) String() string {
func (*IndexResponse_Data) ProtoMessage() {}
func (x *IndexResponse_Data) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[54]
mi := &file_pb_artist_artist_proto_msgTypes[58]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -3849,7 +4044,7 @@ type MediaResponse_Data struct {
func (x *MediaResponse_Data) Reset() {
*x = MediaResponse_Data{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[55]
mi := &file_pb_artist_artist_proto_msgTypes[59]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -3862,7 +4057,7 @@ func (x *MediaResponse_Data) String() string {
func (*MediaResponse_Data) ProtoMessage() {}
func (x *MediaResponse_Data) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[55]
mi := &file_pb_artist_artist_proto_msgTypes[59]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -3896,7 +4091,7 @@ type HonorResponse_HonorResData struct {
func (x *HonorResponse_HonorResData) Reset() {
*x = HonorResponse_HonorResData{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[56]
mi := &file_pb_artist_artist_proto_msgTypes[60]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -3909,7 +4104,7 @@ func (x *HonorResponse_HonorResData) String() string {
func (*HonorResponse_HonorResData) ProtoMessage() {}
func (x *HonorResponse_HonorResData) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[56]
mi := &file_pb_artist_artist_proto_msgTypes[60]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -3944,7 +4139,7 @@ type ArtIdNameResponse_IdKbName struct {
func (x *ArtIdNameResponse_IdKbName) Reset() {
*x = ArtIdNameResponse_IdKbName{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[57]
mi := &file_pb_artist_artist_proto_msgTypes[61]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -3957,7 +4152,7 @@ func (x *ArtIdNameResponse_IdKbName) String() string {
func (*ArtIdNameResponse_IdKbName) ProtoMessage() {}
func (x *ArtIdNameResponse_IdKbName) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[57]
mi := &file_pb_artist_artist_proto_msgTypes[61]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -4008,7 +4203,7 @@ type ArtistInfoResponse_ArtistChainField struct {
func (x *ArtistInfoResponse_ArtistChainField) Reset() {
*x = ArtistInfoResponse_ArtistChainField{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[58]
mi := &file_pb_artist_artist_proto_msgTypes[62]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -4021,7 +4216,7 @@ func (x *ArtistInfoResponse_ArtistChainField) String() string {
func (*ArtistInfoResponse_ArtistChainField) ProtoMessage() {}
func (x *ArtistInfoResponse_ArtistChainField) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[58]
mi := &file_pb_artist_artist_proto_msgTypes[62]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -4126,7 +4321,7 @@ type ArtistDataResponseInfo struct {
func (x *ArtistDataResponseInfo) Reset() {
*x = ArtistDataResponseInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[59]
mi := &file_pb_artist_artist_proto_msgTypes[63]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -4139,7 +4334,7 @@ func (x *ArtistDataResponseInfo) String() string {
func (*ArtistDataResponseInfo) ProtoMessage() {}
func (x *ArtistDataResponseInfo) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[59]
mi := &file_pb_artist_artist_proto_msgTypes[63]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -4224,7 +4419,7 @@ type ExportArtistResponse_Info struct {
func (x *ExportArtistResponse_Info) Reset() {
*x = ExportArtistResponse_Info{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[60]
mi := &file_pb_artist_artist_proto_msgTypes[64]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -4237,7 +4432,7 @@ func (x *ExportArtistResponse_Info) String() string {
func (*ExportArtistResponse_Info) ProtoMessage() {}
func (x *ExportArtistResponse_Info) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[60]
mi := &file_pb_artist_artist_proto_msgTypes[64]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -4573,7 +4768,7 @@ type ExportFieldListResponse_Info struct {
func (x *ExportFieldListResponse_Info) Reset() {
*x = ExportFieldListResponse_Info{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[61]
mi := &file_pb_artist_artist_proto_msgTypes[65]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -4586,7 +4781,7 @@ func (x *ExportFieldListResponse_Info) String() string {
func (*ExportFieldListResponse_Info) ProtoMessage() {}
func (x *ExportFieldListResponse_Info) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[61]
mi := &file_pb_artist_artist_proto_msgTypes[65]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -4630,7 +4825,7 @@ type GetInfoByUuidsResponse_Info struct {
func (x *GetInfoByUuidsResponse_Info) Reset() {
*x = GetInfoByUuidsResponse_Info{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_artist_artist_proto_msgTypes[62]
mi := &file_pb_artist_artist_proto_msgTypes[66]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@ -4643,7 +4838,7 @@ func (x *GetInfoByUuidsResponse_Info) String() string {
func (*GetInfoByUuidsResponse_Info) ProtoMessage() {}
func (x *GetInfoByUuidsResponse_Info) ProtoReflect() protoreflect.Message {
mi := &file_pb_artist_artist_proto_msgTypes[62]
mi := &file_pb_artist_artist_proto_msgTypes[66]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@ -5350,135 +5545,162 @@ var file_pb_artist_artist_proto_rawDesc = []byte{
0x68, 0x64, 0x61, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x42, 0x69, 0x72, 0x74,
0x68, 0x64, 0x61, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x53, 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28,
0x09, 0x52, 0x03, 0x53, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x4d, 0x73, 0x67, 0x18, 0x07, 0x20,
0x01, 0x28, 0x09, 0x52, 0x03, 0x4d, 0x73, 0x67, 0x32, 0xef, 0x0f, 0x0a, 0x06, 0x41, 0x72, 0x74,
0x69, 0x73, 0x74, 0x12, 0x45, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x4c, 0x69, 0x73,
0x74, 0x12, 0x19, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73,
0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x0d, 0x43, 0x72,
0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x61, 0x72,
0x01, 0x28, 0x09, 0x52, 0x03, 0x4d, 0x73, 0x67, 0x22, 0x36, 0x0a, 0x1c, 0x49, 0x64, 0x63, 0x61,
0x72, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49,
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x64, 0x63, 0x61,
0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69, 0x64, 0x63, 0x61, 0x72, 0x64,
0x22, 0x41, 0x0a, 0x1d, 0x49, 0x64, 0x63, 0x61, 0x72, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
0x75, 0x69, 0x64, 0x22, 0x54, 0x0a, 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x43, 0x61, 0x61, 0x43,
0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a,
0x0a, 0x63, 0x61, 0x61, 0x43, 0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0a, 0x63, 0x61, 0x61, 0x43, 0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x19, 0x0a, 0x17, 0x43, 0x68, 0x65,
0x63, 0x6b, 0x43, 0x61, 0x61, 0x43, 0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x32, 0xad, 0x11, 0x0a, 0x06, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x12,
0x45, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x19, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x4c, 0x69, 0x73,
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
0x17, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x0d, 0x55, 0x70,
0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f,
0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x42,
0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12,
0x16, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x64, 0x69,
0x61, 0x12, 0x14, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
0x12, 0x3c, 0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12,
0x14, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49,
0x6e, 0x64, 0x65, 0x78, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3c,
0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x12, 0x14, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x48, 0x6f, 0x6e,
0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x0b,
0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x12, 0x1a, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0c, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74,
0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x15, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e,
0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x36, 0x0a, 0x09, 0x44, 0x65, 0x6c, 0x41, 0x72,
0x74, 0x69, 0x73, 0x74, 0x12, 0x12, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x44, 0x65,
0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
0x3f, 0x0a, 0x08, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x17, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x48, 0x6f,
0x6e, 0x6f, 0x72, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
0x12, 0x5a, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74,
0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x20, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43,
0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x61, 0x74,
0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0c,
0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x49, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e,
0x41, 0x72, 0x74, 0x49, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x19, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73,
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0a, 0x41, 0x72,
0x74, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x19, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74,
0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
0x00, 0x12, 0x4e, 0x0a, 0x0d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
0x64, 0x64, 0x12, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x1a, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
0x00, 0x12, 0x57, 0x0a, 0x10, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55,
0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49,
0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e,
0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0d, 0x49, 0x6e,
0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x6c, 0x12, 0x1c, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44,
0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x6c,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0e, 0x49, 0x6e,
0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1d, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a,
0x0e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12,
0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e,
0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3c,
0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x12, 0x14, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x4d, 0x65, 0x64,
0x69, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0b,
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x14, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x1a, 0x15, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x64, 0x65, 0x78,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0b, 0x55, 0x70,
0x64, 0x61, 0x74, 0x65, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x12, 0x14, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x2e, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
0x15, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x52, 0x65,
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x0b, 0x55, 0x70, 0x6c, 0x6f,
0x61, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x12, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x6c,
0x6f, 0x61, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0c, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x44, 0x65, 0x74, 0x61,
0x69, 0x6c, 0x12, 0x15, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x74, 0x61,
0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x65, 0x22, 0x00, 0x12, 0x36, 0x0a, 0x09, 0x44, 0x65, 0x6c, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74,
0x12, 0x12, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x44, 0x65,
0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x08, 0x48,
0x6f, 0x6e, 0x6f, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x17, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x1a, 0x18, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x44,
0x65, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x11,
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63,
0x68, 0x12, 0x20, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x72, 0x65,
0x61, 0x74, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65,
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0c, 0x41, 0x72, 0x74, 0x69,
0x73, 0x74, 0x49, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x41, 0x72, 0x74, 0x49, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x49,
0x64, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
0x45, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x19, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66,
0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74,
0x44, 0x61, 0x74, 0x61, 0x12, 0x19, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72,
0x74, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x44,
0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a,
0x0d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x64, 0x12, 0x1c,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
0x12, 0x48, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x64, 0x64, 0x12,
0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63,
0x74, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x64, 0x64,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0e, 0x43, 0x6f,
0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x64,
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0c, 0x43, 0x6f,
0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x72, 0x74,
0x69, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x11, 0x41, 0x72, 0x74, 0x69, 0x73,
0x74, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x20, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x43, 0x68, 0x61, 0x69,
0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x43, 0x68,
0x61, 0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0c, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x72, 0x74,
0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x45, 0x78, 0x70,
0x6f, 0x72, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74,
0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
0x12, 0x54, 0x0a, 0x0f, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4c,
0x69, 0x73, 0x74, 0x12, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x45, 0x78, 0x70,
0x6f, 0x72, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x45, 0x78, 0x70,
0x6f, 0x72, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66,
0x6f, 0x42, 0x79, 0x55, 0x75, 0x69, 0x64, 0x73, 0x12, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x55, 0x75, 0x69, 0x64, 0x73,
0x6f, 0x6e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a,
0x10, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74,
0x65, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x6c, 0x12, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x6c, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49,
0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x55, 0x75, 0x69, 0x64, 0x73, 0x52,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x10, 0x47, 0x65, 0x74,
0x43, 0x61, 0x72, 0x64, 0x49, 0x64, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6d, 0x67, 0x12, 0x1b, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x64,
0x57, 0x69, 0x74, 0x68, 0x49, 0x6d, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74,
0x69, 0x73, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x64, 0x57, 0x69, 0x74,
0x68, 0x49, 0x6d, 0x67, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x42, 0x0b, 0x5a, 0x09, 0x2e, 0x2f,
0x3b, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0e, 0x49, 0x6e, 0x76,
0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x72, 0x74,
0x69, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x0b,
0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x64, 0x64, 0x12, 0x1a, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x64, 0x64,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61,
0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x6f,
0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61,
0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e,
0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6e,
0x74, 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x11, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x43, 0x68, 0x61,
0x69, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x55, 0x70, 0x64,
0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x72, 0x74,
0x69, 0x73, 0x74, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x55,
0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
0x4b, 0x0a, 0x0c, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x12,
0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x41,
0x72, 0x74, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x72, 0x74, 0x69,
0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0f,
0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12,
0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x22, 0x00, 0x12, 0x51, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x55,
0x75, 0x69, 0x64, 0x73, 0x12, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x47, 0x65,
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x55, 0x75, 0x69, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x47, 0x65, 0x74,
0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x55, 0x75, 0x69, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x43, 0x61, 0x72, 0x64,
0x49, 0x64, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6d, 0x67, 0x12, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x64, 0x57, 0x69, 0x74, 0x68,
0x49, 0x6d, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e,
0x47, 0x65, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x64, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6d, 0x67,
0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x15, 0x49, 0x64, 0x63, 0x61, 0x72, 0x64,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x12,
0x24, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49, 0x64, 0x63, 0x61, 0x72, 0x64, 0x43,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x49,
0x64, 0x63, 0x61, 0x72, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x41, 0x72, 0x74, 0x69,
0x73, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54,
0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x43, 0x61, 0x61, 0x43, 0x65, 0x72, 0x74, 0x4e, 0x75,
0x6d, 0x12, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
0x43, 0x61, 0x61, 0x43, 0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
0x43, 0x61, 0x61, 0x43, 0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x65, 0x22, 0x00, 0x42, 0x0b, 0x5a, 0x09, 0x2e, 0x2f, 0x3b, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
@ -5493,7 +5715,7 @@ func file_pb_artist_artist_proto_rawDescGZIP() []byte {
return file_pb_artist_artist_proto_rawDescData
}
var file_pb_artist_artist_proto_msgTypes = make([]protoimpl.MessageInfo, 63)
var file_pb_artist_artist_proto_msgTypes = make([]protoimpl.MessageInfo, 67)
var file_pb_artist_artist_proto_goTypes = []interface{}{
(*ArtistListRequest)(nil), // 0: artist.ArtistListRequest
(*ArtistListResponse)(nil), // 1: artist.ArtistListResponse
@ -5547,41 +5769,45 @@ var file_pb_artist_artist_proto_goTypes = []interface{}{
(*GetInfoByUuidsResponse)(nil), // 49: artist.GetInfoByUuidsResponse
(*GetCardIdWithImgReq)(nil), // 50: artist.GetCardIdWithImgReq
(*GetCardIdWithImgResp)(nil), // 51: artist.GetCardIdWithImgResp
(*ProfileResponse_Data)(nil), // 52: artist.ProfileResponse.Data
(*MediaRequest_VideosMap)(nil), // 53: artist.MediaRequest.VideosMap
(*IndexResponse_Data)(nil), // 54: artist.IndexResponse.Data
(*MediaResponse_Data)(nil), // 55: artist.MediaResponse.Data
(*HonorResponse_HonorResData)(nil), // 56: artist.HonorResponse.HonorResData
(*ArtIdNameResponse_IdKbName)(nil), // 57: artist.ArtIdNameResponse.IdKbName
(*ArtistInfoResponse_ArtistChainField)(nil), // 58: artist.ArtistInfoResponse.ArtistChainField
(*ArtistDataResponseInfo)(nil), // 59: artist.ArtistDataResponse.info
(*ExportArtistResponse_Info)(nil), // 60: artist.ExportArtistResponse.Info
(*ExportFieldListResponse_Info)(nil), // 61: artist.ExportFieldListResponse.Info
(*GetInfoByUuidsResponse_Info)(nil), // 62: artist.GetInfoByUuidsResponse.Info
(*IdcardConvertArtistIdRequest)(nil), // 52: artist.IdcardConvertArtistIdRequest
(*IdcardConvertArtistIdResponse)(nil), // 53: artist.IdcardConvertArtistIdResponse
(*CheckCaaCertNumRequest)(nil), // 54: artist.CheckCaaCertNumRequest
(*CheckCaaCertNumResponse)(nil), // 55: artist.CheckCaaCertNumResponse
(*ProfileResponse_Data)(nil), // 56: artist.ProfileResponse.Data
(*MediaRequest_VideosMap)(nil), // 57: artist.MediaRequest.VideosMap
(*IndexResponse_Data)(nil), // 58: artist.IndexResponse.Data
(*MediaResponse_Data)(nil), // 59: artist.MediaResponse.Data
(*HonorResponse_HonorResData)(nil), // 60: artist.HonorResponse.HonorResData
(*ArtIdNameResponse_IdKbName)(nil), // 61: artist.ArtIdNameResponse.IdKbName
(*ArtistInfoResponse_ArtistChainField)(nil), // 62: artist.ArtistInfoResponse.ArtistChainField
(*ArtistDataResponseInfo)(nil), // 63: artist.ArtistDataResponse.info
(*ExportArtistResponse_Info)(nil), // 64: artist.ExportArtistResponse.Info
(*ExportFieldListResponse_Info)(nil), // 65: artist.ExportFieldListResponse.Info
(*GetInfoByUuidsResponse_Info)(nil), // 66: artist.GetInfoByUuidsResponse.Info
}
var file_pb_artist_artist_proto_depIdxs = []int32{
2, // 0: artist.ArtistListResponse.Data:type_name -> artist.ProfileRequest
52, // 1: artist.ProfileResponse.DataInfo:type_name -> artist.ProfileResponse.Data
53, // 2: artist.MediaRequest.InterviewVideos:type_name -> artist.MediaRequest.VideosMap
53, // 3: artist.MediaRequest.ThirdPartyVideos:type_name -> artist.MediaRequest.VideosMap
54, // 4: artist.IndexResponse.DataInfo:type_name -> artist.IndexResponse.Data
55, // 5: artist.MediaResponse.DataInfo:type_name -> artist.MediaResponse.Data
56, // 6: artist.HonorResponse.DataInfo:type_name -> artist.HonorResponse.HonorResData
56, // 1: artist.ProfileResponse.DataInfo:type_name -> artist.ProfileResponse.Data
57, // 2: artist.MediaRequest.InterviewVideos:type_name -> artist.MediaRequest.VideosMap
57, // 3: artist.MediaRequest.ThirdPartyVideos:type_name -> artist.MediaRequest.VideosMap
58, // 4: artist.IndexResponse.DataInfo:type_name -> artist.IndexResponse.Data
59, // 5: artist.MediaResponse.DataInfo:type_name -> artist.MediaResponse.Data
60, // 6: artist.HonorResponse.DataInfo:type_name -> artist.HonorResponse.HonorResData
2, // 7: artist.DetailResponse.ProfileInfo:type_name -> artist.ProfileRequest
4, // 8: artist.DetailResponse.MediaInfo:type_name -> artist.MediaRequest
8, // 9: artist.DetailResponse.HonorInfo:type_name -> artist.HonorRequest
18, // 10: artist.CreateArtistBatchRequest.ArtistInfoBatch:type_name -> artist.ArtistInfo
57, // 11: artist.ArtIdNameResponse.Items:type_name -> artist.ArtIdNameResponse.IdKbName
61, // 11: artist.ArtIdNameResponse.Items:type_name -> artist.ArtIdNameResponse.IdKbName
2, // 12: artist.ArtistInfoResponse.ProfileInfo:type_name -> artist.ProfileRequest
4, // 13: artist.ArtistInfoResponse.MediaRequest:type_name -> artist.MediaRequest
58, // 14: artist.ArtistInfoResponse.ArtistChainInfo:type_name -> artist.ArtistInfoResponse.ArtistChainField
59, // 15: artist.ArtistDataResponse.Data:type_name -> artist.ArtistDataResponse.info
62, // 14: artist.ArtistInfoResponse.ArtistChainInfo:type_name -> artist.ArtistInfoResponse.ArtistChainField
63, // 15: artist.ArtistDataResponse.Data:type_name -> artist.ArtistDataResponse.info
29, // 16: artist.InvitationListResponse.Data:type_name -> artist.InvitationUpdateRequest
29, // 17: artist.InvitationInfoResponse.Info:type_name -> artist.InvitationUpdateRequest
37, // 18: artist.ContractListResponse.Data:type_name -> artist.ContractAddRequest
60, // 19: artist.ExportArtistResponse.Data:type_name -> artist.ExportArtistResponse.Info
61, // 20: artist.ExportFieldListResponse.Data:type_name -> artist.ExportFieldListResponse.Info
62, // 21: artist.GetInfoByUuidsResponse.Data:type_name -> artist.GetInfoByUuidsResponse.Info
64, // 19: artist.ExportArtistResponse.Data:type_name -> artist.ExportArtistResponse.Info
65, // 20: artist.ExportFieldListResponse.Data:type_name -> artist.ExportFieldListResponse.Info
66, // 21: artist.GetInfoByUuidsResponse.Data:type_name -> artist.GetInfoByUuidsResponse.Info
2, // 22: artist.ArtistDataResponse.info.ProfileInfo:type_name -> artist.ProfileRequest
4, // 23: artist.ArtistDataResponse.info.MediaRequest:type_name -> artist.MediaRequest
0, // 24: artist.Artist.ArtistList:input_type -> artist.ArtistListRequest
@ -5611,35 +5837,39 @@ var file_pb_artist_artist_proto_depIdxs = []int32{
46, // 48: artist.Artist.ExportFieldList:input_type -> artist.ExportFieldListRequest
48, // 49: artist.Artist.GetInfoByUuids:input_type -> artist.GetInfoByUuidsRequest
50, // 50: artist.Artist.GetCardIdWithImg:input_type -> artist.GetCardIdWithImgReq
1, // 51: artist.Artist.ArtistList:output_type -> artist.ArtistListResponse
3, // 52: artist.Artist.CreateProfile:output_type -> artist.ProfileResponse
3, // 53: artist.Artist.UpdateProfile:output_type -> artist.ProfileResponse
7, // 54: artist.Artist.UpdateMedia:output_type -> artist.MediaResponse
6, // 55: artist.Artist.UpdateIndex:output_type -> artist.IndexResponse
9, // 56: artist.Artist.UpdateHonor:output_type -> artist.HonorResponse
11, // 57: artist.Artist.UploadMedia:output_type -> artist.UploadMediaResponse
13, // 58: artist.Artist.ArtistDetail:output_type -> artist.DetailResponse
15, // 59: artist.Artist.DelArtist:output_type -> artist.DelResponse
17, // 60: artist.Artist.HonorDel:output_type -> artist.HonorDelResponse
20, // 61: artist.Artist.CreateArtistBatch:output_type -> artist.CreateArtistBatchResponse
22, // 62: artist.Artist.ArtistIdName:output_type -> artist.ArtIdNameResponse
24, // 63: artist.Artist.ArtistInfo:output_type -> artist.ArtistInfoResponse
26, // 64: artist.Artist.ArtistData:output_type -> artist.ArtistDataResponse
28, // 65: artist.Artist.InvitationAdd:output_type -> artist.InvitationAddResponse
30, // 66: artist.Artist.InvitationUpdate:output_type -> artist.InvitationUpdateResponse
32, // 67: artist.Artist.InvitationDel:output_type -> artist.InvitationDelResponse
34, // 68: artist.Artist.InvitationList:output_type -> artist.InvitationListResponse
36, // 69: artist.Artist.InvitationInfo:output_type -> artist.InvitationInfoResponse
38, // 70: artist.Artist.ContractAdd:output_type -> artist.ContractAddResponse
39, // 71: artist.Artist.ContractUpdate:output_type -> artist.ContractUpdateResponse
41, // 72: artist.Artist.ContractList:output_type -> artist.ContractListResponse
43, // 73: artist.Artist.ArtistChainUpdate:output_type -> artist.ArtistChainUpdateResponse
45, // 74: artist.Artist.ExportArtist:output_type -> artist.ExportArtistResponse
47, // 75: artist.Artist.ExportFieldList:output_type -> artist.ExportFieldListResponse
49, // 76: artist.Artist.GetInfoByUuids:output_type -> artist.GetInfoByUuidsResponse
51, // 77: artist.Artist.GetCardIdWithImg:output_type -> artist.GetCardIdWithImgResp
51, // [51:78] is the sub-list for method output_type
24, // [24:51] is the sub-list for method input_type
52, // 51: artist.Artist.IdcardConvertArtistId:input_type -> artist.IdcardConvertArtistIdRequest
54, // 52: artist.Artist.CheckCaaCertNum:input_type -> artist.CheckCaaCertNumRequest
1, // 53: artist.Artist.ArtistList:output_type -> artist.ArtistListResponse
3, // 54: artist.Artist.CreateProfile:output_type -> artist.ProfileResponse
3, // 55: artist.Artist.UpdateProfile:output_type -> artist.ProfileResponse
7, // 56: artist.Artist.UpdateMedia:output_type -> artist.MediaResponse
6, // 57: artist.Artist.UpdateIndex:output_type -> artist.IndexResponse
9, // 58: artist.Artist.UpdateHonor:output_type -> artist.HonorResponse
11, // 59: artist.Artist.UploadMedia:output_type -> artist.UploadMediaResponse
13, // 60: artist.Artist.ArtistDetail:output_type -> artist.DetailResponse
15, // 61: artist.Artist.DelArtist:output_type -> artist.DelResponse
17, // 62: artist.Artist.HonorDel:output_type -> artist.HonorDelResponse
20, // 63: artist.Artist.CreateArtistBatch:output_type -> artist.CreateArtistBatchResponse
22, // 64: artist.Artist.ArtistIdName:output_type -> artist.ArtIdNameResponse
24, // 65: artist.Artist.ArtistInfo:output_type -> artist.ArtistInfoResponse
26, // 66: artist.Artist.ArtistData:output_type -> artist.ArtistDataResponse
28, // 67: artist.Artist.InvitationAdd:output_type -> artist.InvitationAddResponse
30, // 68: artist.Artist.InvitationUpdate:output_type -> artist.InvitationUpdateResponse
32, // 69: artist.Artist.InvitationDel:output_type -> artist.InvitationDelResponse
34, // 70: artist.Artist.InvitationList:output_type -> artist.InvitationListResponse
36, // 71: artist.Artist.InvitationInfo:output_type -> artist.InvitationInfoResponse
38, // 72: artist.Artist.ContractAdd:output_type -> artist.ContractAddResponse
39, // 73: artist.Artist.ContractUpdate:output_type -> artist.ContractUpdateResponse
41, // 74: artist.Artist.ContractList:output_type -> artist.ContractListResponse
43, // 75: artist.Artist.ArtistChainUpdate:output_type -> artist.ArtistChainUpdateResponse
45, // 76: artist.Artist.ExportArtist:output_type -> artist.ExportArtistResponse
47, // 77: artist.Artist.ExportFieldList:output_type -> artist.ExportFieldListResponse
49, // 78: artist.Artist.GetInfoByUuids:output_type -> artist.GetInfoByUuidsResponse
51, // 79: artist.Artist.GetCardIdWithImg:output_type -> artist.GetCardIdWithImgResp
53, // 80: artist.Artist.IdcardConvertArtistId:output_type -> artist.IdcardConvertArtistIdResponse
55, // 81: artist.Artist.CheckCaaCertNum:output_type -> artist.CheckCaaCertNumResponse
53, // [53:82] is the sub-list for method output_type
24, // [24:53] is the sub-list for method input_type
24, // [24:24] is the sub-list for extension type_name
24, // [24:24] is the sub-list for extension extendee
0, // [0:24] is the sub-list for field type_name
@ -6276,7 +6506,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProfileResponse_Data); i {
switch v := v.(*IdcardConvertArtistIdRequest); i {
case 0:
return &v.state
case 1:
@ -6288,7 +6518,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MediaRequest_VideosMap); i {
switch v := v.(*IdcardConvertArtistIdResponse); i {
case 0:
return &v.state
case 1:
@ -6300,7 +6530,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IndexResponse_Data); i {
switch v := v.(*CheckCaaCertNumRequest); i {
case 0:
return &v.state
case 1:
@ -6312,7 +6542,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MediaResponse_Data); i {
switch v := v.(*CheckCaaCertNumResponse); i {
case 0:
return &v.state
case 1:
@ -6324,7 +6554,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HonorResponse_HonorResData); i {
switch v := v.(*ProfileResponse_Data); i {
case 0:
return &v.state
case 1:
@ -6336,7 +6566,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ArtIdNameResponse_IdKbName); i {
switch v := v.(*MediaRequest_VideosMap); i {
case 0:
return &v.state
case 1:
@ -6348,7 +6578,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ArtistInfoResponse_ArtistChainField); i {
switch v := v.(*IndexResponse_Data); i {
case 0:
return &v.state
case 1:
@ -6360,7 +6590,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ArtistDataResponseInfo); i {
switch v := v.(*MediaResponse_Data); i {
case 0:
return &v.state
case 1:
@ -6372,7 +6602,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExportArtistResponse_Info); i {
switch v := v.(*HonorResponse_HonorResData); i {
case 0:
return &v.state
case 1:
@ -6384,7 +6614,7 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExportFieldListResponse_Info); i {
switch v := v.(*ArtIdNameResponse_IdKbName); i {
case 0:
return &v.state
case 1:
@ -6396,6 +6626,54 @@ func file_pb_artist_artist_proto_init() {
}
}
file_pb_artist_artist_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ArtistInfoResponse_ArtistChainField); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_artist_artist_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ArtistDataResponseInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_artist_artist_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExportArtistResponse_Info); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_artist_artist_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExportFieldListResponse_Info); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_artist_artist_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetInfoByUuidsResponse_Info); i {
case 0:
return &v.state
@ -6414,7 +6692,7 @@ func file_pb_artist_artist_proto_init() {
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_pb_artist_artist_proto_rawDesc,
NumEnums: 0,
NumMessages: 63,
NumMessages: 67,
NumExtensions: 0,
NumServices: 1,
},

View File

@ -9,10 +9,11 @@ import "google/protobuf/descriptor.proto";
//import "pb/artist/validate.proto";
import "pb/artist/validator.proto";
// protoc --proto_path=. --go_out=./pb/artist --go-triple_out=./pb/artist ./pb/artist/artist.proto
service Artist {
rpc ArtistList (ArtistListRequest) returns (ArtistListResponse) {} //
rpc CreateProfile (ProfileRequest) returns (ProfileResponse) {} //
rpc UpdateProfile (ProfileRequest) returns (ProfileResponse) {} //
rpc UpdateProfile (ProfileRequest) returns (ProfileResponse) {} //
rpc UpdateMedia (MediaRequest) returns (MediaResponse) {} //
rpc UpdateIndex (IndexRequest) returns (IndexResponse) {} //
rpc UpdateHonor (HonorRequest) returns (HonorResponse) {} //
@ -37,6 +38,8 @@ service Artist {
rpc ExportFieldList (ExportFieldListRequest) returns (ExportFieldListResponse) {} //
rpc GetInfoByUuids (GetInfoByUuidsRequest) returns (GetInfoByUuidsResponse) {} //
rpc GetCardIdWithImg (GetCardIdWithImgReq) returns (GetCardIdWithImgResp) {} //ID
rpc IdcardConvertArtistId (IdcardConvertArtistIdRequest) returns (IdcardConvertArtistIdResponse) {} //使id Created By JJxu
rpc CheckCaaCertNum(CheckCaaCertNumRequest)returns(CheckCaaCertNumResponse){} //
}
// ProfileListRequest
@ -569,3 +572,20 @@ message GetCardIdWithImgResp{
string Sex = 6;
string Msg = 7;
}
message IdcardConvertArtistIdRequest{
string idcard = 1;
}
message IdcardConvertArtistIdResponse{
int64 id = 1;
string uid =2;
}
message CheckCaaCertNumRequest{
string caaCertNum = 1;
string realName =2;
}
message CheckCaaCertNumResponse{
}

View File

@ -1,7 +1,7 @@
// Code generated by protoc-gen-go-triple. DO NOT EDIT.
// versions:
// - protoc-gen-go-triple v1.0.8
// - protoc v3.21.1
// - protoc v4.22.0--rc2
// source: pb/artist/artist.proto
package artist
@ -55,6 +55,8 @@ type ArtistClient interface {
ExportFieldList(ctx context.Context, in *ExportFieldListRequest, opts ...grpc_go.CallOption) (*ExportFieldListResponse, common.ErrorWithAttachment)
GetInfoByUuids(ctx context.Context, in *GetInfoByUuidsRequest, opts ...grpc_go.CallOption) (*GetInfoByUuidsResponse, common.ErrorWithAttachment)
GetCardIdWithImg(ctx context.Context, in *GetCardIdWithImgReq, opts ...grpc_go.CallOption) (*GetCardIdWithImgResp, common.ErrorWithAttachment)
IdcardConvertArtistId(ctx context.Context, in *IdcardConvertArtistIdRequest, opts ...grpc_go.CallOption) (*IdcardConvertArtistIdResponse, common.ErrorWithAttachment)
CheckCaaCertNum(ctx context.Context, in *CheckCaaCertNumRequest, opts ...grpc_go.CallOption) (*CheckCaaCertNumResponse, common.ErrorWithAttachment)
}
type artistClient struct {
@ -89,6 +91,8 @@ type ArtistClientImpl struct {
ExportFieldList func(ctx context.Context, in *ExportFieldListRequest) (*ExportFieldListResponse, error)
GetInfoByUuids func(ctx context.Context, in *GetInfoByUuidsRequest) (*GetInfoByUuidsResponse, error)
GetCardIdWithImg func(ctx context.Context, in *GetCardIdWithImgReq) (*GetCardIdWithImgResp, error)
IdcardConvertArtistId func(ctx context.Context, in *IdcardConvertArtistIdRequest) (*IdcardConvertArtistIdResponse, error)
CheckCaaCertNum func(ctx context.Context, in *CheckCaaCertNumRequest) (*CheckCaaCertNumResponse, error)
}
func (c *ArtistClientImpl) GetDubboStub(cc *triple.TripleConn) ArtistClient {
@ -265,6 +269,18 @@ func (c *artistClient) GetCardIdWithImg(ctx context.Context, in *GetCardIdWithIm
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/GetCardIdWithImg", in, out)
}
func (c *artistClient) IdcardConvertArtistId(ctx context.Context, in *IdcardConvertArtistIdRequest, opts ...grpc_go.CallOption) (*IdcardConvertArtistIdResponse, common.ErrorWithAttachment) {
out := new(IdcardConvertArtistIdResponse)
interfaceKey := ctx.Value(constant.InterfaceKey).(string)
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/IdcardConvertArtistId", in, out)
}
func (c *artistClient) CheckCaaCertNum(ctx context.Context, in *CheckCaaCertNumRequest, opts ...grpc_go.CallOption) (*CheckCaaCertNumResponse, common.ErrorWithAttachment) {
out := new(CheckCaaCertNumResponse)
interfaceKey := ctx.Value(constant.InterfaceKey).(string)
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/CheckCaaCertNum", in, out)
}
// ArtistServer is the server API for Artist service.
// All implementations must embed UnimplementedArtistServer
// for forward compatibility
@ -296,6 +312,8 @@ type ArtistServer interface {
ExportFieldList(context.Context, *ExportFieldListRequest) (*ExportFieldListResponse, error)
GetInfoByUuids(context.Context, *GetInfoByUuidsRequest) (*GetInfoByUuidsResponse, error)
GetCardIdWithImg(context.Context, *GetCardIdWithImgReq) (*GetCardIdWithImgResp, error)
IdcardConvertArtistId(context.Context, *IdcardConvertArtistIdRequest) (*IdcardConvertArtistIdResponse, error)
CheckCaaCertNum(context.Context, *CheckCaaCertNumRequest) (*CheckCaaCertNumResponse, error)
mustEmbedUnimplementedArtistServer()
}
@ -385,6 +403,12 @@ func (UnimplementedArtistServer) GetInfoByUuids(context.Context, *GetInfoByUuids
func (UnimplementedArtistServer) GetCardIdWithImg(context.Context, *GetCardIdWithImgReq) (*GetCardIdWithImgResp, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetCardIdWithImg not implemented")
}
func (UnimplementedArtistServer) IdcardConvertArtistId(context.Context, *IdcardConvertArtistIdRequest) (*IdcardConvertArtistIdResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method IdcardConvertArtistId not implemented")
}
func (UnimplementedArtistServer) CheckCaaCertNum(context.Context, *CheckCaaCertNumRequest) (*CheckCaaCertNumResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CheckCaaCertNum not implemented")
}
func (s *UnimplementedArtistServer) XXX_SetProxyImpl(impl protocol.Invoker) {
s.proxyImpl = impl
}
@ -1196,6 +1220,64 @@ func _Artist_GetCardIdWithImg_Handler(srv interface{}, ctx context.Context, dec
return interceptor(ctx, in, info, handler)
}
func _Artist_IdcardConvertArtistId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc_go.UnaryServerInterceptor) (interface{}, error) {
in := new(IdcardConvertArtistIdRequest)
if err := dec(in); err != nil {
return nil, err
}
base := srv.(dubbo3.Dubbo3GrpcService)
args := []interface{}{}
args = append(args, in)
md, _ := metadata.FromIncomingContext(ctx)
invAttachment := make(map[string]interface{}, len(md))
for k, v := range md {
invAttachment[k] = v
}
invo := invocation.NewRPCInvocation("IdcardConvertArtistId", args, invAttachment)
if interceptor == nil {
result := base.XXX_GetProxyImpl().Invoke(ctx, invo)
return result, result.Error()
}
info := &grpc_go.UnaryServerInfo{
Server: srv,
FullMethod: ctx.Value("XXX_TRIPLE_GO_INTERFACE_NAME").(string),
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
result := base.XXX_GetProxyImpl().Invoke(ctx, invo)
return result, result.Error()
}
return interceptor(ctx, in, info, handler)
}
func _Artist_CheckCaaCertNum_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc_go.UnaryServerInterceptor) (interface{}, error) {
in := new(CheckCaaCertNumRequest)
if err := dec(in); err != nil {
return nil, err
}
base := srv.(dubbo3.Dubbo3GrpcService)
args := []interface{}{}
args = append(args, in)
md, _ := metadata.FromIncomingContext(ctx)
invAttachment := make(map[string]interface{}, len(md))
for k, v := range md {
invAttachment[k] = v
}
invo := invocation.NewRPCInvocation("CheckCaaCertNum", args, invAttachment)
if interceptor == nil {
result := base.XXX_GetProxyImpl().Invoke(ctx, invo)
return result, result.Error()
}
info := &grpc_go.UnaryServerInfo{
Server: srv,
FullMethod: ctx.Value("XXX_TRIPLE_GO_INTERFACE_NAME").(string),
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
result := base.XXX_GetProxyImpl().Invoke(ctx, invo)
return result, result.Error()
}
return interceptor(ctx, in, info, handler)
}
// Artist_ServiceDesc is the grpc_go.ServiceDesc for Artist service.
// It's only intended for direct use with grpc_go.RegisterService,
// and not to be introspected or modified (even as a copy)
@ -1311,6 +1393,14 @@ var Artist_ServiceDesc = grpc_go.ServiceDesc{
MethodName: "GetCardIdWithImg",
Handler: _Artist_GetCardIdWithImg_Handler,
},
{
MethodName: "IdcardConvertArtistId",
Handler: _Artist_IdcardConvertArtistId_Handler,
},
{
MethodName: "CheckCaaCertNum",
Handler: _Artist_CheckCaaCertNum_Handler,
},
},
Streams: []grpc_go.StreamDesc{},
Metadata: "pb/artist/artist.proto",

View File

@ -2763,8 +2763,10 @@ type UserLockRequest struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
IsLock bool `protobuf:"varint,2,opt,name=isLock,proto3" json:"isLock,omitempty"`
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //id三选一
AccId int64 `protobuf:"varint,2,opt,name=accId,proto3" json:"accId,omitempty"`
ArtistUid string `protobuf:"bytes,3,opt,name=artistUid,proto3" json:"artistUid,omitempty"`
IsLock bool `protobuf:"varint,4,opt,name=isLock,proto3" json:"isLock,omitempty"`
}
func (x *UserLockRequest) Reset() {
@ -2806,6 +2808,20 @@ func (x *UserLockRequest) GetId() int64 {
return 0
}
func (x *UserLockRequest) GetAccId() int64 {
if x != nil {
return x.AccId
}
return 0
}
func (x *UserLockRequest) GetArtistUid() string {
if x != nil {
return x.ArtistUid
}
return ""
}
func (x *UserLockRequest) GetIsLock() bool {
if x != nil {
return x.IsLock
@ -3379,10 +3395,13 @@ type UserInfo struct {
CertificateNum string `protobuf:"bytes,22,opt,name=certificateNum,proto3" json:"certificateNum,omitempty"`
CertificateImg string `protobuf:"bytes,23,opt,name=certificateImg,proto3" json:"certificateImg,omitempty"`
Photo string `protobuf:"bytes,24,opt,name=photo,proto3" json:"photo,omitempty"`
HtmlType string `protobuf:"bytes,25,opt,name=htmlType,proto3" json:"htmlType,omitempty"`
EnvType string `protobuf:"bytes,26,opt,name=envType,proto3" json:"envType,omitempty"`
HtmlType string `protobuf:"bytes,25,opt,name=htmlType,proto3" json:"htmlType,omitempty"` //法大大实名认证页面跳转参数
EnvType string `protobuf:"bytes,26,opt,name=envType,proto3" json:"envType,omitempty"` //法大大实名认证页面跳转参数
InviteCode string `protobuf:"bytes,27,opt,name=inviteCode,proto3" json:"inviteCode,omitempty"`
MgmtArtistId int64 `protobuf:"varint,28,opt,name=mgmtArtistId,proto3" json:"mgmtArtistId,omitempty"` //艺术家id
// 手机号更新用
Domain string `protobuf:"bytes,29,opt,name=domain,proto3" json:"domain,omitempty"`
VerCode string `protobuf:"bytes,30,opt,name=verCode,proto3" json:"verCode,omitempty"`
}
func (x *UserInfo) Reset() {
@ -3592,6 +3611,20 @@ func (x *UserInfo) GetMgmtArtistId() int64 {
return 0
}
func (x *UserInfo) GetDomain() string {
if x != nil {
return x.Domain
}
return ""
}
func (x *UserInfo) GetVerCode() string {
if x != nil {
return x.VerCode
}
return ""
}
type PreSaveArtistInfoData struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@ -4156,252 +4189,258 @@ var file_pb_artistinfo_artistinfo_proto_rawDesc = []byte{
0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x21, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
0x61, 0x72, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a,
0x72, 0x75, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x22, 0x20, 0x01, 0x28, 0x03,
0x52, 0x0a, 0x72, 0x75, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x39, 0x0a, 0x0f,
0x52, 0x0a, 0x72, 0x75, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x6d, 0x0a, 0x0f,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
0x16, 0x0a, 0x06, 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
0x06, 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x22, 0x11, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x4c,
0x6f, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0xa1, 0x01, 0x0a, 0x1f, 0x42,
0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64,
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65,
0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x69,
0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b,
0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x21,
0x0a, 0x1f, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x64, 0x22, 0x67, 0x0a, 0x13, 0x42, 0x69, 0x6e, 0x64, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49,
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72,
0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
0x12, 0x1a, 0x0a, 0x08, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
0x28, 0x03, 0x52, 0x08, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
0x09, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64, 0x22, 0x28, 0x0a, 0x10, 0x42, 0x69,
0x6e, 0x64, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14,
0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x22, 0x13, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61,
0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x9b, 0x01, 0x0a, 0x0f, 0x46, 0x69,
0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a,
0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
0x52, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x6d,
0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
0x03, 0x52, 0x0c, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x12,
0x24, 0x0a, 0x0d, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64,
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69,
0x73, 0x74, 0x55, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64,
0x43, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x69,
0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x3c, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x55,
0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x64,
0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xfc, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x61, 0x6c, 0x4e, 0x61,
0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x49, 0x64,
0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x49, 0x64, 0x4e, 0x75, 0x6d,
0x12, 0x16, 0x0a, 0x06, 0x54, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x06, 0x54, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x49, 0x64, 0x43, 0x61,
0x72, 0x64, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x49,
0x64, 0x43, 0x61, 0x72, 0x64, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x49, 0x64,
0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
0x49, 0x64, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x10, 0x0a, 0x03, 0x41, 0x67,
0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x41, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03,
0x53, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x53, 0x65, 0x78, 0x12, 0x1a,
0x0a, 0x08, 0x42, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
0x52, 0x08, 0x42, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64,
0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64,
0x72, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03,
0x52, 0x02, 0x49, 0x64, 0x22, 0x88, 0x06, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
0x64, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x02,
0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12,
0x1c, 0x0a, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x03, 0x20, 0x01,
0x28, 0x03, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1c, 0x0a,
0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6d,
0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x6d, 0x67, 0x6d,
0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0d, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64, 0x12,
0x16, 0x0a, 0x06, 0x74, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
0x06, 0x74, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74,
0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e,
0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6e, 0x76,
0x69, 0x74, 0x65, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x69,
0x73, 0x52, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52,
0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x72,
0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52,
0x0a, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x34, 0x0a, 0x08, 0x72,
0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x52, 0x65, 0x61, 0x6c, 0x4e,
0x61, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d,
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x64, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0d, 0x20,
0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x64, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a,
0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a,
0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f,
0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x18,
0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x12, 0x16, 0x0a,
0x06, 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x18, 0x13, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69,
0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12,
0x26, 0x0a, 0x0e, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x4e, 0x75,
0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
0x63, 0x61, 0x74, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x65, 0x72, 0x74, 0x69,
0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x67, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52,
0x0e, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x67, 0x12,
0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x74, 0x6f, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
0x70, 0x68, 0x6f, 0x74, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x68, 0x74, 0x6d, 0x6c, 0x54, 0x79, 0x70,
0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x68, 0x74, 0x6d, 0x6c, 0x54, 0x79, 0x70,
0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x76, 0x54, 0x79, 0x70, 0x65, 0x18, 0x1a, 0x20, 0x01,
0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x76, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x69,
0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52,
0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x6d,
0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x18, 0x1c, 0x20, 0x01, 0x28,
0x03, 0x52, 0x0c, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x22,
0xf3, 0x02, 0x0a, 0x15, 0x50, 0x72, 0x65, 0x53, 0x61, 0x76, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73,
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x67, 0x6d,
0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x67,
0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63,
0x61, 0x72, 0x64, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x61, 0x72,
0x64, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x04, 0x20,
0x01, 0x28, 0x05, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x61,
0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x20, 0x0a,
0x0b, 0x6e, 0x61, 0x74, 0x69, 0x76, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x76, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x12,
0x18, 0x0a, 0x07, 0x70, 0x65, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
0x52, 0x07, 0x70, 0x65, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f,
0x6e, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12,
0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61,
0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74,
0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x61, 0x61, 0x43, 0x65,
0x72, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x61, 0x61,
0x43, 0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x61, 0x4a, 0x6f,
0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x61,
0x61, 0x4a, 0x6f, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6a, 0x6f, 0x69,
0x6e, 0x53, 0x68, 0x6f, 0x77, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6a, 0x6f, 0x69,
0x6e, 0x53, 0x68, 0x6f, 0x77, 0x22, 0x3b, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x53,
0x61, 0x76, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49,
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63,
0x49, 0x64, 0x32, 0xda, 0x0d, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x52, 0x0a, 0x0c, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65,
0x72, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x52,
0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e,
0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49,
0x64, 0x43, 0x61, 0x72, 0x64, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x66, 0x6f, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x64, 0x43, 0x61, 0x72, 0x64, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69,
0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4e, 0x6f, 0x50, 0x61, 0x72, 0x61,
0x6d, 0x73, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12,
0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74,
0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x0b, 0x47, 0x65, 0x74,
0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x49, 0x64, 0x12, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x49,
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x49,
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x0a, 0x43, 0x72,
0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61,
0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x2e, 0x61, 0x72, 0x74,
0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73,
0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64,
0x22, 0x00, 0x12, 0x52, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x56, 0x65, 0x72, 0x69,
0x66, 0x79, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e,
0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f,
0x2e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x0d, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x12, 0x20, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f,
0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
0x4c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x5e, 0x0a,
0x10, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x79, 0x4c, 0x69, 0x73,
0x74, 0x12, 0x23, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x41,
0x72, 0x74, 0x69, 0x73, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69,
0x6e, 0x66, 0x6f, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x79,
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x46, 0x0a,
0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x12, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69,
0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x10, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e,
0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x23, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55,
0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x0c,
0x55, 0x6e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1f, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x6e, 0x46, 0x69, 0x6e, 0x69,
0x73, 0x68, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x6e, 0x46, 0x69, 0x6e,
0x69, 0x73, 0x68, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00,
0x12, 0x4c, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55,
0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73,
0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x49,
0x0a, 0x09, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x73, 0x67, 0x12, 0x1c, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d,
0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x73, 0x67,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x76, 0x0a, 0x18, 0x42, 0x69, 0x6e,
0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x41, 0x63,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x66, 0x6f, 0x2e, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76,
0x14, 0x0a, 0x05, 0x61, 0x63, 0x63, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
0x61, 0x63, 0x63, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55,
0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x55, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x18, 0x04, 0x20,
0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x22, 0x11, 0x0a, 0x0f, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0xa1,
0x01, 0x0a, 0x1f, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76,
0x69, 0x74, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e,
0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65,
0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22,
0x00, 0x12, 0x4f, 0x0a, 0x0c, 0x42, 0x69, 0x6e, 0x64, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49,
0x64, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x42,
0x69, 0x6e, 0x64, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e,
0x42, 0x69, 0x6e, 0x64, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x73, 0x12,
0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x46, 0x69, 0x6e,
0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73,
0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x08,
0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x00, 0x12, 0x44, 0x0a,
0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x12,
0x14, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65,
0x72, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x66, 0x6f, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4e, 0x6f, 0x50, 0x61, 0x72, 0x61, 0x6d,
0x73, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x11, 0x50, 0x72, 0x65, 0x53, 0x61, 0x76, 0x65, 0x41, 0x72,
0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x50, 0x72, 0x65, 0x53, 0x61, 0x76, 0x65, 0x41, 0x72, 0x74,
0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x1a, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4e,
0x6f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x00, 0x12, 0x64, 0x0a, 0x14, 0x47, 0x65, 0x74,
0x50, 0x72, 0x65, 0x53, 0x61, 0x76, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x27, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47,
0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x6e,
0x76, 0x69, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
0x05, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x03,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65,
0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x18,
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f,
0x64, 0x65, 0x22, 0x21, 0x0a, 0x1f, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65,
0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x67, 0x0a, 0x13, 0x42, 0x69, 0x6e, 0x64, 0x41, 0x72, 0x74,
0x69, 0x73, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73,
0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64,
0x12, 0x1c, 0x0a, 0x09, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64, 0x18, 0x03, 0x20,
0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64, 0x22, 0x28,
0x0a, 0x10, 0x42, 0x69, 0x6e, 0x64, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x52, 0x65,
0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x13, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61,
0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x9b, 0x01,
0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x18, 0x01,
0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12,
0x22, 0x0a, 0x0c, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x18,
0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73,
0x74, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73,
0x74, 0x55, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6d, 0x67, 0x6d, 0x74,
0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6e, 0x76,
0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x3c, 0x0a, 0x10, 0x46,
0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
0x28, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xfc, 0x01, 0x0a, 0x0c, 0x52, 0x65,
0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61,
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14,
0x0a, 0x05, 0x49, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x49,
0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x54, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x03,
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x54, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b,
0x49, 0x64, 0x43, 0x61, 0x72, 0x64, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0b, 0x49, 0x64, 0x43, 0x61, 0x72, 0x64, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x12, 0x1e,
0x0a, 0x0a, 0x49, 0x64, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0a, 0x49, 0x64, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x10,
0x0a, 0x03, 0x41, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x41, 0x67, 0x65,
0x12, 0x10, 0x0a, 0x03, 0x53, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x53,
0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x42, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0x08,
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x42, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x18,
0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x64, 0x18, 0x0a,
0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x64, 0x22, 0xba, 0x06, 0x0a, 0x08, 0x55, 0x73, 0x65,
0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64,
0x41, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
0x64, 0x41, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74,
0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41,
0x74, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x04,
0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12,
0x1c, 0x0a, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01,
0x28, 0x03, 0x52, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12, 0x24, 0x0a,
0x0d, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x69, 0x64, 0x18, 0x06,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74,
0x55, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20,
0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x69,
0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a,
0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12,
0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20,
0x01, 0x28, 0x03, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12,
0x1e, 0x0a, 0x0a, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x0b, 0x20,
0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12,
0x34, 0x0a, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x18, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x52,
0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x72, 0x65, 0x61,
0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x64, 0x64, 0x53, 0x74, 0x61, 0x74,
0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x64, 0x64, 0x53, 0x74, 0x61, 0x74,
0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x18,
0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49,
0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28,
0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52,
0x65, 0x61, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61,
0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x18, 0x13, 0x20, 0x01, 0x28,
0x08, 0x52, 0x06, 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f,
0x75, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
0x74, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63, 0x65, 0x72,
0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63,
0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x67, 0x18, 0x17, 0x20,
0x01, 0x28, 0x09, 0x52, 0x0e, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65,
0x49, 0x6d, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x74, 0x6f, 0x18, 0x18, 0x20, 0x01,
0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x74, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x68, 0x74, 0x6d,
0x6c, 0x54, 0x79, 0x70, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x68, 0x74, 0x6d,
0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x76, 0x54, 0x79, 0x70, 0x65,
0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x76, 0x54, 0x79, 0x70, 0x65, 0x12,
0x1e, 0x0a, 0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x1b, 0x20,
0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12,
0x22, 0x0a, 0x0c, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x18,
0x1c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73,
0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x1d, 0x20,
0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x76,
0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65,
0x72, 0x43, 0x6f, 0x64, 0x65, 0x22, 0xf3, 0x02, 0x0a, 0x15, 0x50, 0x72, 0x65, 0x53, 0x61, 0x76,
0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x12,
0x1c, 0x0a, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
0x28, 0x03, 0x52, 0x09, 0x6d, 0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12, 0x12, 0x0a,
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x61, 0x72, 0x64, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
0x09, 0x52, 0x06, 0x63, 0x61, 0x72, 0x64, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e,
0x64, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
0x72, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03,
0x61, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x76, 0x65, 0x50, 0x6c, 0x61,
0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6e, 0x61, 0x74, 0x69, 0x76, 0x65,
0x50, 0x6c, 0x61, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x65, 0x6e, 0x4e, 0x61, 0x6d, 0x65,
0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x65, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12,
0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12,
0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01,
0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
0x0a, 0x63, 0x61, 0x61, 0x43, 0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0a, 0x63, 0x61, 0x61, 0x43, 0x65, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a,
0x0b, 0x63, 0x61, 0x61, 0x4a, 0x6f, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0b, 0x63, 0x61, 0x61, 0x4a, 0x6f, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12,
0x1a, 0x0a, 0x08, 0x6a, 0x6f, 0x69, 0x6e, 0x53, 0x68, 0x6f, 0x77, 0x18, 0x0d, 0x20, 0x01, 0x28,
0x05, 0x52, 0x08, 0x6a, 0x6f, 0x69, 0x6e, 0x53, 0x68, 0x6f, 0x77, 0x22, 0x3b, 0x0a, 0x1b, 0x47,
0x65, 0x74, 0x50, 0x72, 0x65, 0x53, 0x61, 0x76, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x72, 0x74,
0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x50, 0x72, 0x65, 0x53, 0x61, 0x76, 0x65, 0x41,
0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x42,
0x0f, 0x5a, 0x0d, 0x2e, 0x2f, 0x3b, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f,
0x50, 0x00, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x67,
0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6d,
0x67, 0x6d, 0x74, 0x41, 0x63, 0x63, 0x49, 0x64, 0x32, 0xda, 0x0d, 0x0a, 0x0a, 0x41, 0x72, 0x74,
0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x52, 0x0a, 0x0c, 0x52, 0x65, 0x67, 0x69, 0x73,
0x74, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73, 0x65,
0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x55, 0x73,
0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0c, 0x55,
0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x64, 0x43, 0x61, 0x72, 0x64, 0x12, 0x1f, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49,
0x64, 0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x4e, 0x6f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x07, 0x47, 0x65,
0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47,
0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12,
0x4f, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x49, 0x64, 0x12, 0x1e,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55,
0x73, 0x65, 0x72, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55,
0x73, 0x65, 0x72, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00,
0x12, 0x4c, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1d,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x72, 0x65, 0x61,
0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x58,
0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x21, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x72,
0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f,
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x69,
0x73, 0x68, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x56, 0x65, 0x72, 0x69,
0x66, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x56, 0x65, 0x72,
0x69, 0x66, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x0d,
0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x12, 0x20, 0x2e,
0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
0x20, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x68, 0x65,
0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x64, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x10, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x53, 0x75, 0x70,
0x70, 0x6c, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x23, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c,
0x79, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74,
0x53, 0x75, 0x70, 0x70, 0x6c, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x64, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x12,
0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65,
0x72, 0x4c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61,
0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f,
0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x10, 0x43,
0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x12,
0x23, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x68, 0x65,
0x63, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66,
0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64,
0x22, 0x00, 0x12, 0x52, 0x0a, 0x0c, 0x55, 0x6e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x4c, 0x69,
0x73, 0x74, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e,
0x55, 0x6e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f,
0x2e, 0x55, 0x6e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66,
0x6f, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f,
0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x64, 0x22, 0x00, 0x12, 0x49, 0x0a, 0x09, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x73,
0x67, 0x12, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55,
0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x70, 0x64,
0x61, 0x74, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12,
0x76, 0x0a, 0x18, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x76,
0x69, 0x74, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2b, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76,
0x69, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x42, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65,
0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
0x73, 0x70, 0x6f, 0x6e, 0x64, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x0c, 0x42, 0x69, 0x6e, 0x64, 0x41,
0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x42, 0x69, 0x6e, 0x64, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49,
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x42, 0x69, 0x6e, 0x64, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74,
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x46, 0x69, 0x6e, 0x64,
0x55, 0x73, 0x65, 0x72, 0x73, 0x12, 0x1b, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x66, 0x6f, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e,
0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x22, 0x00, 0x12, 0x3f, 0x0a, 0x08, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1b,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x46, 0x69, 0x6e, 0x64,
0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
0x6f, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
0x72, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x66, 0x6f, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x1a, 0x2e, 0x61, 0x72,
0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4e,
0x6f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x11, 0x50, 0x72, 0x65,
0x53, 0x61, 0x76, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21,
0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x50, 0x72, 0x65, 0x53,
0x61, 0x76, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74,
0x61, 0x1a, 0x1a, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x43,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4e, 0x6f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x00, 0x12,
0x64, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x53, 0x61, 0x76, 0x65, 0x41, 0x72, 0x74,
0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x53, 0x61, 0x76, 0x65, 0x41,
0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x1a, 0x21, 0x2e, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x50, 0x72,
0x65, 0x53, 0x61, 0x76, 0x65, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x44,
0x61, 0x74, 0x61, 0x22, 0x00, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x2f, 0x3b, 0x61, 0x72, 0x74, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x66, 0x6f, 0x50, 0x00, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (

View File

@ -328,8 +328,10 @@ message ArtistArtworkSupplyListResponseData {
message UserLockRequest {
int64 id = 1;
bool isLock = 2;
int64 id = 1; //id三选一
int64 accId =2;
string artistUid=3;
bool isLock = 4;
}
message UserLockRespond {
@ -416,10 +418,14 @@ message UserInfo{
string certificateNum = 22;
string certificateImg = 23;
string photo = 24;
string htmlType = 25;
string envType = 26;
string htmlType = 25;//
string envType = 26;//
string inviteCode = 27;
int64 mgmtArtistId = 28; //id
//
string domain =29;
string verCode=30;
}
message PreSaveArtistInfoData{

View File

@ -2,11 +2,16 @@ package service
import (
"dubbo.apache.org/dubbo-go/v3/config"
"github.com/fonchain/fonchain-artistinfo/pb/account"
"github.com/fonchain/fonchain-artistinfo/pb/artist"
)
var GrpcArtistImpl = new(artist.ArtistClientImpl)
var (
GrpcArtistImpl = new(artist.ArtistClientImpl)
AccountImpl = new(account.AccountClientImpl)
)
func init() {
config.SetConsumerService(GrpcArtistImpl)
config.SetConsumerService(AccountImpl)
}