新增两个接口

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 # 日志级别

File diff suppressed because it is too large Load Diff

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 {
@ -62,33 +64,35 @@ type artistClient struct {
}
type ArtistClientImpl struct {
ArtistList func(ctx context.Context, in *ArtistListRequest) (*ArtistListResponse, error)
CreateProfile func(ctx context.Context, in *ProfileRequest) (*ProfileResponse, error)
UpdateProfile func(ctx context.Context, in *ProfileRequest) (*ProfileResponse, error)
UpdateMedia func(ctx context.Context, in *MediaRequest) (*MediaResponse, error)
UpdateIndex func(ctx context.Context, in *IndexRequest) (*IndexResponse, error)
UpdateHonor func(ctx context.Context, in *HonorRequest) (*HonorResponse, error)
UploadMedia func(ctx context.Context, in *UploadMediaRequest) (*UploadMediaResponse, error)
ArtistDetail func(ctx context.Context, in *DetailRequest) (*DetailResponse, error)
DelArtist func(ctx context.Context, in *DelRequest) (*DelResponse, error)
HonorDel func(ctx context.Context, in *HonorDelRequest) (*HonorDelResponse, error)
CreateArtistBatch func(ctx context.Context, in *CreateArtistBatchRequest) (*CreateArtistBatchResponse, error)
ArtistIdName func(ctx context.Context, in *ArtIdNameRequest) (*ArtIdNameResponse, error)
ArtistInfo func(ctx context.Context, in *ArtistInfoRequest) (*ArtistInfoResponse, error)
ArtistData func(ctx context.Context, in *ArtistDataRequest) (*ArtistDataResponse, error)
InvitationAdd func(ctx context.Context, in *InvitationAddRequest) (*InvitationAddResponse, error)
InvitationUpdate func(ctx context.Context, in *InvitationUpdateRequest) (*InvitationUpdateResponse, error)
InvitationDel func(ctx context.Context, in *InvitationDelRequest) (*InvitationDelResponse, error)
InvitationList func(ctx context.Context, in *InvitationListRequest) (*InvitationListResponse, error)
InvitationInfo func(ctx context.Context, in *InvitationInfoRequest) (*InvitationInfoResponse, error)
ContractAdd func(ctx context.Context, in *ContractAddRequest) (*ContractAddResponse, error)
ContractUpdate func(ctx context.Context, in *ContractAddRequest) (*ContractUpdateResponse, error)
ContractList func(ctx context.Context, in *ContractListRequest) (*ContractListResponse, error)
ArtistChainUpdate func(ctx context.Context, in *ArtistChainUpdateRequest) (*ArtistChainUpdateResponse, error)
ExportArtist func(ctx context.Context, in *ExportArtistRequest) (*ExportArtistResponse, error)
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)
ArtistList func(ctx context.Context, in *ArtistListRequest) (*ArtistListResponse, error)
CreateProfile func(ctx context.Context, in *ProfileRequest) (*ProfileResponse, error)
UpdateProfile func(ctx context.Context, in *ProfileRequest) (*ProfileResponse, error)
UpdateMedia func(ctx context.Context, in *MediaRequest) (*MediaResponse, error)
UpdateIndex func(ctx context.Context, in *IndexRequest) (*IndexResponse, error)
UpdateHonor func(ctx context.Context, in *HonorRequest) (*HonorResponse, error)
UploadMedia func(ctx context.Context, in *UploadMediaRequest) (*UploadMediaResponse, error)
ArtistDetail func(ctx context.Context, in *DetailRequest) (*DetailResponse, error)
DelArtist func(ctx context.Context, in *DelRequest) (*DelResponse, error)
HonorDel func(ctx context.Context, in *HonorDelRequest) (*HonorDelResponse, error)
CreateArtistBatch func(ctx context.Context, in *CreateArtistBatchRequest) (*CreateArtistBatchResponse, error)
ArtistIdName func(ctx context.Context, in *ArtIdNameRequest) (*ArtIdNameResponse, error)
ArtistInfo func(ctx context.Context, in *ArtistInfoRequest) (*ArtistInfoResponse, error)
ArtistData func(ctx context.Context, in *ArtistDataRequest) (*ArtistDataResponse, error)
InvitationAdd func(ctx context.Context, in *InvitationAddRequest) (*InvitationAddResponse, error)
InvitationUpdate func(ctx context.Context, in *InvitationUpdateRequest) (*InvitationUpdateResponse, error)
InvitationDel func(ctx context.Context, in *InvitationDelRequest) (*InvitationDelResponse, error)
InvitationList func(ctx context.Context, in *InvitationListRequest) (*InvitationListResponse, error)
InvitationInfo func(ctx context.Context, in *InvitationInfoRequest) (*InvitationInfoResponse, error)
ContractAdd func(ctx context.Context, in *ContractAddRequest) (*ContractAddResponse, error)
ContractUpdate func(ctx context.Context, in *ContractAddRequest) (*ContractUpdateResponse, error)
ContractList func(ctx context.Context, in *ContractListRequest) (*ContractListResponse, error)
ArtistChainUpdate func(ctx context.Context, in *ArtistChainUpdateRequest) (*ArtistChainUpdateResponse, error)
ExportArtist func(ctx context.Context, in *ExportArtistRequest) (*ExportArtistResponse, error)
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)
}