Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
87b612aa
Commit
87b612aa
authored
Aug 28, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
3a9c2cac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
118 additions
and
4 deletions
+118
-4
go/neo/client/client.go
go/neo/client/client.go
+2
-0
go/neo/nodetab.go
go/neo/nodetab.go
+113
-1
go/neo/proto.go
go/neo/proto.go
+3
-3
No files found.
go/neo/client/client.go
View file @
87b612aa
...
@@ -108,6 +108,8 @@ func (c *Client) Load(xid zodb.Xid) (data []byte, tid zodb.Tid, err error) {
...
@@ -108,6 +108,8 @@ func (c *Client) Load(xid zodb.Xid) (data []byte, tid zodb.Tid, err error) {
if
stor
==
nil
{
if
stor
==
nil
{
panic
(
0
)
// XXX
panic
(
0
)
// XXX
}
}
// XXX check stor.State == RUNNING
//Slink := c.Connect(stor) // single-flight Dial; puts result into stor.Link (XXX ok?)
//Slink := c.Connect(stor) // single-flight Dial; puts result into stor.Link (XXX ok?)
//Slink := stor.Connect() // single-flight Dial; puts result into stor.Link (XXX ok?)
//Slink := stor.Connect() // single-flight Dial; puts result into stor.Link (XXX ok?)
Slink
:=
stor
.
Link
// XXX stub
Slink
:=
stor
.
Link
// XXX stub
...
...
go/neo/nodetab.go
View file @
87b612aa
...
@@ -75,12 +75,120 @@ type NodeTable struct {
...
@@ -75,12 +75,120 @@ type NodeTable struct {
//sync.RWMutex XXX needed ?
//sync.RWMutex XXX needed ?
//storv []*Node // storages
//storv []*Node // storages
nodev
[]
*
Node
// all other nodes
nodev
[]
*
Node
// all other nodes
-> *Peer
notifyv
[]
chan
NodeInfo
// subscribers
notifyv
[]
chan
NodeInfo
// subscribers
//ver int // ↑ for versioning XXX do we need this?
//ver int // ↑ for versioning XXX do we need this?
}
}
// // special error indicating dial is currently in progress
// var errDialInprogress = errors.New("dialing...")
// even if dialing a peer failed, we'll attempt redial after this timeout
const
δtRedial
=
3
*
time
.
Second
// Peer represents a peer node in the cluster.
type
Peer
struct
{
NodeInfo
// .uuid, .addr, ...
// link to this peer
linkMu
sync
.
Mutex
link
*
NodeLink
// link to peer or nil if not connected
// linkErr error // dialing gave this error
dialT
time
.
Time
// dialing finished at this time
// linkReady chan struct{} // becomes ready after dial finishes; reinitialized at each redial
dialing
*
dialReady
// dialer notifies waiters via this; reinitialized at each redial; nil while not dialing
}
type
dialReady
struct
{
link
*
NodeLink
err
error
ready
chan
struct
{}
}
// Connect returns link to this peer.
//
// If the link was not yet established Connect dials the peer appropriately,
// handshakes, requests identification and checks that identification reply is
// as expected.
func
(
p
*
Peer
)
Connect
(
ctx
context
.
Context
)
(
*
NodeLink
,
error
)
{
// XXX p.State != RUNNING
// XXX p.Addr != ""
p
.
linkMu
.
Lock
()
// ok if already connected
if
link
:=
p
.
link
;
link
!=
nil
{
p
.
linkMu
.
Unlock
()
return
link
,
nil
}
// if dial is already in progress - wait for its completion
if
dialing
:=
p
.
dialing
;
dialing
!=
nil
{
p
.
linkMu
.
Unlock
()
select
{
case
<-
ctx
.
Done
()
:
return
nil
,
ctx
.
Err
()
case
<-
dialing
.
ready
:
return
dialed
.
link
,
dialed
.
err
}
}
// otherwise this goroutine becomes responsible for (re)dialing the peer
dialing
=
&
dialReady
{
ready
:
make
(
chan
struct
{})}
p
.
dialing
=
dialing
// start dialing - in singleflight
p
.
linkMu
.
Unlock
()
go
func
()
{
// throttle redialing if too fast
δt
:=
time
.
Now
()
.
Sub
(
dialT
)
if
δt
<
δtRedial
&&
!
dialT
.
IsZero
()
{
select
{
case
<-
ctx
.
Done
()
:
// XXX -> return nil, ctx.Err()
case
<-
time
.
After
(
δtRedial
-
δt
)
:
// ok
}
}
conn0
,
accept
,
err
:=
Dial
(
ctx
,
p
.
Type
,
p
.
Addr
)
if
err
!=
nil
{
// XXX -> return nil, err
}
// XXX accept.NodeType == p.Type
// XXX accept.MyUUID == p.UUID
// XXX accept.YourUUID == (what has been given us by master)
// XXX accept.Num{Partitions,Replicas} == (what is expected - (1,1) currently)
p
.
link
=
link
p
.
linkErr
=
err
p
.
dialT
=
time
.
Now
()
dialing
.
link
=
link
dialing
.
err
=
err
close
(
dialing
.
ready
)
}()
<-
dialing
.
ready
return
dialing
.
link
,
dialing
.
err
}
//trace:event traceNodeChanged(nt *NodeTable, n *Node)
//trace:event traceNodeChanged(nt *NodeTable, n *Node)
// Node represents a node entry in NodeTable
// Node represents a node entry in NodeTable
...
@@ -137,6 +245,7 @@ func (nt *NodeTable) Update(nodeInfo NodeInfo, conn *Conn /*XXX better link *Nod
...
@@ -137,6 +245,7 @@ func (nt *NodeTable) Update(nodeInfo NodeInfo, conn *Conn /*XXX better link *Nod
}
}
/*
// GetByLink finds node by node-link
// GetByLink finds node by node-link
// XXX is this a good idea ?
// XXX is this a good idea ?
func (nt *NodeTable) GetByLink(link *NodeLink) *Node {
func (nt *NodeTable) GetByLink(link *NodeLink) *Node {
...
@@ -148,6 +257,7 @@ func (nt *NodeTable) GetByLink(link *NodeLink) *Node {
...
@@ -148,6 +257,7 @@ func (nt *NodeTable) GetByLink(link *NodeLink) *Node {
}
}
return nil
return nil
}
}
*/
// XXX doc
// XXX doc
func
(
nt
*
NodeTable
)
SetNodeState
(
node
*
Node
,
state
NodeState
)
{
func
(
nt
*
NodeTable
)
SetNodeState
(
node
*
Node
,
state
NodeState
)
{
...
@@ -156,6 +266,7 @@ func (nt *NodeTable) SetNodeState(node *Node, state NodeState) {
...
@@ -156,6 +266,7 @@ func (nt *NodeTable) SetNodeState(node *Node, state NodeState) {
nt
.
notify
(
node
.
NodeInfo
)
nt
.
notify
(
node
.
NodeInfo
)
}
}
/*
// UpdateLinkDown updates information about corresponding to link node and marks it as down
// UpdateLinkDown updates information about corresponding to link node and marks it as down
// it returns corresponding node entry for convenience
// it returns corresponding node entry for convenience
// XXX is this a good idea ?
// XXX is this a good idea ?
...
@@ -169,6 +280,7 @@ func (nt *NodeTable) UpdateLinkDown(link *NodeLink) *Node {
...
@@ -169,6 +280,7 @@ func (nt *NodeTable) UpdateLinkDown(link *NodeLink) *Node {
nt.SetNodeState(node, DOWN)
nt.SetNodeState(node, DOWN)
return node
return node
}
}
*/
// StorageList returns list of all storages in node table
// StorageList returns list of all storages in node table
...
...
go/neo/proto.go
View file @
87b612aa
...
@@ -271,7 +271,7 @@ type CloseClient struct {
...
@@ -271,7 +271,7 @@ type CloseClient struct {
// connection. Any -> Any.
// connection. Any -> Any.
type
RequestIdentification
struct
{
type
RequestIdentification
struct
{
NodeType
NodeType
// XXX name
NodeType
NodeType
// XXX name
NodeUUID
NodeUUID
UUID
NodeUUID
Address
Address
// where requesting node is also accepting connections
Address
Address
// where requesting node is also accepting connections
ClusterName
string
ClusterName
string
IdTimestamp
float64
IdTimestamp
float64
...
@@ -280,10 +280,10 @@ type RequestIdentification struct {
...
@@ -280,10 +280,10 @@ type RequestIdentification struct {
// XXX -> ReplyIdentification? RequestIdentification.Answer somehow ?
// XXX -> ReplyIdentification? RequestIdentification.Answer somehow ?
type
AcceptIdentification
struct
{
type
AcceptIdentification
struct
{
NodeType
NodeType
// XXX name
NodeType
NodeType
// XXX name
My
NodeUUID
NodeUUID
My
UUID
NodeUUID
NumPartitions
uint32
// PNumber
NumPartitions
uint32
// PNumber
NumReplicas
uint32
// PNumber
NumReplicas
uint32
// PNumber
Your
NodeUUID
NodeUUID
Your
UUID
NodeUUID
}
}
// Ask current primary master's uuid. CTL -> A.
// Ask current primary master's uuid. CTL -> A.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment