Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
5adc637c
Commit
5adc637c
authored
Aug 16, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
X clusterState tracing + check
parent
30dfd90f
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
75 additions
and
30 deletions
+75
-30
go/neo/connection.go
go/neo/connection.go
+1
-1
go/neo/proto-misc.go
go/neo/proto-misc.go
+9
-1
go/neo/proto.go
go/neo/proto.go
+2
-0
go/neo/server/cluster_test.go
go/neo/server/cluster_test.go
+25
-21
go/neo/server/master.go
go/neo/server/master.go
+5
-5
go/neo/server/storage.go
go/neo/server/storage.go
+1
-0
go/neo/server/ztrace_test.go
go/neo/server/ztrace_test.go
+4
-1
go/neo/ztrace.go
go/neo/ztrace.go
+28
-1
No files found.
go/neo/connection.go
View file @
5adc637c
...
...
@@ -688,7 +688,7 @@ func (nl *NodeLink) recvPkt() (*PktBuf, error) {
}
}
if
dumpio
{
if
/* XXX temp show only tx */
false
&&
dumpio
{
// XXX -> log
fmt
.
Printf
(
"%v < %v: %v
\n
"
,
nl
.
peerLink
.
LocalAddr
(),
nl
.
peerLink
.
RemoteAddr
(),
pkt
)
}
...
...
go/neo/proto-
str
.go
→
go/neo/proto-
misc
.go
View file @
5adc637c
//go:generate stringer -output zproto-str.go -type ErrorCode,NodeType proto.go
package
neo
// supporting code for types defined in proto.go
import
(
"fmt"
...
...
@@ -20,6 +21,13 @@ func (e *Error) Error() string {
}
// Set sets cluster state value to v.
// Use Set instead of direct assignment for ClusterState tracing to work.
func
(
cs
*
ClusterState
)
Set
(
v
ClusterState
)
{
*
cs
=
v
traceClusterStateChanged
(
cs
)
}
const
nodeTypeChar
=
"MSCA4567"
// keep in sync with NodeType constants
// String returns string representation of a node uuid.
...
...
@@ -46,7 +54,7 @@ func (nodeUUID NodeUUID) String() string {
return
s
}
//
XXX place ok?
//
UUID creates node uuid from node type and number.
// XXX test
func
UUID
(
typ
NodeType
,
num
int32
)
NodeUUID
{
temp
:=
uint32
(
0
)
...
...
go/neo/proto.go
View file @
5adc637c
...
...
@@ -51,6 +51,8 @@ const (
INCOMPLETE_TRANSACTION
)
//trace:event traceClusterStateChanged(cs *ClusterState)
type
ClusterState
int32
const
(
// Once the primary master is elected, the cluster has a state, which is
...
...
go/neo/server/cluster_test.go
View file @
5adc637c
...
...
@@ -71,8 +71,8 @@ func (t *MyTracer) TraceNetConnect(ev *xnet.TraceConnect) { t.Trace1(ev) }
func
(
t
*
MyTracer
)
TraceNetListen
(
ev
*
xnet
.
TraceListen
)
{
t
.
Trace1
(
ev
)
}
func
(
t
*
MyTracer
)
TraceNetTx
(
ev
*
xnet
.
TraceTx
)
{}
// { t.Trace1(ev) }
type
traceNeoRecv
struct
{
conn
*
neo
.
Conn
;
msg
neo
.
Msg
}
func
(
t
*
MyTracer
)
traceNeoConnRecv
(
c
*
neo
.
Conn
,
msg
neo
.
Msg
)
{
t
.
Trace1
(
&
traceNeoRecv
{
c
,
msg
})
}
//
type traceNeoRecv struct {conn *neo.Conn; msg neo.Msg}
//
func (t *MyTracer) traceNeoConnRecv(c *neo.Conn, msg neo.Msg) { t.Trace1(&traceNeoRecv{c, msg}) }
type
traceNeoSend
struct
{
Src
,
Dst
net
.
Addr
...
...
@@ -83,7 +83,16 @@ func (t *MyTracer) traceNeoConnSendPre(c *neo.Conn, msg neo.Msg) {
t
.
Trace1
(
&
traceNeoSend
{
c
.
Link
()
.
LocalAddr
(),
c
.
Link
()
.
RemoteAddr
(),
c
.
ConnID
(),
msg
})
}
type
traceNeoClusterState
struct
{
Ptr
*
neo
.
ClusterState
// pointer to variable which holds the state
State
neo
.
ClusterState
}
func
(
t
*
MyTracer
)
traceNeoClusterState
(
cs
*
neo
.
ClusterState
)
{
t
.
Trace1
(
&
traceNeoClusterState
{
cs
,
*
cs
})
}
func
clusterState
(
cs
*
neo
.
ClusterState
,
v
neo
.
ClusterState
)
*
traceNeoClusterState
{
return
&
traceNeoClusterState
{
cs
,
v
}
}
/*
func (tc *TraceChecker) ExpectNetDial(dst string) {
...
...
@@ -146,6 +155,7 @@ func TestMasterStorage(t *testing.T) {
tracing
.
Lock
()
//neo_traceConnRecv_Attach(pg, tracer.traceNeoConnRecv)
neo_traceConnSendPre_Attach
(
pg
,
tracer
.
traceNeoConnSendPre
)
neo_traceClusterStateChanged_Attach
(
pg
,
tracer
.
traceNeoClusterState
)
tracing
.
Unlock
()
...
...
@@ -172,11 +182,12 @@ func TestMasterStorage(t *testing.T) {
return
&
xnet
.
TraceListen
{
Laddr
:
xaddr
(
laddr
)}
}
//
XXX
//
shortcut for net tx event over nodelink connection
conntx
:=
func
(
src
,
dst
string
,
connid
uint32
,
msg
neo
.
Msg
)
*
traceNeoSend
{
return
&
traceNeoSend
{
Src
:
xaddr
(
src
),
Dst
:
xaddr
(
dst
),
ConnID
:
connid
,
Msg
:
msg
}
}
Mhost
:=
xnet
.
NetTrace
(
net
.
Host
(
"m"
),
tracer
)
Shost
:=
xnet
.
NetTrace
(
net
.
Host
(
"s"
),
tracer
)
...
...
@@ -191,11 +202,12 @@ func TestMasterStorage(t *testing.T) {
_
=
err
// XXX
})
// expect:
tc
.
Expect
(
netlisten
(
"m:1"
))
//
M.clusterState <- RECOVERY
// M.nodeTab <- Node(M
)
//
XXX M.nodeTab <- Node(M)
tc
.
Expect
(
clusterState
(
&
M
.
clusterState
,
neo
.
ClusterRecovering
)
)
// start storage
zstor
:=
xfs1stor
(
"../../zodb/storage/fs1/testdata/1.fs"
)
...
...
@@ -224,7 +236,9 @@ func TestMasterStorage(t *testing.T) {
ClusterName
:
"abc1"
,
IdTimestamp
:
0
,
}))
// TODO check M adjust nodetab...
// XXX M.nodeTab <- Node(S1)
tc
.
Expect
(
conntx
(
"m:2"
,
"s:2"
,
1
,
&
neo
.
AcceptIdentification
{
NodeType
:
neo
.
MASTER
,
MyNodeUUID
:
neo
.
UUID
(
neo
.
MASTER
,
1
),
...
...
@@ -250,22 +264,12 @@ func TestMasterStorage(t *testing.T) {
RowList
:
[]
neo
.
RowInfo
{},
}))
// XXX M.partTab <- ...
// XXX updated something cluster currently can be operational
// XXX temp
return
// M.nodeTab <- Node(S) XXX order can be racy?
// M -> S .? AcceptIdentification{...}
// S.nodeTab <- Node(M) XXX order can be racy?
//
// ; storCtlRecovery
// M -> S .? Recovery
// S <- M .? AnswerRecovery
//
// M -> S .? AskPartitionTable
// S <- M .? AnswerPartitionTable
// M.partTab <- ... XXX
// XXX updated something cluster currently can be operational
err
:=
M
.
Start
()
exc
.
Raiseif
(
err
)
...
...
go/neo/server/master.go
View file @
5adc637c
...
...
@@ -107,10 +107,7 @@ func NewMaster(clusterName, serveAddr string, net xnet.Networker) *Master {
nodeLeave
:
make
(
chan
nodeLeave
),
}
m
.
node
.
MyInfo
.
NodeUUID
=
m
.
allocUUID
(
neo
.
MASTER
)
// TODO update nodeTab with self
m
.
clusterState
=
neo
.
ClusterRecovering
// XXX no elections - we are the only master
m
.
clusterState
=
-
1
// invalid
return
m
}
...
...
@@ -142,7 +139,7 @@ func (m *Master) Shutdown() error {
// setClusterState sets .clusterState and notifies subscribers
func
(
m
*
Master
)
setClusterState
(
state
neo
.
ClusterState
)
{
m
.
clusterState
=
state
m
.
clusterState
.
Set
(
state
)
// TODO notify subscribers
}
...
...
@@ -150,6 +147,9 @@ func (m *Master) setClusterState(state neo.ClusterState) {
// Run starts master node and runs it until ctx is cancelled or fatal error
func
(
m
*
Master
)
Run
(
ctx
context
.
Context
)
(
err
error
)
{
m
.
node
.
MyInfo
.
NodeUUID
=
m
.
allocUUID
(
neo
.
MASTER
)
// TODO update nodeTab with self
// start listening
l
,
err
:=
m
.
node
.
Listen
()
if
err
!=
nil
{
...
...
go/neo/server/storage.go
View file @
5adc637c
...
...
@@ -353,6 +353,7 @@ func (stor *Storage) m1initialize(ctx context.Context, Mconn *neo.Conn) (err err
}
// XXX move Mconn.Send here and ^^^ only prepare reply?
if
err
!=
nil
{
return
err
}
...
...
go/neo/server/ztrace_test.go
View file @
5adc637c
...
...
@@ -13,11 +13,14 @@ import (
// traceimport: "lab.nexedi.com/kirr/neo/go/neo"
// rerun "gotrace gen" if you see link failure ↓↓↓
//go:linkname neo_trace_exporthash lab.nexedi.com/kirr/neo/go/neo._trace_exporthash_
d2fa0ebb37c3e2bf54309859a1eeb0e831edd435
//go:linkname neo_trace_exporthash lab.nexedi.com/kirr/neo/go/neo._trace_exporthash_
46f45c4a2306b317d62d3cded6f5ec228f0cf669
func
neo_trace_exporthash
()
func
init
()
{
neo_trace_exporthash
()
}
//go:linkname neo_traceClusterStateChanged_Attach lab.nexedi.com/kirr/neo/go/neo.traceClusterStateChanged_Attach
func
neo_traceClusterStateChanged_Attach
(
*
tracing
.
ProbeGroup
,
func
(
cs
*
neo
.
ClusterState
))
*
tracing
.
Probe
//go:linkname neo_traceConnRecv_Attach lab.nexedi.com/kirr/neo/go/neo.traceConnRecv_Attach
func
neo_traceConnRecv_Attach
(
*
tracing
.
ProbeGroup
,
func
(
c
*
neo
.
Conn
,
msg
neo
.
Msg
))
*
tracing
.
Probe
...
...
go/neo/ztrace.go
View file @
5adc637c
...
...
@@ -8,6 +8,33 @@ import (
"unsafe"
)
// traceevent: traceClusterStateChanged(cs *ClusterState)
type
_t_traceClusterStateChanged
struct
{
tracing
.
Probe
probefunc
func
(
cs
*
ClusterState
)
}
var
_traceClusterStateChanged
*
_t_traceClusterStateChanged
func
traceClusterStateChanged
(
cs
*
ClusterState
)
{
if
_traceClusterStateChanged
!=
nil
{
_traceClusterStateChanged_run
(
cs
)
}
}
func
_traceClusterStateChanged_run
(
cs
*
ClusterState
)
{
for
p
:=
_traceClusterStateChanged
;
p
!=
nil
;
p
=
(
*
_t_traceClusterStateChanged
)(
unsafe
.
Pointer
(
p
.
Next
()))
{
p
.
probefunc
(
cs
)
}
}
func
traceClusterStateChanged_Attach
(
pg
*
tracing
.
ProbeGroup
,
probe
func
(
cs
*
ClusterState
))
*
tracing
.
Probe
{
p
:=
_t_traceClusterStateChanged
{
probefunc
:
probe
}
tracing
.
AttachProbe
(
pg
,
(
**
tracing
.
Probe
)(
unsafe
.
Pointer
(
&
_traceClusterStateChanged
)),
&
p
.
Probe
)
return
&
p
.
Probe
}
// traceevent: traceConnRecv(c *Conn, msg Msg)
type
_t_traceConnRecv
struct
{
...
...
@@ -63,4 +90,4 @@ func traceConnSendPre_Attach(pg *tracing.ProbeGroup, probe func(c *Conn, msg Msg
}
// trace export signature
func
_trace_exporthash_
d2fa0ebb37c3e2bf54309859a1eeb0e831edd435
()
{}
func
_trace_exporthash_
46f45c4a2306b317d62d3cded6f5ec228f0cf669
()
{}
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