更新
This commit is contained in:
parent
c889115d81
commit
9c74bbb706
@ -14,6 +14,14 @@ func (e *ExhibitionProvider) CheckPhone(_ context.Context, req *exhibition.Regis
|
|||||||
return rep, nil
|
return rep, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (e *ExhibitionProvider) CheckIdCard(_ context.Context, req *exhibition.RegisterInfo) (rep *exhibition.CheckIdCardResp, err error) {
|
||||||
|
if rep, err = e.registerLogic.CheckIdCard(req); err != nil {
|
||||||
|
return rep, err
|
||||||
|
}
|
||||||
|
rep.Msg = msg.Success
|
||||||
|
return rep, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (e *ExhibitionProvider) SaveRegisterRecord(_ context.Context, req *exhibition.RegisterInfo) (rep *exhibition.SaveRegisterRecordResp, err error) {
|
func (e *ExhibitionProvider) SaveRegisterRecord(_ context.Context, req *exhibition.RegisterInfo) (rep *exhibition.SaveRegisterRecordResp, err error) {
|
||||||
if rep, err = e.registerLogic.SaveRegisterRecord(req); err != nil {
|
if rep, err = e.registerLogic.SaveRegisterRecord(req); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -11,6 +11,7 @@ import (
|
|||||||
|
|
||||||
type IRegister interface {
|
type IRegister interface {
|
||||||
CheckByPhone(in *exhibition.RegisterInfo) (out *exhibition.CheckPhoneResp, err error)
|
CheckByPhone(in *exhibition.RegisterInfo) (out *exhibition.CheckPhoneResp, err error)
|
||||||
|
CheckIdCard(in *exhibition.RegisterInfo) (out *exhibition.CheckIdCardResp, err error)
|
||||||
SaveRegisterRecord(in *exhibition.RegisterInfo) (out *exhibition.SaveRegisterRecordResp, err error)
|
SaveRegisterRecord(in *exhibition.RegisterInfo) (out *exhibition.SaveRegisterRecordResp, err error)
|
||||||
RegisterRecordList(in *exhibition.RecordListReq) (out *exhibition.RecordListResp, err error)
|
RegisterRecordList(in *exhibition.RecordListReq) (out *exhibition.RecordListResp, err error)
|
||||||
FindAllRecord() (out *exhibition.ExportRecordResp, err error)
|
FindAllRecord() (out *exhibition.ExportRecordResp, err error)
|
||||||
@ -23,6 +24,18 @@ func NewRegister() IRegister {
|
|||||||
type Register struct {
|
type Register struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r *Register) CheckIdCard(in *exhibition.RegisterInfo) (out *exhibition.CheckIdCardResp, err error) {
|
||||||
|
out = &exhibition.CheckIdCardResp{}
|
||||||
|
check, err1 := dao.CheckBy("id_card", in.IdCard, "")
|
||||||
|
if err1 != nil {
|
||||||
|
return nil, err1
|
||||||
|
}
|
||||||
|
if check != nil {
|
||||||
|
return nil, errors.New("该身份证号已被" + check.PhoneNum + "注册!")
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (r *Register) FindAllRecord() (out *exhibition.ExportRecordResp, err error) {
|
func (r *Register) FindAllRecord() (out *exhibition.ExportRecordResp, err error) {
|
||||||
out = &exhibition.ExportRecordResp{}
|
out = &exhibition.ExportRecordResp{}
|
||||||
allRecord, err := dao.AllRecord()
|
allRecord, err := dao.AllRecord()
|
||||||
@ -114,13 +127,6 @@ func (r *Register) SaveRegisterRecord(in *exhibition.RegisterInfo) (out *exhibit
|
|||||||
tmpRecord = registerRecord
|
tmpRecord = registerRecord
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
check, err := dao.CheckBy("id_card", record.IdCard, "")
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if check != nil {
|
|
||||||
return nil, errors.New("该身份证号已被" + check.PhoneNum + "注册!")
|
|
||||||
}
|
|
||||||
record.UUID = utils.GetUUID()
|
record.UUID = utils.GetUUID()
|
||||||
registerRecord, err := dao.CreateRegisterRecord(record)
|
registerRecord, err := dao.CreateRegisterRecord(record)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -11,6 +11,7 @@ service Exhibition {
|
|||||||
rpc SaveRegisterRecord(RegisterInfo) returns (SaveRegisterRecordResp);
|
rpc SaveRegisterRecord(RegisterInfo) returns (SaveRegisterRecordResp);
|
||||||
rpc RegisterRecordList(RecordListReq) returns (RecordListResp);
|
rpc RegisterRecordList(RecordListReq) returns (RecordListResp);
|
||||||
rpc ExportRegisterRecord(ExportRecordReq) returns (ExportRecordResp);
|
rpc ExportRegisterRecord(ExportRecordReq) returns (ExportRecordResp);
|
||||||
|
rpc CheckIdCard(RegisterInfo) returns (CheckIdCardResp);
|
||||||
}
|
}
|
||||||
|
|
||||||
message RegisterInfo{
|
message RegisterInfo{
|
||||||
@ -45,6 +46,10 @@ message CheckPhoneResp {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message CheckIdCardResp {
|
||||||
|
string msg = 1;
|
||||||
|
}
|
||||||
|
|
||||||
message RecordListReq {
|
message RecordListReq {
|
||||||
string keyword = 1;
|
string keyword = 1;
|
||||||
int32 page = 2;
|
int32 page = 2;
|
||||||
|
@ -299,6 +299,53 @@ func (x *CheckPhoneResp) GetData() *RegisterInfo {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type CheckIdCardResp struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
Msg string `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CheckIdCardResp) Reset() {
|
||||||
|
*x = CheckIdCardResp{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pb_exhibition_proto_msgTypes[3]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CheckIdCardResp) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*CheckIdCardResp) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *CheckIdCardResp) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pb_exhibition_proto_msgTypes[3]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use CheckIdCardResp.ProtoReflect.Descriptor instead.
|
||||||
|
func (*CheckIdCardResp) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pb_exhibition_proto_rawDescGZIP(), []int{3}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *CheckIdCardResp) GetMsg() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Msg
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
type RecordListReq struct {
|
type RecordListReq struct {
|
||||||
state protoimpl.MessageState
|
state protoimpl.MessageState
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
@ -314,7 +361,7 @@ type RecordListReq struct {
|
|||||||
func (x *RecordListReq) Reset() {
|
func (x *RecordListReq) Reset() {
|
||||||
*x = RecordListReq{}
|
*x = RecordListReq{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[3]
|
mi := &file_pb_exhibition_proto_msgTypes[4]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -327,7 +374,7 @@ func (x *RecordListReq) String() string {
|
|||||||
func (*RecordListReq) ProtoMessage() {}
|
func (*RecordListReq) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *RecordListReq) ProtoReflect() protoreflect.Message {
|
func (x *RecordListReq) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[3]
|
mi := &file_pb_exhibition_proto_msgTypes[4]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -340,7 +387,7 @@ func (x *RecordListReq) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use RecordListReq.ProtoReflect.Descriptor instead.
|
// Deprecated: Use RecordListReq.ProtoReflect.Descriptor instead.
|
||||||
func (*RecordListReq) Descriptor() ([]byte, []int) {
|
func (*RecordListReq) Descriptor() ([]byte, []int) {
|
||||||
return file_pb_exhibition_proto_rawDescGZIP(), []int{3}
|
return file_pb_exhibition_proto_rawDescGZIP(), []int{4}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RecordListReq) GetKeyword() string {
|
func (x *RecordListReq) GetKeyword() string {
|
||||||
@ -393,7 +440,7 @@ type RecordListResp struct {
|
|||||||
func (x *RecordListResp) Reset() {
|
func (x *RecordListResp) Reset() {
|
||||||
*x = RecordListResp{}
|
*x = RecordListResp{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[4]
|
mi := &file_pb_exhibition_proto_msgTypes[5]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -406,7 +453,7 @@ func (x *RecordListResp) String() string {
|
|||||||
func (*RecordListResp) ProtoMessage() {}
|
func (*RecordListResp) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *RecordListResp) ProtoReflect() protoreflect.Message {
|
func (x *RecordListResp) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[4]
|
mi := &file_pb_exhibition_proto_msgTypes[5]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -419,7 +466,7 @@ func (x *RecordListResp) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use RecordListResp.ProtoReflect.Descriptor instead.
|
// Deprecated: Use RecordListResp.ProtoReflect.Descriptor instead.
|
||||||
func (*RecordListResp) Descriptor() ([]byte, []int) {
|
func (*RecordListResp) Descriptor() ([]byte, []int) {
|
||||||
return file_pb_exhibition_proto_rawDescGZIP(), []int{4}
|
return file_pb_exhibition_proto_rawDescGZIP(), []int{5}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *RecordListResp) GetData() []*RegisterInfo {
|
func (x *RecordListResp) GetData() []*RegisterInfo {
|
||||||
@ -466,7 +513,7 @@ type ExportRecordReq struct {
|
|||||||
func (x *ExportRecordReq) Reset() {
|
func (x *ExportRecordReq) Reset() {
|
||||||
*x = ExportRecordReq{}
|
*x = ExportRecordReq{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[5]
|
mi := &file_pb_exhibition_proto_msgTypes[6]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -479,7 +526,7 @@ func (x *ExportRecordReq) String() string {
|
|||||||
func (*ExportRecordReq) ProtoMessage() {}
|
func (*ExportRecordReq) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *ExportRecordReq) ProtoReflect() protoreflect.Message {
|
func (x *ExportRecordReq) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[5]
|
mi := &file_pb_exhibition_proto_msgTypes[6]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -492,7 +539,7 @@ func (x *ExportRecordReq) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use ExportRecordReq.ProtoReflect.Descriptor instead.
|
// Deprecated: Use ExportRecordReq.ProtoReflect.Descriptor instead.
|
||||||
func (*ExportRecordReq) Descriptor() ([]byte, []int) {
|
func (*ExportRecordReq) Descriptor() ([]byte, []int) {
|
||||||
return file_pb_exhibition_proto_rawDescGZIP(), []int{5}
|
return file_pb_exhibition_proto_rawDescGZIP(), []int{6}
|
||||||
}
|
}
|
||||||
|
|
||||||
type ExportInfo struct {
|
type ExportInfo struct {
|
||||||
@ -515,7 +562,7 @@ type ExportInfo struct {
|
|||||||
func (x *ExportInfo) Reset() {
|
func (x *ExportInfo) Reset() {
|
||||||
*x = ExportInfo{}
|
*x = ExportInfo{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[6]
|
mi := &file_pb_exhibition_proto_msgTypes[7]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -528,7 +575,7 @@ func (x *ExportInfo) String() string {
|
|||||||
func (*ExportInfo) ProtoMessage() {}
|
func (*ExportInfo) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *ExportInfo) ProtoReflect() protoreflect.Message {
|
func (x *ExportInfo) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[6]
|
mi := &file_pb_exhibition_proto_msgTypes[7]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -541,7 +588,7 @@ func (x *ExportInfo) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use ExportInfo.ProtoReflect.Descriptor instead.
|
// Deprecated: Use ExportInfo.ProtoReflect.Descriptor instead.
|
||||||
func (*ExportInfo) Descriptor() ([]byte, []int) {
|
func (*ExportInfo) Descriptor() ([]byte, []int) {
|
||||||
return file_pb_exhibition_proto_rawDescGZIP(), []int{6}
|
return file_pb_exhibition_proto_rawDescGZIP(), []int{7}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *ExportInfo) GetArtistName() string {
|
func (x *ExportInfo) GetArtistName() string {
|
||||||
@ -626,7 +673,7 @@ type ExportRecordResp struct {
|
|||||||
func (x *ExportRecordResp) Reset() {
|
func (x *ExportRecordResp) Reset() {
|
||||||
*x = ExportRecordResp{}
|
*x = ExportRecordResp{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[7]
|
mi := &file_pb_exhibition_proto_msgTypes[8]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
@ -639,7 +686,7 @@ func (x *ExportRecordResp) String() string {
|
|||||||
func (*ExportRecordResp) ProtoMessage() {}
|
func (*ExportRecordResp) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *ExportRecordResp) ProtoReflect() protoreflect.Message {
|
func (x *ExportRecordResp) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pb_exhibition_proto_msgTypes[7]
|
mi := &file_pb_exhibition_proto_msgTypes[8]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
@ -652,7 +699,7 @@ func (x *ExportRecordResp) ProtoReflect() protoreflect.Message {
|
|||||||
|
|
||||||
// Deprecated: Use ExportRecordResp.ProtoReflect.Descriptor instead.
|
// Deprecated: Use ExportRecordResp.ProtoReflect.Descriptor instead.
|
||||||
func (*ExportRecordResp) Descriptor() ([]byte, []int) {
|
func (*ExportRecordResp) Descriptor() ([]byte, []int) {
|
||||||
return file_pb_exhibition_proto_rawDescGZIP(), []int{7}
|
return file_pb_exhibition_proto_rawDescGZIP(), []int{8}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *ExportRecordResp) GetData() []*ExportInfo {
|
func (x *ExportRecordResp) GetData() []*ExportInfo {
|
||||||
@ -718,73 +765,80 @@ var file_pb_exhibition_proto_rawDesc = []byte{
|
|||||||
0x6d, 0x73, 0x67, 0x12, 0x2c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
|
0x6d, 0x73, 0x67, 0x12, 0x2c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||||||
0x0b, 0x32, 0x18, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52,
|
0x0b, 0x32, 0x18, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52,
|
||||||
0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74,
|
0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74,
|
||||||
0x61, 0x22, 0x87, 0x01, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
|
0x61, 0x22, 0x23, 0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x64, 0x43, 0x61, 0x72, 0x64,
|
||||||
0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01,
|
0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x12, 0x0a,
|
0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x87, 0x01, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x6f, 0x72,
|
||||||
0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67,
|
0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77,
|
||||||
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20,
|
0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f,
|
||||||
0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x18, 0x0a,
|
0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
|
||||||
0x07, 0x73, 0x6f, 0x72, 0x74, 0x4b, 0x65, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
|
|
||||||
0x73, 0x6f, 0x72, 0x74, 0x4b, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x18,
|
|
||||||
0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x22, 0x96, 0x01, 0x0a, 0x0e,
|
|
||||||
0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2c,
|
|
||||||
0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x65,
|
|
||||||
0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
|
|
||||||
0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05,
|
|
||||||
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75,
|
|
||||||
0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05,
|
|
||||||
0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
|
0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
|
||||||
0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
|
0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
|
||||||
0x7a, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
|
0x7a, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x6f, 0x72, 0x74, 0x4b, 0x65, 0x79, 0x18, 0x04, 0x20,
|
||||||
0x03, 0x6d, 0x73, 0x67, 0x22, 0x11, 0x0a, 0x0f, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65,
|
0x01, 0x28, 0x05, 0x52, 0x07, 0x73, 0x6f, 0x72, 0x74, 0x4b, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04,
|
||||||
0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x22, 0xbc, 0x02, 0x0a, 0x0a, 0x45, 0x78, 0x70, 0x6f,
|
0x73, 0x6f, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6f, 0x72, 0x74,
|
||||||
0x72, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74,
|
0x22, 0x96, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
|
||||||
0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x74, 0x69,
|
0x65, 0x73, 0x70, 0x12, 0x2c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28,
|
||||||
0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72,
|
0x0b, 0x32, 0x18, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52,
|
||||||
0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x1a,
|
0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74,
|
||||||
0x0a, 0x08, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
|
0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
|
||||||
0x52, 0x08, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x64,
|
0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18,
|
||||||
0x43, 0x61, 0x72, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69, 0x64, 0x43, 0x61,
|
0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70,
|
||||||
0x72, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x07, 0x20,
|
0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70,
|
||||||
0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x20, 0x0a, 0x0b,
|
0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x05,
|
||||||
0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28,
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x11, 0x0a, 0x0f, 0x45, 0x78, 0x70,
|
||||||
0x09, 0x52, 0x0b, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x12, 0x28,
|
0x6f, 0x72, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x22, 0xbc, 0x02, 0x0a,
|
||||||
0x0a, 0x0f, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x74,
|
0x0a, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x61,
|
||||||
0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x42,
|
0x72, 0x74, 0x69, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||||
0x61, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x72, 0x74, 0x69,
|
0x0a, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x67,
|
||||||
0x73, 0x74, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61,
|
0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x67, 0x65, 0x6e,
|
||||||
0x72, 0x74, 0x69, 0x73, 0x74, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x72,
|
0x64, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x18,
|
||||||
0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63,
|
0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x12,
|
||||||
0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x70, 0x64, 0x61,
|
0x16, 0x0a, 0x06, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||||
0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x75, 0x70, 0x64,
|
0x06, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65,
|
||||||
0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x50, 0x0a, 0x10, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74,
|
0x73, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
|
||||||
0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2a, 0x0a, 0x04, 0x64, 0x61,
|
0x73, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x50, 0x68, 0x6f, 0x74, 0x6f,
|
||||||
0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62,
|
0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x50, 0x68,
|
||||||
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x49, 0x6e, 0x66, 0x6f,
|
0x6f, 0x74, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x69, 0x64, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x63,
|
||||||
0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
|
0x6b, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x69, 0x64,
|
||||||
0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x32, 0xc4, 0x02, 0x0a, 0x0a, 0x45, 0x78, 0x68,
|
0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x12, 0x20, 0x0a,
|
||||||
0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
0x0b, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x18, 0x0a, 0x20, 0x01,
|
||||||
0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x18, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69,
|
0x28, 0x09, 0x52, 0x0b, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x50, 0x68, 0x6f, 0x74, 0x6f, 0x12,
|
||||||
0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x1a,
|
0x1c, 0x0a, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x0b, 0x20, 0x01,
|
||||||
0x1a, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65,
|
0x28, 0x09, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1c, 0x0a,
|
||||||
0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x52, 0x0a, 0x12, 0x53,
|
0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09,
|
||||||
0x61, 0x76, 0x65, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72,
|
0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x50, 0x0a, 0x10, 0x45,
|
||||||
0x64, 0x12, 0x18, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52,
|
0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12,
|
||||||
0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x22, 0x2e, 0x65, 0x78,
|
0x2a, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e,
|
||||||
0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x61, 0x76, 0x65, 0x52, 0x65, 0x67,
|
0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72,
|
||||||
0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12,
|
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x6d,
|
||||||
0x4b, 0x0a, 0x12, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72,
|
0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x32, 0x8a, 0x03,
|
||||||
0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x19, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69,
|
0x0a, 0x0a, 0x45, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x0a,
|
||||||
0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
|
0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x18, 0x2e, 0x65, 0x78, 0x68,
|
||||||
0x1a, 0x1a, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65,
|
0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
|
||||||
0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x51, 0x0a, 0x14,
|
0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x1a, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f,
|
||||||
0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65,
|
0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70,
|
||||||
0x63, 0x6f, 0x72, 0x64, 0x12, 0x1b, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f,
|
0x12, 0x52, 0x0a, 0x12, 0x53, 0x61, 0x76, 0x65, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
|
||||||
0x6e, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65,
|
0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x18, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74,
|
||||||
0x71, 0x1a, 0x1c, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x45,
|
0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
|
||||||
0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x42,
|
0x1a, 0x22, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x61,
|
||||||
0x11, 0x5a, 0x0f, 0x2e, 0x2f, 0x70, 0x62, 0x2f, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69,
|
0x76, 0x65, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
|
||||||
0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x52, 0x65, 0x73, 0x70, 0x12, 0x4b, 0x0a, 0x12, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
|
||||||
|
0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x19, 0x2e, 0x65, 0x78, 0x68,
|
||||||
|
0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69,
|
||||||
|
0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69,
|
||||||
|
0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
|
||||||
|
0x70, 0x12, 0x51, 0x0a, 0x14, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x67, 0x69, 0x73,
|
||||||
|
0x74, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x1b, 0x2e, 0x65, 0x78, 0x68, 0x69,
|
||||||
|
0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x63,
|
||||||
|
0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74,
|
||||||
|
0x69, 0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
|
||||||
|
0x52, 0x65, 0x73, 0x70, 0x12, 0x44, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x64, 0x43,
|
||||||
|
0x61, 0x72, 0x64, 0x12, 0x18, 0x2e, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e,
|
||||||
|
0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x1b, 0x2e,
|
||||||
|
0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
||||||
|
0x49, 0x64, 0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x42, 0x11, 0x5a, 0x0f, 0x2e, 0x2f,
|
||||||
|
0x70, 0x62, 0x2f, 0x65, 0x78, 0x68, 0x69, 0x62, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x62, 0x06, 0x70,
|
||||||
|
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -799,32 +853,35 @@ func file_pb_exhibition_proto_rawDescGZIP() []byte {
|
|||||||
return file_pb_exhibition_proto_rawDescData
|
return file_pb_exhibition_proto_rawDescData
|
||||||
}
|
}
|
||||||
|
|
||||||
var file_pb_exhibition_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
var file_pb_exhibition_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
|
||||||
var file_pb_exhibition_proto_goTypes = []interface{}{
|
var file_pb_exhibition_proto_goTypes = []interface{}{
|
||||||
(*RegisterInfo)(nil), // 0: exhibition.RegisterInfo
|
(*RegisterInfo)(nil), // 0: exhibition.RegisterInfo
|
||||||
(*SaveRegisterRecordResp)(nil), // 1: exhibition.SaveRegisterRecordResp
|
(*SaveRegisterRecordResp)(nil), // 1: exhibition.SaveRegisterRecordResp
|
||||||
(*CheckPhoneResp)(nil), // 2: exhibition.CheckPhoneResp
|
(*CheckPhoneResp)(nil), // 2: exhibition.CheckPhoneResp
|
||||||
(*RecordListReq)(nil), // 3: exhibition.RecordListReq
|
(*CheckIdCardResp)(nil), // 3: exhibition.CheckIdCardResp
|
||||||
(*RecordListResp)(nil), // 4: exhibition.RecordListResp
|
(*RecordListReq)(nil), // 4: exhibition.RecordListReq
|
||||||
(*ExportRecordReq)(nil), // 5: exhibition.ExportRecordReq
|
(*RecordListResp)(nil), // 5: exhibition.RecordListResp
|
||||||
(*ExportInfo)(nil), // 6: exhibition.ExportInfo
|
(*ExportRecordReq)(nil), // 6: exhibition.ExportRecordReq
|
||||||
(*ExportRecordResp)(nil), // 7: exhibition.ExportRecordResp
|
(*ExportInfo)(nil), // 7: exhibition.ExportInfo
|
||||||
|
(*ExportRecordResp)(nil), // 8: exhibition.ExportRecordResp
|
||||||
}
|
}
|
||||||
var file_pb_exhibition_proto_depIdxs = []int32{
|
var file_pb_exhibition_proto_depIdxs = []int32{
|
||||||
0, // 0: exhibition.SaveRegisterRecordResp.data:type_name -> exhibition.RegisterInfo
|
0, // 0: exhibition.SaveRegisterRecordResp.data:type_name -> exhibition.RegisterInfo
|
||||||
0, // 1: exhibition.CheckPhoneResp.data:type_name -> exhibition.RegisterInfo
|
0, // 1: exhibition.CheckPhoneResp.data:type_name -> exhibition.RegisterInfo
|
||||||
0, // 2: exhibition.RecordListResp.data:type_name -> exhibition.RegisterInfo
|
0, // 2: exhibition.RecordListResp.data:type_name -> exhibition.RegisterInfo
|
||||||
6, // 3: exhibition.ExportRecordResp.data:type_name -> exhibition.ExportInfo
|
7, // 3: exhibition.ExportRecordResp.data:type_name -> exhibition.ExportInfo
|
||||||
0, // 4: exhibition.Exhibition.CheckPhone:input_type -> exhibition.RegisterInfo
|
0, // 4: exhibition.Exhibition.CheckPhone:input_type -> exhibition.RegisterInfo
|
||||||
0, // 5: exhibition.Exhibition.SaveRegisterRecord:input_type -> exhibition.RegisterInfo
|
0, // 5: exhibition.Exhibition.SaveRegisterRecord:input_type -> exhibition.RegisterInfo
|
||||||
3, // 6: exhibition.Exhibition.RegisterRecordList:input_type -> exhibition.RecordListReq
|
4, // 6: exhibition.Exhibition.RegisterRecordList:input_type -> exhibition.RecordListReq
|
||||||
5, // 7: exhibition.Exhibition.ExportRegisterRecord:input_type -> exhibition.ExportRecordReq
|
6, // 7: exhibition.Exhibition.ExportRegisterRecord:input_type -> exhibition.ExportRecordReq
|
||||||
2, // 8: exhibition.Exhibition.CheckPhone:output_type -> exhibition.CheckPhoneResp
|
0, // 8: exhibition.Exhibition.CheckIdCard:input_type -> exhibition.RegisterInfo
|
||||||
1, // 9: exhibition.Exhibition.SaveRegisterRecord:output_type -> exhibition.SaveRegisterRecordResp
|
2, // 9: exhibition.Exhibition.CheckPhone:output_type -> exhibition.CheckPhoneResp
|
||||||
4, // 10: exhibition.Exhibition.RegisterRecordList:output_type -> exhibition.RecordListResp
|
1, // 10: exhibition.Exhibition.SaveRegisterRecord:output_type -> exhibition.SaveRegisterRecordResp
|
||||||
7, // 11: exhibition.Exhibition.ExportRegisterRecord:output_type -> exhibition.ExportRecordResp
|
5, // 11: exhibition.Exhibition.RegisterRecordList:output_type -> exhibition.RecordListResp
|
||||||
8, // [8:12] is the sub-list for method output_type
|
8, // 12: exhibition.Exhibition.ExportRegisterRecord:output_type -> exhibition.ExportRecordResp
|
||||||
4, // [4:8] is the sub-list for method input_type
|
3, // 13: exhibition.Exhibition.CheckIdCard:output_type -> exhibition.CheckIdCardResp
|
||||||
|
9, // [9:14] is the sub-list for method output_type
|
||||||
|
4, // [4:9] is the sub-list for method input_type
|
||||||
4, // [4:4] is the sub-list for extension type_name
|
4, // [4:4] is the sub-list for extension type_name
|
||||||
4, // [4:4] is the sub-list for extension extendee
|
4, // [4:4] is the sub-list for extension extendee
|
||||||
0, // [0:4] is the sub-list for field type_name
|
0, // [0:4] is the sub-list for field type_name
|
||||||
@ -873,7 +930,7 @@ func file_pb_exhibition_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pb_exhibition_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
file_pb_exhibition_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*RecordListReq); i {
|
switch v := v.(*CheckIdCardResp); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -885,7 +942,7 @@ func file_pb_exhibition_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pb_exhibition_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
file_pb_exhibition_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*RecordListResp); i {
|
switch v := v.(*RecordListReq); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -897,7 +954,7 @@ func file_pb_exhibition_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pb_exhibition_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
file_pb_exhibition_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*ExportRecordReq); i {
|
switch v := v.(*RecordListResp); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -909,7 +966,7 @@ func file_pb_exhibition_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pb_exhibition_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
file_pb_exhibition_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*ExportInfo); i {
|
switch v := v.(*ExportRecordReq); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
@ -921,6 +978,18 @@ func file_pb_exhibition_proto_init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pb_exhibition_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
file_pb_exhibition_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*ExportInfo); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_pb_exhibition_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*ExportRecordResp); i {
|
switch v := v.(*ExportRecordResp); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
@ -939,7 +1008,7 @@ func file_pb_exhibition_proto_init() {
|
|||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: file_pb_exhibition_proto_rawDesc,
|
RawDescriptor: file_pb_exhibition_proto_rawDesc,
|
||||||
NumEnums: 0,
|
NumEnums: 0,
|
||||||
NumMessages: 8,
|
NumMessages: 9,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 1,
|
NumServices: 1,
|
||||||
},
|
},
|
||||||
|
@ -36,6 +36,9 @@ func (this *CheckPhoneResp) Validate() error {
|
|||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
func (this *CheckIdCardResp) Validate() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
func (this *RecordListReq) Validate() error {
|
func (this *RecordListReq) Validate() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,7 @@ type ExhibitionClient interface {
|
|||||||
SaveRegisterRecord(ctx context.Context, in *RegisterInfo, opts ...grpc_go.CallOption) (*SaveRegisterRecordResp, common.ErrorWithAttachment)
|
SaveRegisterRecord(ctx context.Context, in *RegisterInfo, opts ...grpc_go.CallOption) (*SaveRegisterRecordResp, common.ErrorWithAttachment)
|
||||||
RegisterRecordList(ctx context.Context, in *RecordListReq, opts ...grpc_go.CallOption) (*RecordListResp, common.ErrorWithAttachment)
|
RegisterRecordList(ctx context.Context, in *RecordListReq, opts ...grpc_go.CallOption) (*RecordListResp, common.ErrorWithAttachment)
|
||||||
ExportRegisterRecord(ctx context.Context, in *ExportRecordReq, opts ...grpc_go.CallOption) (*ExportRecordResp, common.ErrorWithAttachment)
|
ExportRegisterRecord(ctx context.Context, in *ExportRecordReq, opts ...grpc_go.CallOption) (*ExportRecordResp, common.ErrorWithAttachment)
|
||||||
|
CheckIdCard(ctx context.Context, in *RegisterInfo, opts ...grpc_go.CallOption) (*CheckIdCardResp, common.ErrorWithAttachment)
|
||||||
}
|
}
|
||||||
|
|
||||||
type exhibitionClient struct {
|
type exhibitionClient struct {
|
||||||
@ -43,6 +44,7 @@ type ExhibitionClientImpl struct {
|
|||||||
SaveRegisterRecord func(ctx context.Context, in *RegisterInfo) (*SaveRegisterRecordResp, error)
|
SaveRegisterRecord func(ctx context.Context, in *RegisterInfo) (*SaveRegisterRecordResp, error)
|
||||||
RegisterRecordList func(ctx context.Context, in *RecordListReq) (*RecordListResp, error)
|
RegisterRecordList func(ctx context.Context, in *RecordListReq) (*RecordListResp, error)
|
||||||
ExportRegisterRecord func(ctx context.Context, in *ExportRecordReq) (*ExportRecordResp, error)
|
ExportRegisterRecord func(ctx context.Context, in *ExportRecordReq) (*ExportRecordResp, error)
|
||||||
|
CheckIdCard func(ctx context.Context, in *RegisterInfo) (*CheckIdCardResp, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *ExhibitionClientImpl) GetDubboStub(cc *triple.TripleConn) ExhibitionClient {
|
func (c *ExhibitionClientImpl) GetDubboStub(cc *triple.TripleConn) ExhibitionClient {
|
||||||
@ -81,6 +83,12 @@ func (c *exhibitionClient) ExportRegisterRecord(ctx context.Context, in *ExportR
|
|||||||
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/ExportRegisterRecord", in, out)
|
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/ExportRegisterRecord", in, out)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *exhibitionClient) CheckIdCard(ctx context.Context, in *RegisterInfo, opts ...grpc_go.CallOption) (*CheckIdCardResp, common.ErrorWithAttachment) {
|
||||||
|
out := new(CheckIdCardResp)
|
||||||
|
interfaceKey := ctx.Value(constant.InterfaceKey).(string)
|
||||||
|
return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/CheckIdCard", in, out)
|
||||||
|
}
|
||||||
|
|
||||||
// ExhibitionServer is the server API for Exhibition service.
|
// ExhibitionServer is the server API for Exhibition service.
|
||||||
// All implementations must embed UnimplementedExhibitionServer
|
// All implementations must embed UnimplementedExhibitionServer
|
||||||
// for forward compatibility
|
// for forward compatibility
|
||||||
@ -89,6 +97,7 @@ type ExhibitionServer interface {
|
|||||||
SaveRegisterRecord(context.Context, *RegisterInfo) (*SaveRegisterRecordResp, error)
|
SaveRegisterRecord(context.Context, *RegisterInfo) (*SaveRegisterRecordResp, error)
|
||||||
RegisterRecordList(context.Context, *RecordListReq) (*RecordListResp, error)
|
RegisterRecordList(context.Context, *RecordListReq) (*RecordListResp, error)
|
||||||
ExportRegisterRecord(context.Context, *ExportRecordReq) (*ExportRecordResp, error)
|
ExportRegisterRecord(context.Context, *ExportRecordReq) (*ExportRecordResp, error)
|
||||||
|
CheckIdCard(context.Context, *RegisterInfo) (*CheckIdCardResp, error)
|
||||||
mustEmbedUnimplementedExhibitionServer()
|
mustEmbedUnimplementedExhibitionServer()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,6 +118,9 @@ func (UnimplementedExhibitionServer) RegisterRecordList(context.Context, *Record
|
|||||||
func (UnimplementedExhibitionServer) ExportRegisterRecord(context.Context, *ExportRecordReq) (*ExportRecordResp, error) {
|
func (UnimplementedExhibitionServer) ExportRegisterRecord(context.Context, *ExportRecordReq) (*ExportRecordResp, error) {
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method ExportRegisterRecord not implemented")
|
return nil, status.Errorf(codes.Unimplemented, "method ExportRegisterRecord not implemented")
|
||||||
}
|
}
|
||||||
|
func (UnimplementedExhibitionServer) CheckIdCard(context.Context, *RegisterInfo) (*CheckIdCardResp, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method CheckIdCard not implemented")
|
||||||
|
}
|
||||||
func (s *UnimplementedExhibitionServer) XXX_SetProxyImpl(impl protocol.Invoker) {
|
func (s *UnimplementedExhibitionServer) XXX_SetProxyImpl(impl protocol.Invoker) {
|
||||||
s.proxyImpl = impl
|
s.proxyImpl = impl
|
||||||
}
|
}
|
||||||
@ -253,6 +265,35 @@ func _Exhibition_ExportRegisterRecord_Handler(srv interface{}, ctx context.Conte
|
|||||||
return interceptor(ctx, in, info, handler)
|
return interceptor(ctx, in, info, handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func _Exhibition_CheckIdCard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc_go.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(RegisterInfo)
|
||||||
|
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("CheckIdCard", 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)
|
||||||
|
}
|
||||||
|
|
||||||
// Exhibition_ServiceDesc is the grpc_go.ServiceDesc for Exhibition service.
|
// Exhibition_ServiceDesc is the grpc_go.ServiceDesc for Exhibition service.
|
||||||
// It's only intended for direct use with grpc_go.RegisterService,
|
// It's only intended for direct use with grpc_go.RegisterService,
|
||||||
// and not to be introspected or modified (even as a copy)
|
// and not to be introspected or modified (even as a copy)
|
||||||
@ -276,6 +317,10 @@ var Exhibition_ServiceDesc = grpc_go.ServiceDesc{
|
|||||||
MethodName: "ExportRegisterRecord",
|
MethodName: "ExportRegisterRecord",
|
||||||
Handler: _Exhibition_ExportRegisterRecord_Handler,
|
Handler: _Exhibition_ExportRegisterRecord_Handler,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
MethodName: "CheckIdCard",
|
||||||
|
Handler: _Exhibition_CheckIdCard_Handler,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Streams: []grpc_go.StreamDesc{},
|
Streams: []grpc_go.StreamDesc{},
|
||||||
Metadata: "pb/exhibition.proto",
|
Metadata: "pb/exhibition.proto",
|
||||||
|
@ -1098,3 +1098,180 @@
|
|||||||
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:14:04.939+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=13196®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708585771&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:14:04.939+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=13196®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708585771&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:14:04.939+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:14:04.939+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
|
||||||
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:14:04.939+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:14:04.939+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:25:12.017+0800","caller":"config/root_config.go:131","message":"[Config Center] Config center doesn't start"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-22T15:25:12.018+0800","caller":"common/rpc_service.go:373","message":"method Resume of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-22T15:25:12.018+0800","caller":"common/rpc_service.go:373","message":"method SetServingStatus of mtype func(*health.DubbogoHealthServer, string, triple_health_v1.HealthCheckResponse_ServingStatus) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-22T15:25:12.018+0800","caller":"common/rpc_service.go:373","message":"method Shutdown of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:25:12.018+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=476®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708586712&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:25:12.020+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=476®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708586712&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:25:12.020+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=476®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708586712&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:25:12.020+0800","caller":"zookeeper/registry.go:67","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:10s 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":"2024-02-22T15:25:12.020+0800","caller":"zookeeper/client.go:53","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 5s"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:25:12.029+0800","caller":"zookeeper/registry.go:222","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.Exhibition/providers, node = tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D476%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708586712"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:25:12.036+0800","caller":"zookeeper/listener.go:373","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.Exhibition/providers}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:25:12.037+0800","caller":"dubbo/dubbo_protocol.go:84","message":"[DUBBO Protocol] Export service: dubbo://:9313/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=476®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708586712&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":"2024-02-22T15:25:12.037+0800","caller":"configurable/exporter.go:80","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:9313/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=476®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708586712&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":"2024-02-22T15:43:07.850+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:07.851+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:07.854+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":"2024-02-22T15:43:07.854+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D476%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708586712, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-22T15:43:07.854+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D476%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708586712, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:07.854+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D476%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708586712}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:07.854+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D476%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708586712}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-22T15:43:07.854+0800","caller":"zookeeper/listener.go:215","message":"delete zkNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D476%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708586712}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-22T15:43:07.854+0800","caller":"zookeeper/listener.go:319","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D476%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708586712}) goroutine exit now"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-22T15:43:07.855+0800","caller":"zookeeper/listener.go:232","message":"delete oldNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D476%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708586712}"}
|
||||||
|
{"level":"\u001b[31mERROR\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"config/graceful_shutdown_config.go:110","message":"The OfflineRequestWindowTimeout configuration is invalid: , and we will use the default value: 3s, err: time: invalid duration \"\""}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"config/graceful_shutdown.go:196","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=476®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708586712&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=476®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708586712&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=476®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708586712&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-22T15:43:10.864+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:03:05.838+0800","caller":"config/root_config.go:131","message":"[Config Center] Config center doesn't start"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:03:05.840+0800","caller":"common/rpc_service.go:373","message":"method Resume of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:03:05.840+0800","caller":"common/rpc_service.go:373","message":"method SetServingStatus of mtype func(*health.DubbogoHealthServer, string, triple_health_v1.HealthCheckResponse_ServingStatus) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:03:05.840+0800","caller":"common/rpc_service.go:373","message":"method Shutdown of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:03:05.840+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=10996®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657385&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:03:05.840+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=10996®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657385&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:03:05.841+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=10996®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657385&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:03:05.841+0800","caller":"zookeeper/registry.go:67","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:10s 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":"2024-02-23T11:03:05.841+0800","caller":"zookeeper/client.go:53","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 5s"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:03:05.885+0800","caller":"zookeeper/registry.go:222","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.Exhibition/providers, node = tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10996%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657385"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:03:05.899+0800","caller":"zookeeper/listener.go:373","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.Exhibition/providers}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:03:05.899+0800","caller":"dubbo/dubbo_protocol.go:84","message":"[DUBBO Protocol] Export service: dubbo://:8815/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=10996®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657385&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":"2024-02-23T11:03:05.900+0800","caller":"configurable/exporter.go:80","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:8815/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=10996®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657385&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":"2024-02-23T11:05:22.289+0800","caller":"proxy_factory/default.go:146","message":"Invoke function error: runtime error: invalid memory address or nil pointer dereference, service: &common.URL{noCopy:common.noCopy{}, baseURL:common.baseURL{Protocol:\"tri\", Location:\":21502\", Ip:\"\", Port:\"21502\", PrimitiveURL:\"\"}, paramsLock:sync.RWMutex{w:sync.Mutex{state:0, sema:0x0}, writerSem:0x0, readerSem:0x0, readerCount:atomic.Int32{_:atomic.noCopy{}, v:0}, readerWait:atomic.Int32{_:atomic.noCopy{}, v:0}}, params:url.Values{\"accesslog\":[]string{\"\"}, \"app.version\":[]string{\"\"}, \"application\":[]string{\"dubbo.io\"}, \"auth\":[]string{\"\"}, \"bean.name\":[]string{\"ExhibitionProvider\"}, \"cluster\":[]string{\"failover\"}, \"config.tracing\":[]string{\"\"}, \"environment\":[]string{\"\"}, \"execute.limit\":[]string{\"\"}, \"execute.limit.rejected.handler\":[]string{\"\"}, \"export\":[]string{\"true\"}, \"interface\":[]string{\"com.fontree.microservices.common.Exhibition\"}, \"loadbalance\":[]string{\"random\"}, \"message_size\":[]string{\"4\"}, \"metadata-type\":[]string{\"local\"}, \"module\":[]string{\"sample\"}, \"name\":[]string{\"dubbo.io\"}, \"organization\":[]string{\"dubbo-go\"}, \"owner\":[]string{\"dubbo-go\"}, \"param.sign\":[]string{\"\"}, \"pid\":[]string{\"10996\"}, \"registry\":[]string{\"zookeeper\"}, \"registry.role\":[]string{\"3\"}, \"release\":[]string{\"dubbo-golang-3.0.4\"}, \"retries\":[]string{\"100\"}, \"serialization\":[]string{\"\"}, \"service.filter\":[]string{\"echo,metrics,token,accesslog,tps,generic_service,execute,pshutdown\"}, \"side\":[]string{\"provider\"}, \"timestamp\":[]string{\"1708657385\"}, \"tps.limit.interval\":[]string{\"\"}, \"tps.limit.rate\":[]string{\"\"}, \"tps.limit.rejected.handler\":[]string{\"\"}, \"tps.limit.strategy\":[]string{\"\"}, \"tps.limiter\":[]string{\"\"}, \"warmup\":[]string{\"\"}}, Path:\"/com.fontree.microservices.common.Exhibition\", Username:\"\", Password:\"\", Methods:[]string{\"CheckIdCard\", \"CheckPhone\", \"ExportRegisterRecord\", \"RegisterRecordList\", \"SaveRegisterRecord\"}, SubURL:(*common.URL)(nil)}"}
|
||||||
|
{"level":"\u001b[31mERROR\u001b[0m","time":"2024-02-23T11:05:22.303+0800","caller":"proxy_factory/default.go:146","message":"Invoke function error: runtime error: invalid memory address or nil pointer dereference, service: &common.URL{noCopy:common.noCopy{}, baseURL:common.baseURL{Protocol:\"tri\", Location:\":21502\", Ip:\"\", Port:\"21502\", PrimitiveURL:\"\"}, paramsLock:sync.RWMutex{w:sync.Mutex{state:0, sema:0x0}, writerSem:0x0, readerSem:0x0, readerCount:atomic.Int32{_:atomic.noCopy{}, v:0}, readerWait:atomic.Int32{_:atomic.noCopy{}, v:0}}, params:url.Values{\"accesslog\":[]string{\"\"}, \"app.version\":[]string{\"\"}, \"application\":[]string{\"dubbo.io\"}, \"auth\":[]string{\"\"}, \"bean.name\":[]string{\"ExhibitionProvider\"}, \"cluster\":[]string{\"failover\"}, \"config.tracing\":[]string{\"\"}, \"environment\":[]string{\"\"}, \"execute.limit\":[]string{\"\"}, \"execute.limit.rejected.handler\":[]string{\"\"}, \"export\":[]string{\"true\"}, \"interface\":[]string{\"com.fontree.microservices.common.Exhibition\"}, \"loadbalance\":[]string{\"random\"}, \"message_size\":[]string{\"4\"}, \"metadata-type\":[]string{\"local\"}, \"module\":[]string{\"sample\"}, \"name\":[]string{\"dubbo.io\"}, \"organization\":[]string{\"dubbo-go\"}, \"owner\":[]string{\"dubbo-go\"}, \"param.sign\":[]string{\"\"}, \"pid\":[]string{\"10996\"}, \"registry\":[]string{\"zookeeper\"}, \"registry.role\":[]string{\"3\"}, \"release\":[]string{\"dubbo-golang-3.0.4\"}, \"retries\":[]string{\"100\"}, \"serialization\":[]string{\"\"}, \"service.filter\":[]string{\"echo,metrics,token,accesslog,tps,generic_service,execute,pshutdown\"}, \"side\":[]string{\"provider\"}, \"timestamp\":[]string{\"1708657385\"}, \"tps.limit.interval\":[]string{\"\"}, \"tps.limit.rate\":[]string{\"\"}, \"tps.limit.rejected.handler\":[]string{\"\"}, \"tps.limit.strategy\":[]string{\"\"}, \"tps.limiter\":[]string{\"\"}, \"warmup\":[]string{\"\"}}, Path:\"/com.fontree.microservices.common.Exhibition\", Username:\"\", Password:\"\", Methods:[]string{\"CheckIdCard\", \"CheckPhone\", \"ExportRegisterRecord\", \"RegisterRecordList\", \"SaveRegisterRecord\"}, SubURL:(*common.URL)(nil)}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:53.448+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:53.448+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:05:53.453+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10996%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657385, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:05:53.453+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10996%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657385, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:53.453+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10996%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657385}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:53.453+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10996%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657385}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:05:53.453+0800","caller":"zookeeper/listener.go:215","message":"delete zkNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10996%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657385}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:05:53.453+0800","caller":"zookeeper/listener.go:319","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10996%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657385}) goroutine exit now"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:53.453+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":"2024-02-23T11:05:53.455+0800","caller":"zookeeper/listener.go:232","message":"delete oldNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10996%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657385}"}
|
||||||
|
{"level":"\u001b[31mERROR\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"config/graceful_shutdown_config.go:110","message":"The OfflineRequestWindowTimeout configuration is invalid: , and we will use the default value: 3s, err: time: invalid duration \"\""}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"config/graceful_shutdown.go:196","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=10996®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657385&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=10996®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657385&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=10996®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657385&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:05:56.465+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:10:13.695+0800","caller":"config/root_config.go:131","message":"[Config Center] Config center doesn't start"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:10:13.696+0800","caller":"common/rpc_service.go:373","message":"method Resume of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:10:13.696+0800","caller":"common/rpc_service.go:373","message":"method SetServingStatus of mtype func(*health.DubbogoHealthServer, string, triple_health_v1.HealthCheckResponse_ServingStatus) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:10:13.696+0800","caller":"common/rpc_service.go:373","message":"method Shutdown of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:10:13.696+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=10152®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657813&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:10:13.697+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=10152®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657813&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:10:13.697+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=10152®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657813&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:10:13.697+0800","caller":"zookeeper/registry.go:67","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:10s 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":"2024-02-23T11:10:13.697+0800","caller":"zookeeper/client.go:53","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 5s"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:10:13.709+0800","caller":"zookeeper/registry.go:222","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.Exhibition/providers, node = tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10152%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657813"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:10:13.716+0800","caller":"zookeeper/listener.go:373","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.Exhibition/providers}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:10:13.717+0800","caller":"dubbo/dubbo_protocol.go:84","message":"[DUBBO Protocol] Export service: dubbo://:8899/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=10152®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657813&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":"2024-02-23T11:10:13.717+0800","caller":"configurable/exporter.go:80","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:8899/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=10152®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657813&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":"2024-02-23T11:14:21.255+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:21.255+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:21.259+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":"2024-02-23T11:14:21.259+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10152%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657813, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:14:21.259+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10152%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657813, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:21.259+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10152%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657813}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:21.259+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10152%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657813}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:14:21.259+0800","caller":"zookeeper/listener.go:215","message":"delete zkNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10152%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657813}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:14:21.259+0800","caller":"zookeeper/listener.go:319","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10152%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657813}) goroutine exit now"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:14:21.260+0800","caller":"zookeeper/listener.go:232","message":"delete oldNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D10152%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708657813}"}
|
||||||
|
{"level":"\u001b[31mERROR\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"config/graceful_shutdown_config.go:110","message":"The OfflineRequestWindowTimeout configuration is invalid: , and we will use the default value: 3s, err: time: invalid duration \"\""}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"config/graceful_shutdown.go:196","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=10152®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657813&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=10152®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657813&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=10152®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708657813&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:24.270+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:30.778+0800","caller":"config/root_config.go:131","message":"[Config Center] Config center doesn't start"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:14:30.778+0800","caller":"common/rpc_service.go:373","message":"method Resume of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:14:30.778+0800","caller":"common/rpc_service.go:373","message":"method SetServingStatus of mtype func(*health.DubbogoHealthServer, string, triple_health_v1.HealthCheckResponse_ServingStatus) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:14:30.778+0800","caller":"common/rpc_service.go:373","message":"method Shutdown of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:30.778+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=5268®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658070&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:30.779+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=5268®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658070&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:30.779+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=5268®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658070&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:30.779+0800","caller":"zookeeper/registry.go:67","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:10s 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":"2024-02-23T11:14:30.779+0800","caller":"zookeeper/client.go:53","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 5s"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:30.790+0800","caller":"zookeeper/registry.go:222","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.Exhibition/providers, node = tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D5268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658070"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:30.798+0800","caller":"zookeeper/listener.go:373","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.Exhibition/providers}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:14:30.798+0800","caller":"dubbo/dubbo_protocol.go:84","message":"[DUBBO Protocol] Export service: dubbo://:8947/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=5268®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658070&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":"2024-02-23T11:14:30.799+0800","caller":"configurable/exporter.go:80","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:8947/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=5268®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658070&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":"2024-02-23T11:19:02.567+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:02.567+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:02.571+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":"2024-02-23T11:19:02.571+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D5268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658070, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:19:02.571+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D5268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658070, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:02.571+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D5268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658070}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:02.571+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D5268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658070}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:19:02.571+0800","caller":"zookeeper/listener.go:215","message":"delete zkNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D5268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658070}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:19:02.571+0800","caller":"zookeeper/listener.go:319","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D5268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658070}) goroutine exit now"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:19:02.572+0800","caller":"zookeeper/listener.go:232","message":"delete oldNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D5268%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658070}"}
|
||||||
|
{"level":"\u001b[31mERROR\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"config/graceful_shutdown_config.go:110","message":"The OfflineRequestWindowTimeout configuration is invalid: , and we will use the default value: 3s, err: time: invalid duration \"\""}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"config/graceful_shutdown.go:196","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=5268®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658070&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=5268®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658070&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=5268®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658070&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:19:05.579+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:22:50.974+0800","caller":"config/root_config.go:131","message":"[Config Center] Config center doesn't start"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:22:50.974+0800","caller":"common/rpc_service.go:373","message":"method Resume of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:22:50.974+0800","caller":"common/rpc_service.go:373","message":"method SetServingStatus of mtype func(*health.DubbogoHealthServer, string, triple_health_v1.HealthCheckResponse_ServingStatus) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:22:50.974+0800","caller":"common/rpc_service.go:373","message":"method Shutdown of mtype func(*health.DubbogoHealthServer) has wrong number of in out parameters 0; needs exactly 1/2"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:22:50.974+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=9264®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658570&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:22:50.975+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=9264®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658570&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:22:50.975+0800","caller":"dubbo3/dubbo3_protocol.go:82","message":"[Triple Protocol] Export service: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=9264®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658570&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:22:50.975+0800","caller":"zookeeper/registry.go:67","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:10s 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":"2024-02-23T11:22:50.975+0800","caller":"zookeeper/client.go:53","message":"[Zookeeper Client] New zookeeper client with name = 127.0.0.1:2181, zkAddress = 127.0.0.1:2181, timeout = 5s"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:22:50.987+0800","caller":"zookeeper/registry.go:222","message":"[Zookeeper Registry] Registry instance with root = /dubbo/com.fontree.microservices.common.Exhibition/providers, node = tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D9264%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658570"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:22:50.996+0800","caller":"zookeeper/listener.go:373","message":"[Zookeeper Listener] listen dubbo path{/dubbo/com.fontree.microservices.common.Exhibition/providers}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:22:50.996+0800","caller":"dubbo/dubbo_protocol.go:84","message":"[DUBBO Protocol] Export service: dubbo://:9015/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=9264®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658570&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":"2024-02-23T11:22:50.997+0800","caller":"configurable/exporter.go:80","message":"[Metadata Service] The MetadataService exports urls : [dubbo://:9015/org.apache.dubbo.metadata.MetadataService?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=MetadataService&cluster=&config.tracing=&environment=&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¶m.sign=&pid=9264®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658570&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":"2024-02-23T11:24:09.391+0800","caller":"config/graceful_shutdown.go:81","message":"get signal interrupt, applicationConfig will shutdown."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:09.391+0800","caller":"config/graceful_shutdown.go:121","message":"Graceful shutdown --- Destroy all registriesConfig. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:09.394+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":"2024-02-23T11:24:09.394+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D9264%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658570, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:24:09.394+0800","caller":"zookeeper/listener.go:146","message":"get a zookeeper keyEventCh{type:EventNodeDeleted, server:, path:/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D9264%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658570, state:3-zookeeper connected, err:%!s(<nil>)}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:09.395+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D9264%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658570}"}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:09.395+0800","caller":"zookeeper/listener.go:172","message":"[ZkEventListener][listenServiceNodeEvent]Get a EventNodeDeleted event for path {/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D9264%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658570}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:24:09.395+0800","caller":"zookeeper/listener.go:215","message":"delete zkNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D9264%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658570}"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:24:09.395+0800","caller":"zookeeper/listener.go:319","message":"listenDirEvent->listenSelf(zk path{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D9264%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658570}) goroutine exit now"}
|
||||||
|
{"level":"\u001b[33mWARN\u001b[0m","time":"2024-02-23T11:24:09.395+0800","caller":"zookeeper/listener.go:232","message":"delete oldNode{/dubbo/com.fontree.microservices.common.Exhibition/providers/tri%3A%2F%2F172.30.96.1%3A21502%2Fcom.fontree.microservices.common.Exhibition%3Fanyhost%3Dtrue%26application%3Ddubbo.io%26bean.name%3DExhibitionProvider%26cluster%3Dfailover%26export%3Dtrue%26interface%3Dcom.fontree.microservices.common.Exhibition%26loadbalance%3Drandom%26message_size%3D4%26metadata-type%3Dlocal%26methods%3DCheckIdCard%2CCheckPhone%2CExportRegisterRecord%2CRegisterRecordList%2CSaveRegisterRecord%26module%3Dsample%26name%3Ddubbo.io%26organization%3Ddubbo-go%26owner%3Ddubbo-go%26pid%3D9264%26registry%3Dzookeeper%26registry.role%3D3%26release%3Ddubbo-golang-3.0.4%26retries%3D100%26service.filter%3Decho%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown%26side%3Dprovider%26timestamp%3D1708658570}"}
|
||||||
|
{"level":"\u001b[31mERROR\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"config/graceful_shutdown_config.go:110","message":"The OfflineRequestWindowTimeout configuration is invalid: , and we will use the default value: 3s, err: time: invalid duration \"\""}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"config/graceful_shutdown.go:196","message":"Graceful shutdown --- Keep waiting until sending/accepting requests finish or timeout. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"config/graceful_shutdown.go:129","message":"Graceful shutdown --- Destroy protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"config/graceful_shutdown.go:144","message":"Graceful shutdown --- First destroy provider's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.health.v1.Health?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoHealthServer&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=grpc.health.v1.Health&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=9264®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658570&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/grpc.reflection.v1alpha.ServerReflection?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=DubbogoServerReflectionServer&cluster=failover&config.tracing=&environment=&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¶m.sign=&pid=9264®istry.role=3&release=dubbo-golang-3.0.4&retries=&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658570&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"protocol/protocol.go:142","message":"Exporter unexport."}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"protocol/invoker.go:92","message":"Destroy invoker: tri://:21502/com.fontree.microservices.common.Exhibition?accesslog=&app.version=&application=dubbo.io&auth=&bean.name=ExhibitionProvider&cluster=failover&config.tracing=&environment=&execute.limit=&execute.limit.rejected.handler=&export=true&interface=com.fontree.microservices.common.Exhibition&loadbalance=random&message_size=4&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go¶m.sign=&pid=9264®istry=zookeeper®istry.role=3&release=dubbo-golang-3.0.4&retries=100&serialization=&service.filter=echo%2Cmetrics%2Ctoken%2Caccesslog%2Ctps%2Cgeneric_service%2Cexecute%2Cpshutdown&side=provider×tamp=1708658570&tps.limit.interval=&tps.limit.rate=&tps.limit.rejected.handler=&tps.limit.strategy=&tps.limiter=&warmup="}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"config/graceful_shutdown.go:155","message":"Graceful shutdown --- Second Destroy consumer's protocols. "}
|
||||||
|
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-02-23T11:24:12.409+0800","caller":"config/graceful_shutdown.go:113","message":"Graceful shutdown --- Execute the custom callbacks."}
|
||||||
|
Loading…
Reference in New Issue
Block a user