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
24c4a165
Commit
24c4a165
authored
Jan 29, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
373ef31b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
48 deletions
+46
-48
go/neo/client.go
go/neo/client.go
+21
-19
go/neo/mastered.go
go/neo/mastered.go
+25
-29
No files found.
go/neo/client.go
View file @
24c4a165
...
...
@@ -58,11 +58,13 @@ type Client struct {
runWG
*
xsync
.
WorkGroup
runCancel
func
()
/*
// link to master - established and maintained by talkMaster.
// users retrieve it via masterLink().
mlinkMu sync.Mutex
mlink *neonet.NodeLink
mlinkReady chan struct{} // reinitialized at each new talk cycle
*/
/*
// operational state in node is maintained by recvMaster.
...
...
@@ -104,7 +106,7 @@ func NewClient(clusterName, masterAddr string, net xnet.Networker) *Client {
return
&
Client
{
// node: xneo.NewNodeApp(net, proto.CLIENT, clusterName, masterAddr),
node
:
newMasteredNode
(
proto
.
CLIENT
,
clusterName
,
net
,
masterAddr
),
mlinkReady
:
make
(
chan
struct
{}),
//
mlinkReady: make(chan struct{}),
// operational: false,
// opReady: make(chan struct{}),
at0Ready
:
make
(
chan
struct
{}),
...
...
@@ -165,6 +167,7 @@ func (c *Client) Close() (err error) {
// --- connection with master ---
/*
// masterLink returns link to primary master.
//
// NOTE that even if masterLink returns != nil, the master link can become
...
...
@@ -190,6 +193,7 @@ func (c *Client) masterLink(ctx context.Context) (*neonet.NodeLink, error) {
}
}
}
*/
/*
// updateOperational updates .operational from current state.
...
...
@@ -344,7 +348,7 @@ func (c *Client) talkMaster1(ctx context.Context) (err error) {
// syncMaster asks M for DB head right after identification.
func
(
c
*
Client
)
syncMaster
(
ctx
context
.
Context
,
mlink
*
neonet
.
NodeLink
)
(
err
error
)
{
defer
task
.
Running
(
&
ctx
,
"sync
"
)(
&
err
)
defer
task
.
Running
(
&
ctx
,
"sync
0"
)(
&
err
)
// XXX unify with Sync ?
// query last_tid
lastTxn
:=
proto
.
AnswerLastTransaction
{}
...
...
@@ -466,28 +470,26 @@ func (c *Client) flushEventq0() {
// --- user API calls ---
// Sync implements zodb.IStorageDriver.
func
(
c
*
Client
)
Sync
(
ctx
context
.
Context
)
(
_
zodb
.
Tid
,
err
error
)
{
func
(
c
*
Client
)
Sync
(
ctx
context
.
Context
)
(
head
zodb
.
Tid
,
err
error
)
{
defer
func
()
{
if
err
!=
nil
{
err
=
&
zodb
.
OpError
{
URL
:
c
.
URL
(),
Op
:
"sync"
,
Args
:
nil
,
Err
:
err
}
}
}()
// FIXME require full withOperational ? ->
mlink
,
err
:=
c
.
masterLink
(
ctx
)
if
err
!=
nil
{
return
0
,
err
}
// XXX mlink can become down while we are making the call.
// XXX do we want to return error or retry?
reply
:=
proto
.
AnswerLastTransaction
{}
err
=
mlink
.
Ask1
(
&
proto
.
LastTransaction
{},
&
reply
)
// XXX Ask += ctx
if
err
!=
nil
{
// XXX ZODBErrDecode?
return
0
,
err
}
return
reply
.
Tid
,
nil
err
=
c
.
node
.
WithOperational
(
ctx
,
func
(
mlink
*
neonet
.
NodeLink
,
_
*
xneo
.
ClusterState
)
error
{
// XXX mlink can become down while we are making the call.
// XXX do we want to return error or retry?
reply
:=
proto
.
AnswerLastTransaction
{}
err
=
mlink
.
Ask1
(
&
proto
.
LastTransaction
{},
&
reply
)
// XXX Ask += ctx
if
err
!=
nil
{
// XXX ZODBErrDecode?
return
err
}
head
=
reply
.
Tid
return
nil
})
return
}
// Load implements zodb.IStorageDriver.
...
...
@@ -500,7 +502,7 @@ func (c *Client) Load(ctx context.Context, xid zodb.Xid) (buf *mem.Buf, serial z
// Retrieve storages we might need to access.
storv
:=
make
([]
*
xneo
.
Node
,
0
,
1
)
err
=
c
.
node
.
WithOperational
(
ctx
,
func
(
cs
*
xneo
.
ClusterState
)
error
{
err
=
c
.
node
.
WithOperational
(
ctx
,
func
(
mlink
*
neonet
.
NodeLink
,
cs
*
xneo
.
ClusterState
)
error
{
for
_
,
cell
:=
range
cs
.
PartTab
.
Get
(
xid
.
Oid
)
{
if
cell
.
Readable
()
{
stor
:=
cs
.
NodeTab
.
Get
(
cell
.
NID
)
...
...
go/neo/mastered.go
View file @
24c4a165
...
...
@@ -65,22 +65,17 @@ type _MasteredNode struct {
Net
xnet
.
Networker
// network AP we are sending/receiving on
MasterAddr
string
// address of current master TODO -> masterRegistry
// nodeTab/partTab/clusterState
stateMu
sync
.
RWMutex
state
xneo
.
ClusterState
// operational state in node is maintained by TalkMaster.
// users retrieve it via
withOperational(). XXX recheck
// users retrieve it via
WithOperational().
//
//
NOTE
being operational means:
// being operational means:
// - link to master established and is ok
// - .state is operational
//
// however master link is accessed separately (see ^^^ and masterLink)
//
// protected by .stateMu
operational
bool
opReady
chan
struct
{}
// reinitialized each time state becomes non-operational
// - state of partTab/nodeTab is operational
opMu
sync
.
RWMutex
mlink
*
neonet
.
NodeLink
// link to master
state
xneo
.
ClusterState
// nodeTab/partTab/clusterState
opReady
chan
struct
{}
// reinitialized each time state becomes non-operational
operational
bool
// cache for state.IsOperational()
flags
_MasteredNodeFlags
...
...
@@ -124,7 +119,8 @@ func newMasteredNode(typ proto.NodeType, clusterName string, net xnet.Networker,
Code
:
-
1
,
// invalid
},
rxm
:
make
(
chan
_RxM
),
opReady
:
make
(
chan
struct
{}),
rxm
:
make
(
chan
_RxM
),
}
return
node
...
...
@@ -224,7 +220,7 @@ func (node *_MasteredNode) talkMaster1(ctx, ctxPreTalkM context.Context, f func(
// update cluster state
// XXX locking
node
.
state
Mu
.
Lock
()
node
.
op
Mu
.
Lock
()
err
=
node
.
updateNodeTab
(
ctx
,
&
mnt
)
node
.
state
.
PartTab
=
pt
// XXX update "operational"
...
...
@@ -234,7 +230,7 @@ func (node *_MasteredNode) talkMaster1(ctx, ctxPreTalkM context.Context, f func(
c.node.StateMu.Unlock()
opready()
*/
node
.
state
Mu
.
Unlock
()
node
.
op
Mu
.
Unlock
()
if
err
!=
nil
{
// might be command to shutdown
return
err
}
...
...
@@ -320,12 +316,12 @@ func (node *_MasteredNode) RecvM1() (neonet.Request, error) {
func
(
node
*
_MasteredNode
)
recvδstate
(
ctx
context
.
Context
,
msg
proto
.
Msg
)
(
δpt
bool
,
err
error
)
{
δpt
=
false
node
.
state
Mu
.
Lock
()
node
.
op
Mu
.
Lock
()
// XXX defer unlock ?
switch
msg
:=
msg
.
(
type
)
{
default
:
node
.
state
Mu
.
Unlock
()
node
.
op
Mu
.
Unlock
()
panic
(
fmt
.
Sprintf
(
"unexpected message: %T"
,
msg
))
// <- whole partTab
...
...
@@ -353,7 +349,7 @@ func (node *_MasteredNode) recvδstate(ctx context.Context, msg proto.Msg) (δpt
// update .operational + notify those who was waiting for it
opready
:=
node
.
updateOperational
()
node
.
state
Mu
.
Unlock
()
node
.
op
Mu
.
Unlock
()
opready
()
return
δpt
,
err
...
...
@@ -361,7 +357,7 @@ func (node *_MasteredNode) recvδstate(ctx context.Context, msg proto.Msg) (δpt
// updateOperational updates .operational from current state.
//
// Must be called with .
state
Mu lock held.
// Must be called with .
op
Mu lock held.
//
// Returned sendReady func must be called by updateOperational caller after
// .node.StateMu lock is released - it will close current .opReady this way
...
...
@@ -377,7 +373,7 @@ func (node *_MasteredNode) updateOperational() (sendReady func()) {
if
operational
!=
node
.
operational
{
node
.
operational
=
operational
if
operational
{
opready
=
node
.
opReady
// don't close from under
state
Mu
opready
=
node
.
opReady
// don't close from under
op
Mu
}
else
{
node
.
opReady
=
make
(
chan
struct
{})
// remake for next operational waiters
}
...
...
@@ -394,16 +390,16 @@ func (node *_MasteredNode) updateOperational() (sendReady func()) {
// WithOperational runs f during when cluster state is/becomes operational.
// The cluster state is guaranteed not to change during f run.
func
(
node
*
_MasteredNode
)
WithOperational
(
ctx
context
.
Context
,
f
func
(
cs
*
xneo
.
ClusterState
)
error
)
error
{
func
(
node
*
_MasteredNode
)
WithOperational
(
ctx
context
.
Context
,
f
func
(
mlink
*
neonet
.
NodeLink
,
cs
*
xneo
.
ClusterState
)
error
)
error
{
for
{
node
.
state
Mu
.
RLock
()
node
.
op
Mu
.
RLock
()
if
node
.
operational
{
//fmt.Printf("withOperation -> ready\n");
break
}
ready
:=
node
.
opReady
node
.
state
Mu
.
RUnlock
()
node
.
op
Mu
.
RUnlock
()
//fmt.Printf("withOperational - waiting on %v\n", ready)
...
...
@@ -416,16 +412,16 @@ func (node *_MasteredNode) WithOperational(ctx context.Context, f func(cs *xneo.
}
}
// node.operational=y and node.
state
Mu is rlocked
defer
node
.
state
Mu
.
RUnlock
()
return
f
(
&
node
.
state
)
// node.operational=y and node.
op
Mu is rlocked
defer
node
.
op
Mu
.
RUnlock
()
return
f
(
node
.
mlink
,
&
node
.
state
)
}
var
cmdShutdown
=
errors
.
New
(
"master told us to shutdown"
)
// updateNodeTab applies updates to .nodeTab from message and logs changes appropriately.
// the only possible error is cmdShutdown.
// must be called under .
state
Mu.
// must be called under .
op
Mu.
func
(
node
*
_MasteredNode
)
updateNodeTab
(
ctx
context
.
Context
,
msg
*
proto
.
NotifyNodeInformation
)
error
{
// XXX msg.IdTime ?
for
_
,
nodeInfo
:=
range
msg
.
NodeList
{
...
...
@@ -449,7 +445,7 @@ func (node *_MasteredNode) updateNodeTab(ctx context.Context, msg *proto.NotifyN
}
}
// FIXME logging under lock ok? (if caller took e.g. .
state
Mu before applying updates)
// FIXME logging under lock ok? (if caller took e.g. .
op
Mu before applying updates)
log
.
Infof
(
ctx
,
"full nodetab:
\n
%s"
,
node
.
state
.
NodeTab
)
return
nil
}
...
...
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