forked from thepaul/cassandra-dtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpushed_notifications_test.py
292 lines (237 loc) · 11.3 KB
/
pushed_notifications_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
import time
from nose.tools import timed
from cassandra import ReadTimeout, ReadFailure
from cassandra import ConsistencyLevel as CL
from cassandra.query import SimpleStatement
from dtest import Tester, debug
from tools import no_vnodes, require, since
from threading import Event
from assertions import assert_invalid
class NotificationWaiter(object):
"""
A helper class for waiting for pushed notifications from
Cassandra over the native protocol.
"""
def __init__(self, tester, node, notification_types):
"""
`address` should be a ccmlib.node.Node instance
`notification_types` should be a list of
"TOPOLOGY_CHANGE", "STATUS_CHANGE", and "SCHEMA_CHANGE".
"""
self.node = node
self.address = node.network_interfaces['binary'][0]
self.notification_types = notification_types
# get a single, new connection
session = tester.patient_cql_connection(node)
connection = session.cluster.connection_factory(self.address, is_control_connection=True)
# coordinate with an Event
self.event = Event()
# the pushed notification
self.notifications = []
# register a callback for the notification type
for notification_type in notification_types:
connection.register_watcher(notification_type, self.handle_notification, register_timeout=5.0)
def handle_notification(self, notification):
"""
Called when a notification is pushed from Cassandra.
"""
debug("Source {} sent {} for {}".format(self.address, notification["change_type"], notification["address"][0],))
self.notifications.append(notification)
self.event.set()
def wait_for_notifications(self, timeout, num_notifications=1):
"""
Waits up to `timeout` seconds for notifications from Cassandra. If
passed `num_notifications`, stop waiting when that many notifications
are observed.
"""
deadline = time.time() + timeout
while time.time() < deadline:
self.event.wait(deadline - time.time())
self.event.clear()
if len(self.notifications) >= num_notifications:
break
return self.notifications
def clear_notifications(self):
self.notifications = []
self.event.clear()
class TestPushedNotifications(Tester):
"""
Tests for pushed native protocol notification from Cassandra.
"""
@no_vnodes()
def move_single_node_test(self):
"""
@jira_ticket CASSANDRA-8516
Moving a token should result in NODE_MOVED notifications.
"""
self.cluster.populate(3).start(wait_for_binary_proto=True, wait_other_notice=True)
# Despite waiting for each node to see the other nodes as UP, there is apparently
# still a race condition that can result in NEW_NODE events being sent. We don't
# want to accidentally collect those, so for now we will just sleep a few seconds.
time.sleep(3)
waiters = [NotificationWaiter(self, node, ["TOPOLOGY_CHANGE"])
for node in self.cluster.nodes.values()]
node1 = self.cluster.nodes.values()[0]
node1.move("123")
for waiter in waiters:
debug("Waiting for notification from {}".format(waiter.address,))
notifications = waiter.wait_for_notifications(60.0)
self.assertEquals(1, len(notifications))
notification = notifications[0]
change_type = notification["change_type"]
address, port = notification["address"]
self.assertEquals("MOVED_NODE", change_type)
self.assertEquals(self.get_ip_from_node(node1), address)
@no_vnodes()
@since("2.1")
@require("10052")
def move_single_node_localhost_test(self):
"""
@jira_ticket CASSANDRA-10052
Test that we don't get NODE_MOVED notifications from nodes other than the local one,
when rpc_address is set to localhost.
To set-up this test we override the rpc_address to "localhost" for all nodes, and
therefore we must change the rpc port or else processes won't start.
"""
cluster = self.cluster
cluster.populate(3)
node1, node2, node3 = cluster.nodelist()
# change node3 'rpc_address' from '127.0.0.x' to 'localhost', increase port numbers
i = 0
for node in cluster.nodelist():
node.network_interfaces['thrift'] = ('localhost', node.network_interfaces['thrift'][1] + i)
node.network_interfaces['binary'] = ('localhost', node.network_interfaces['thrift'][1] + 1)
node.import_config_files() # this regenerates the yaml file and sets 'rpc_address' to the 'thrift' address
debug(node.show())
i = i + 2
cluster.start(wait_for_binary_proto=True, wait_other_notice=True)
# Despite waiting for each node to see the other nodes as UP, there is apparently
# still a race condition that can result in NEW_NODE events being sent. We don't
# want to accidentally collect those, so for now we will just sleep a few seconds.
time.sleep(3)
waiters = [NotificationWaiter(self, node, ["TOPOLOGY_CHANGE"])
for node in self.cluster.nodes.values()]
node1 = self.cluster.nodes.values()[0]
node1.move("123")
for waiter in waiters:
debug("Waiting for notification from {}".format(waiter.address,))
notifications = waiter.wait_for_notifications(30.0)
self.assertEquals(1 if waiter.node is node1 else 0, len(notifications))
@require("10052")
def restart_node_test(self):
"""
@jira_ticket CASSANDRA-7816
Restarting a node should generate exactly one DOWN and one UP notification
"""
self.cluster.populate(2).start()
node1, node2 = self.cluster.nodelist()
waiter = NotificationWaiter(self, node1, ["STATUS_CHANGE", "TOPOLOGY_CHANGE"])
for i in range(5):
debug("Restarting second node...")
node2.stop(wait_other_notice=True)
node2.start(wait_other_notice=True)
debug("Waiting for notifications from {}".format(waiter.address,))
notifications = waiter.wait_for_notifications(timeout=60.0, num_notifications=3)
self.assertEquals(3, len(notifications))
for notification in notifications:
self.assertEquals(self.get_ip_from_node(node2), notification["address"][0])
self.assertEquals("DOWN", notifications[0]["change_type"])
self.assertEquals("UP", notifications[1]["change_type"])
self.assertEquals("NEW_NODE", notifications[2]["change_type"])
waiter.clear_notifications()
@since("2.1")
@require("10052")
def restart_node_localhost_test(self):
"""
Test that we don't get client notifications when rpc_address is set to localhost.
@jira_ticket CASSANDRA-10052
To set-up this test we override the rpc_address to "localhost" for all nodes, and
therefore we must change the rpc port or else processes won't start.
"""
cluster = self.cluster
cluster.populate(2)
node1, node2 = cluster.nodelist()
i = 0 # change 'rpc_address' from '127.0.0.x' to 'localhost' and diversify port numbers
for node in cluster.nodelist():
node.network_interfaces['thrift'] = ('localhost', node.network_interfaces['thrift'][1] + i)
node.network_interfaces['binary'] = ('localhost', node.network_interfaces['thrift'][1] + 1)
node.import_config_files() # this regenerates the yaml file and sets 'rpc_address' to the 'thrift' address
debug(node.show())
i = i + 2
cluster.start(wait_for_binary_proto=True)
# register for notification with node1
waiter = NotificationWaiter(self, node1, ["STATUS_CHANGE", "TOPOLOGY_CHANGE"])
# restart node 2
debug("Restarting second node...")
node2.stop(wait_other_notice=True)
node2.start(wait_other_notice=True)
# check that node1 did not send UP or DOWN notification for node2
debug("Waiting for notifications from {}".format(waiter.address,))
notifications = waiter.wait_for_notifications(timeout=30.0, num_notifications=3)
self.assertEquals(0, len(notifications))
class TestVariousNotifications(Tester):
"""
Tests for various notifications/messages from Cassandra.
"""
@since('2.2')
def tombstone_failure_threshold_message_test(self):
"""
Ensure nodes return an error message in case of TombstoneOverwhelmingExceptions rather
than dropping the request. A drop makes the coordinator waits for the specified
read_request_timeout_in_ms.
@jira_ticket CASSANDRA-7886
"""
self.allow_log_errors = True
self.cluster.set_configuration_options(
values={
'tombstone_failure_threshold': 500,
'read_request_timeout_in_ms': 30000, # 30 seconds
'range_request_timeout_in_ms': 40000
}
)
self.cluster.populate(3).start()
node1, node2, node3 = self.cluster.nodelist()
session = self.patient_cql_connection(node1)
self.create_ks(session, 'test', 3)
session.execute(
"CREATE TABLE test ( "
"id int, mytext text, col1 int, col2 int, col3 int, "
"PRIMARY KEY (id, mytext) )"
)
# Add data with tombstones
values = map(lambda i: str(i), range(1000))
for value in values:
session.execute(SimpleStatement(
"insert into test (id, mytext, col1) values (1, '{}', null) ".format(
value
),
consistency_level=CL.ALL
))
failure_msg = ("Scanned over.* tombstones.* query aborted")
@timed(25)
def read_failure_query():
assert_invalid(
session, SimpleStatement("select * from test where id in (1,2,3,4,5)", consistency_level=CL.ALL),
expected=ReadTimeout if self.cluster.version() < '3' else ReadFailure,
)
read_failure_query()
failure = (node1.grep_log(failure_msg) or
node2.grep_log(failure_msg) or
node3.grep_log(failure_msg))
self.assertTrue(failure, ("Cannot find tombstone failure threshold error in log "
"after failed query"))
mark1 = node1.mark_log()
mark2 = node2.mark_log()
mark3 = node3.mark_log()
@timed(35)
def range_request_failure_query():
assert_invalid(
session, SimpleStatement("select * from test", consistency_level=CL.ALL),
expected=ReadTimeout if self.cluster.version() < '3' else ReadFailure,
)
range_request_failure_query()
failure = (node1.watch_log_for(failure_msg, from_mark=mark1, timeout=5) or
node2.watch_log_for(failure_msg, from_mark=mark2, timeout=5) or
node3.watch_log_for(failure_msg, from_mark=mark3, timeout=5))
self.assertTrue(failure, ("Cannot find tombstone failure threshold error in log "
"after range_request_timeout_query"))