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
Vincent Pelletier
neoppod
Commits
9b70f88f
Commit
9b70f88f
authored
May 03, 2017
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use TCP keepalives instead of applicative pings
parent
d51920c0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
46 deletions
+38
-46
neo/lib/connection.py
neo/lib/connection.py
+24
-27
neo/lib/connector.py
neo/lib/connector.py
+12
-0
neo/lib/handler.py
neo/lib/handler.py
+0
-2
neo/tests/threaded/test.py
neo/tests/threaded/test.py
+0
-13
neo/tests/threaded/testReplication.py
neo/tests/threaded/testReplication.py
+2
-4
No files found.
neo/lib/connection.py
View file @
9b70f88f
...
...
@@ -183,7 +183,6 @@ class BaseConnection(object):
"""
from
.connector
import
SocketConnector
as
ConnectorClass
KEEP_ALIVE
=
60
def
__init__
(
self
,
event_manager
,
handler
,
connector
,
addr
=
None
):
assert
connector
is
not
None
,
"Need a low-level connector"
...
...
@@ -284,9 +283,6 @@ class BaseConnection(object):
"""
return
attributeTracker
.
whoSet
(
self
,
'connector'
)
def
idle
(
self
):
pass
attributeTracker
.
track
(
BaseConnection
)
...
...
@@ -332,6 +328,7 @@ class Connection(BaseConnection):
peer_id
=
None
_next_timeout
=
None
_parser_state
=
None
_idle_timeout
=
0
_timeout
=
0
def
__init__
(
self
,
event_manager
,
*
args
,
**
kw
):
...
...
@@ -364,17 +361,20 @@ class Connection(BaseConnection):
def
asClient
(
self
):
try
:
del
self
.
idle
assert
self
.
client
del
self
.
_idle_timeout
except
AttributeError
:
self
.
client
=
True
else
:
assert
self
.
client
self
.
updateTimeout
()
def
asServer
(
self
):
self
.
server
=
True
def
_closeClient
(
self
):
if
self
.
server
:
del
self
.
idle
del
self
.
_idle_timeout
self
.
updateTimeout
()
self
.
client
=
False
self
.
send
(
Packets
.
CloseClient
())
else
:
...
...
@@ -382,7 +382,8 @@ class Connection(BaseConnection):
def
closeClient
(
self
):
if
self
.
connector
is
not
None
and
self
.
client
:
self
.
idle
=
self
.
_closeClient
self
.
_idle_timeout
=
60
self
.
_checkSmallerTimeout
()
def
isAborted
(
self
):
return
self
.
aborted
...
...
@@ -409,11 +410,14 @@ class Connection(BaseConnection):
if
not
self
.
_queue
:
if
not
t
:
t
=
self
.
_next_timeout
-
self
.
_timeout
self
.
_timeout
=
self
.
_handlers
.
getNextTimeout
()
or
self
.
KEEP_ALIVE
self
.
_timeout
=
self
.
_handlers
.
getNextTimeout
()
or
\
self
.
_idle_timeout
self
.
_next_timeout
=
t
+
self
.
_timeout
_checkSmallerTimeout
=
updateTimeout
def
getTimeout
(
self
):
if
not
self
.
_queue
:
if
not
self
.
_queue
and
self
.
_timeout
:
return
self
.
_next_timeout
def
onTimeout
(
self
):
...
...
@@ -427,8 +431,8 @@ class Connection(BaseConnection):
if
self
.
_next_timeout
<=
time
():
handlers
.
timeout
(
self
)
self
.
close
()
el
se
:
self
.
idle
()
el
if
self
.
_idle_timeout
:
self
.
_closeClient
()
def
abort
(
self
):
"""Abort dealing with this connection."""
...
...
@@ -600,11 +604,7 @@ class Connection(BaseConnection):
handlers
=
self
.
_handlers
t
=
None
if
handlers
.
isPending
()
else
time
()
handlers
.
emit
(
packet
,
timeout
,
kw
)
if
not
self
.
_queue
:
next_timeout
=
self
.
_next_timeout
self
.
updateTimeout
(
t
)
if
self
.
_next_timeout
<
next_timeout
:
self
.
em
.
wakeup
()
self
.
_checkSmallerTimeout
(
t
)
return
msg_id
def
answer
(
self
,
packet
):
...
...
@@ -617,9 +617,6 @@ class Connection(BaseConnection):
packet
.
setId
(
self
.
peer_id
)
self
.
_addPacket
(
packet
)
def
idle
(
self
):
self
.
ask
(
Packets
.
Ping
())
def
_connected
(
self
):
self
.
connecting
=
False
self
.
getHandler
().
connectionCompleted
(
self
)
...
...
@@ -680,13 +677,6 @@ class ClientConnection(Connection):
class
ServerConnection
(
Connection
):
"""A connection from a remote node to this node."""
# Both server and client must check the connection, in case:
# - the remote crashed brutally (i.e. without closing TCP connections)
# - or packets sent by the remote are dropped (network failure)
# Use different timeout so that in normal condition, server never has to
# ping the client. Otherwise, it would do it about half of the time.
KEEP_ALIVE
=
Connection
.
KEEP_ALIVE
+
5
server
=
True
def
__init__
(
self
,
*
args
,
**
kw
):
...
...
@@ -761,3 +751,10 @@ class MTClientConnection(ClientConnection):
msg_id
=
self
.
_ask
(
packet
,
timeout
,
**
kw
)
self
.
dispatcher
.
register
(
self
,
msg_id
,
queue
)
return
msg_id
def
_checkSmallerTimeout
(
self
,
t
=
None
):
if
not
self
.
_queue
:
next_timeout
=
self
.
_timeout
and
self
.
_next_timeout
self
.
updateTimeout
(
t
)
if
not
next_timeout
or
self
.
_next_timeout
<
next_timeout
:
self
.
em
.
wakeup
()
neo/lib/connector.py
View file @
9b70f88f
...
...
@@ -57,6 +57,18 @@ class SocketConnector(object):
self
.
socket_fd
=
s
.
fileno
()
# always use non-blocking sockets
s
.
setblocking
(
0
)
# TCP keepalive, enabled on both sides to detect:
# - remote host crash
# - network failure
# They're more efficient than applicative pings and we don't want
# to consider the connection dead if the remote node is busy.
# The following 3 lines are specific to Linux. It seems that OSX
# has similar options (TCP_KEEPALIVE/TCP_KEEPINTVL/TCP_KEEPCNT),
# and Windows has SIO_KEEPALIVE_VALS (fixed count of 10).
s
.
setsockopt
(
socket
.
IPPROTO_TCP
,
socket
.
TCP_KEEPIDLE
,
60
)
s
.
setsockopt
(
socket
.
IPPROTO_TCP
,
socket
.
TCP_KEEPCNT
,
3
)
s
.
setsockopt
(
socket
.
IPPROTO_TCP
,
socket
.
TCP_KEEPINTVL
,
10
)
s
.
setsockopt
(
socket
.
SOL_SOCKET
,
socket
.
SO_KEEPALIVE
,
1
)
# disable Nagle algorithm to reduce latency
s
.
setsockopt
(
socket
.
IPPROTO_TCP
,
socket
.
TCP_NODELAY
,
1
)
self
.
queued
=
[
ENCODED_VERSION
]
...
...
neo/lib/handler.py
View file @
9b70f88f
...
...
@@ -194,8 +194,6 @@ class EventHandler(object):
conn
.
answer
(
Packets
.
Pong
())
def
pong
(
self
,
conn
):
# Ignore PONG packets. The only purpose of ping/pong packets is
# to test/maintain underlying connection.
pass
def
closeClient
(
self
,
conn
):
...
...
neo/tests/threaded/test.py
View file @
9b70f88f
...
...
@@ -1349,19 +1349,6 @@ class Test(NEOThreadedTest):
poll
(
0
)
self
.
assertIs
(
client
.
connector
,
None
)
def
testConnectionTimeout
(
self
):
with
self
.
getLoopbackConnection
()
as
conn
:
conn
.
KEEP_ALIVE
def
onTimeout
(
orig
):
conn
.
idle
()
orig
()
with
Patch
(
conn
,
KEEP_ALIVE
=
0
):
while
conn
.
connecting
:
conn
.
em
.
poll
(
1
)
with
Patch
(
conn
,
onTimeout
=
onTimeout
):
conn
.
em
.
poll
(
1
)
self
.
assertFalse
(
conn
.
isClosed
())
@
with_cluster
()
def
testClientDisconnectedFromMaster
(
self
,
cluster
):
def
disconnect
(
conn
,
packet
):
...
...
neo/tests/threaded/testReplication.py
View file @
9b70f88f
...
...
@@ -235,9 +235,7 @@ class ReplicationTests(NEOThreadedTest):
assertion failure.
"""
conn
,
=
backup
.
master
.
getConnectionList
(
backup
.
upstream
.
master
)
# trigger ping
self
.
assertFalse
(
conn
.
isPending
())
conn
.
onTimeout
()
conn
.
ask
(
Packets
.
Ping
())
self
.
assertTrue
(
conn
.
isPending
())
# force ping to have expired
# connection will be closed before upstream master has time
...
...
@@ -276,7 +274,7 @@ class ReplicationTests(NEOThreadedTest):
self
.
tic
(
check_timeout
=
(
backup
.
storage
,))
# 2nd failed, 3rd deferred
self
.
assertEqual
(
count
[
0
],
4
)
self
.
assert
True
(
t
<=
time
.
time
())
self
.
assert
LessEqual
(
t
,
time
.
time
())
@
backup_test
()
def
testBackupDelayedUnlockTransaction
(
self
,
backup
):
...
...
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