Documentation
¶
Overview ¶
Package pb is a generated protocol buffer package.
It is generated from these files:
raft.proto raftkv.proto
It has these top-level messages:
AppendEntriesReq AppendEntriesRes RequestVoteReq RequestVoteRes KVCommand Session GetReq GetRes PutReq PutRes OpenSessionReq OpenSessionRes
Index ¶
- Variables
- func RegisterRaftKVServer(s *grpc.Server, srv RaftKVServer)
- func RegisterRaftServer(s *grpc.Server, srv RaftServer)
- type AppendEntriesReq
- func (*AppendEntriesReq) Descriptor() ([]byte, []int)
- func (m *AppendEntriesReq) GetLeaderCommit() int32
- func (m *AppendEntriesReq) GetLeaderId() int32
- func (m *AppendEntriesReq) GetLogEntries() []*KVCommand
- func (m *AppendEntriesReq) GetPrevLogIndex() int32
- func (m *AppendEntriesReq) GetPrevLogTerm() int32
- func (m *AppendEntriesReq) GetTerm() int32
- func (*AppendEntriesReq) ProtoMessage()
- func (m *AppendEntriesReq) Reset()
- func (m *AppendEntriesReq) String() string
- type AppendEntriesRes
- type CommandType
- type GetReq
- type GetRes
- type KVCommand
- func (*KVCommand) Descriptor() ([]byte, []int)
- func (m *KVCommand) GetCmdType() CommandType
- func (m *KVCommand) GetCommand() isKVCommand_Command
- func (m *KVCommand) GetGetCommand() *GetReq
- func (m *KVCommand) GetIndex() int32
- func (m *KVCommand) GetNoop() []byte
- func (m *KVCommand) GetPutCommand() *PutReq
- func (m *KVCommand) GetTerm() int32
- func (m *KVCommand) GetTimestamp() int64
- func (*KVCommand) ProtoMessage()
- func (m *KVCommand) Reset()
- func (m *KVCommand) String() string
- func (*KVCommand) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, ...)
- type KVCommand_GetCommand
- type KVCommand_Noop
- type KVCommand_PutCommand
- type OpenSessionReq
- type OpenSessionRes
- type PutReq
- type PutRes
- type RaftClient
- type RaftKVClient
- type RaftKVServer
- type RaftRole
- type RaftServer
- type RequestVoteReq
- func (*RequestVoteReq) Descriptor() ([]byte, []int)
- func (m *RequestVoteReq) GetCandidateId() int32
- func (m *RequestVoteReq) GetLastLogIndex() int32
- func (m *RequestVoteReq) GetLastLogTerm() int32
- func (m *RequestVoteReq) GetTerm() int32
- func (*RequestVoteReq) ProtoMessage()
- func (m *RequestVoteReq) Reset()
- func (m *RequestVoteReq) String() string
- type RequestVoteRes
- type Session
- type Status
Constants ¶
This section is empty.
Variables ¶
View Source
var CommandType_name = map[int32]string{
0: "Noop",
1: "Get",
2: "Put",
}
View Source
var CommandType_value = map[string]int32{
"Noop": 0,
"Get": 1,
"Put": 2,
}
View Source
var RaftRole_name = map[int32]string{
0: "Follower",
1: "Candidate",
2: "Leader",
}
View Source
var RaftRole_value = map[string]int32{
"Follower": 0,
"Candidate": 1,
"Leader": 2,
}
View Source
var Status_name = map[int32]string{
0: "OK",
1: "Timeout",
2: "NoSuchKey",
3: "NotLeader",
4: "NoSession",
}
View Source
var Status_value = map[string]int32{
"OK": 0,
"Timeout": 1,
"NoSuchKey": 2,
"NotLeader": 3,
"NoSession": 4,
}
Functions ¶
func RegisterRaftKVServer ¶
func RegisterRaftKVServer(s *grpc.Server, srv RaftKVServer)
func RegisterRaftServer ¶
func RegisterRaftServer(s *grpc.Server, srv RaftServer)
Types ¶
type AppendEntriesReq ¶
type AppendEntriesReq struct { Term int32 `protobuf:"varint,1,opt,name=term" json:"term,omitempty"` LeaderId int32 `protobuf:"varint,2,opt,name=leader_id,json=leaderId" json:"leader_id,omitempty"` PrevLogIndex int32 `protobuf:"varint,3,opt,name=prev_log_index,json=prevLogIndex" json:"prev_log_index,omitempty"` PrevLogTerm int32 `protobuf:"varint,4,opt,name=prev_log_term,json=prevLogTerm" json:"prev_log_term,omitempty"` LogEntries []*KVCommand `protobuf:"bytes,5,rep,name=log_entries,json=logEntries" json:"log_entries,omitempty"` LeaderCommit int32 `protobuf:"varint,6,opt,name=leader_commit,json=leaderCommit" json:"leader_commit,omitempty"` }
func (*AppendEntriesReq) Descriptor ¶
func (*AppendEntriesReq) Descriptor() ([]byte, []int)
func (*AppendEntriesReq) GetLeaderCommit ¶
func (m *AppendEntriesReq) GetLeaderCommit() int32
func (*AppendEntriesReq) GetLeaderId ¶
func (m *AppendEntriesReq) GetLeaderId() int32
func (*AppendEntriesReq) GetLogEntries ¶
func (m *AppendEntriesReq) GetLogEntries() []*KVCommand
func (*AppendEntriesReq) GetPrevLogIndex ¶
func (m *AppendEntriesReq) GetPrevLogIndex() int32
func (*AppendEntriesReq) GetPrevLogTerm ¶
func (m *AppendEntriesReq) GetPrevLogTerm() int32
func (*AppendEntriesReq) GetTerm ¶
func (m *AppendEntriesReq) GetTerm() int32
func (*AppendEntriesReq) ProtoMessage ¶
func (*AppendEntriesReq) ProtoMessage()
func (*AppendEntriesReq) Reset ¶
func (m *AppendEntriesReq) Reset()
func (*AppendEntriesReq) String ¶
func (m *AppendEntriesReq) String() string
type AppendEntriesRes ¶
type AppendEntriesRes struct { Term int32 `protobuf:"varint,1,opt,name=term" json:"term,omitempty"` Success bool `protobuf:"varint,2,opt,name=success" json:"success,omitempty"` }
func (*AppendEntriesRes) Descriptor ¶
func (*AppendEntriesRes) Descriptor() ([]byte, []int)
func (*AppendEntriesRes) GetSuccess ¶
func (m *AppendEntriesRes) GetSuccess() bool
func (*AppendEntriesRes) GetTerm ¶
func (m *AppendEntriesRes) GetTerm() int32
func (*AppendEntriesRes) ProtoMessage ¶
func (*AppendEntriesRes) ProtoMessage()
func (*AppendEntriesRes) Reset ¶
func (m *AppendEntriesRes) Reset()
func (*AppendEntriesRes) String ¶
func (m *AppendEntriesRes) String() string
type CommandType ¶
type CommandType int32
const ( CommandType_Noop CommandType = 0 CommandType_Get CommandType = 1 CommandType_Put CommandType = 2 )
func (CommandType) EnumDescriptor ¶
func (CommandType) EnumDescriptor() ([]byte, []int)
func (CommandType) String ¶
func (x CommandType) String() string
type GetReq ¶
type GetReq struct { Session *Session `protobuf:"bytes,1,opt,name=session" json:"session,omitempty"` Key string `protobuf:"bytes,2,opt,name=key" json:"key,omitempty"` }
func (*GetReq) Descriptor ¶
func (*GetReq) GetSession ¶
func (*GetReq) ProtoMessage ¶
func (*GetReq) ProtoMessage()
type GetRes ¶
type GetRes struct { Status Status `protobuf:"varint,1,opt,name=status,enum=pb.Status" json:"status,omitempty"` Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"` }
func (*GetRes) Descriptor ¶
func (*GetRes) ProtoMessage ¶
func (*GetRes) ProtoMessage()
type KVCommand ¶
type KVCommand struct { CmdType CommandType `protobuf:"varint,1,opt,name=cmd_type,json=cmdType,enum=pb.CommandType" json:"cmd_type,omitempty"` // Types that are valid to be assigned to Command: // *KVCommand_GetCommand // *KVCommand_PutCommand // *KVCommand_Noop Command isKVCommand_Command `protobuf_oneof:"command"` Term int32 `protobuf:"varint,5,opt,name=term" json:"term,omitempty"` Index int32 `protobuf:"varint,6,opt,name=index" json:"index,omitempty"` Timestamp int64 `protobuf:"varint,7,opt,name=timestamp" json:"timestamp,omitempty"` }
command for KV, it will be replicated to peers, stored in log, and applied to KVStorage
func (*KVCommand) Descriptor ¶
func (*KVCommand) GetCmdType ¶
func (m *KVCommand) GetCmdType() CommandType
func (*KVCommand) GetCommand ¶
func (m *KVCommand) GetCommand() isKVCommand_Command
func (*KVCommand) GetGetCommand ¶
func (*KVCommand) GetPutCommand ¶
func (*KVCommand) GetTimestamp ¶
func (*KVCommand) ProtoMessage ¶
func (*KVCommand) ProtoMessage()
type KVCommand_GetCommand ¶
type KVCommand_GetCommand struct {
GetCommand *GetReq `protobuf:"bytes,2,opt,name=get_command,json=getCommand,oneof"`
}
type KVCommand_Noop ¶
type KVCommand_Noop struct {
Noop []byte `protobuf:"bytes,4,opt,name=noop,proto3,oneof"`
}
type KVCommand_PutCommand ¶
type KVCommand_PutCommand struct {
PutCommand *PutReq `protobuf:"bytes,3,opt,name=put_command,json=putCommand,oneof"`
}
type OpenSessionReq ¶
type OpenSessionReq struct {
Session *Session `protobuf:"bytes,1,opt,name=session" json:"session,omitempty"`
}
func (*OpenSessionReq) Descriptor ¶
func (*OpenSessionReq) Descriptor() ([]byte, []int)
func (*OpenSessionReq) GetSession ¶
func (m *OpenSessionReq) GetSession() *Session
func (*OpenSessionReq) ProtoMessage ¶
func (*OpenSessionReq) ProtoMessage()
func (*OpenSessionReq) Reset ¶
func (m *OpenSessionReq) Reset()
func (*OpenSessionReq) String ¶
func (m *OpenSessionReq) String() string
type OpenSessionRes ¶
type OpenSessionRes struct {
ClientId int64 `protobuf:"varint,1,opt,name=client_id,json=clientId" json:"client_id,omitempty"`
}
func (*OpenSessionRes) Descriptor ¶
func (*OpenSessionRes) Descriptor() ([]byte, []int)
func (*OpenSessionRes) GetClientId ¶
func (m *OpenSessionRes) GetClientId() int64
func (*OpenSessionRes) ProtoMessage ¶
func (*OpenSessionRes) ProtoMessage()
func (*OpenSessionRes) Reset ¶
func (m *OpenSessionRes) Reset()
func (*OpenSessionRes) String ¶
func (m *OpenSessionRes) String() string
type PutReq ¶
type PutReq struct { Session *Session `protobuf:"bytes,1,opt,name=session" json:"session,omitempty"` Key string `protobuf:"bytes,2,opt,name=key" json:"key,omitempty"` Value string `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"` }
func (*PutReq) Descriptor ¶
func (*PutReq) GetSession ¶
func (*PutReq) ProtoMessage ¶
func (*PutReq) ProtoMessage()
type PutRes ¶
type PutRes struct {
Status Status `protobuf:"varint,1,opt,name=status,enum=pb.Status" json:"status,omitempty"`
}
func (*PutRes) Descriptor ¶
func (*PutRes) ProtoMessage ¶
func (*PutRes) ProtoMessage()
type RaftClient ¶
type RaftClient interface { RequestVote(ctx context.Context, in *RequestVoteReq, opts ...grpc.CallOption) (*RequestVoteRes, error) AppendEntries(ctx context.Context, in *AppendEntriesReq, opts ...grpc.CallOption) (*AppendEntriesRes, error) }
func NewRaftClient ¶
func NewRaftClient(cc *grpc.ClientConn) RaftClient
type RaftKVClient ¶
type RaftKVClient interface { OpenSession(ctx context.Context, in *OpenSessionReq, opts ...grpc.CallOption) (*OpenSessionRes, error) Put(ctx context.Context, in *PutReq, opts ...grpc.CallOption) (*PutRes, error) Get(ctx context.Context, in *GetReq, opts ...grpc.CallOption) (*GetRes, error) }
func NewRaftKVClient ¶
func NewRaftKVClient(cc *grpc.ClientConn) RaftKVClient
type RaftKVServer ¶
type RaftServer ¶
type RaftServer interface { RequestVote(context.Context, *RequestVoteReq) (*RequestVoteRes, error) AppendEntries(context.Context, *AppendEntriesReq) (*AppendEntriesRes, error) }
type RequestVoteReq ¶
type RequestVoteReq struct { Term int32 `protobuf:"varint,1,opt,name=term" json:"term,omitempty"` CandidateId int32 `protobuf:"varint,2,opt,name=candidate_id,json=candidateId" json:"candidate_id,omitempty"` LastLogIndex int32 `protobuf:"varint,3,opt,name=last_log_index,json=lastLogIndex" json:"last_log_index,omitempty"` LastLogTerm int32 `protobuf:"varint,4,opt,name=last_log_term,json=lastLogTerm" json:"last_log_term,omitempty"` }
func (*RequestVoteReq) Descriptor ¶
func (*RequestVoteReq) Descriptor() ([]byte, []int)
func (*RequestVoteReq) GetCandidateId ¶
func (m *RequestVoteReq) GetCandidateId() int32
func (*RequestVoteReq) GetLastLogIndex ¶
func (m *RequestVoteReq) GetLastLogIndex() int32
func (*RequestVoteReq) GetLastLogTerm ¶
func (m *RequestVoteReq) GetLastLogTerm() int32
func (*RequestVoteReq) GetTerm ¶
func (m *RequestVoteReq) GetTerm() int32
func (*RequestVoteReq) ProtoMessage ¶
func (*RequestVoteReq) ProtoMessage()
func (*RequestVoteReq) Reset ¶
func (m *RequestVoteReq) Reset()
func (*RequestVoteReq) String ¶
func (m *RequestVoteReq) String() string
type RequestVoteRes ¶
type RequestVoteRes struct { Term int32 `protobuf:"varint,1,opt,name=term" json:"term,omitempty"` VoteGranted bool `protobuf:"varint,2,opt,name=vote_granted,json=voteGranted" json:"vote_granted,omitempty"` }
func (*RequestVoteRes) Descriptor ¶
func (*RequestVoteRes) Descriptor() ([]byte, []int)
func (*RequestVoteRes) GetTerm ¶
func (m *RequestVoteRes) GetTerm() int32
func (*RequestVoteRes) GetVoteGranted ¶
func (m *RequestVoteRes) GetVoteGranted() bool
func (*RequestVoteRes) ProtoMessage ¶
func (*RequestVoteRes) ProtoMessage()
func (*RequestVoteRes) Reset ¶
func (m *RequestVoteRes) Reset()
func (*RequestVoteRes) String ¶
func (m *RequestVoteRes) String() string
type Session ¶
type Session struct { ClientId int64 `protobuf:"varint,1,opt,name=client_id,json=clientId" json:"client_id,omitempty"` Sn int64 `protobuf:"varint,2,opt,name=sn" json:"sn,omitempty"` LogId string `protobuf:"bytes,3,opt,name=log_id,json=logId" json:"log_id,omitempty"` }
func (*Session) Descriptor ¶
func (*Session) GetClientId ¶
func (*Session) ProtoMessage ¶
func (*Session) ProtoMessage()
Click to show internal directories.
Click to hide internal directories.