Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
The test can occasionally fail, see symptoms here:
https://github.com/ursacomputing/crossbow/runs/4920924293?check_suite_focus=true#step:4:12555
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> captured stdout >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> workload size: 100000 workload size: 300000 workload size: 900000 workload size: 2700000 workload size: 8100000 workload size: 24300000 workload size: 72900000 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> traceback >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> self = <pyarrow.tests.test_csv.TestSerialCSVTableRead object at 0x1215b9f70> def test_cancellation(self): if (threading.current_thread().ident != threading.main_thread().ident): pytest.skip("test only works from main Python thread") # Skips test if not available raise_signal = util.get_raise_signal() # Make the interruptible workload large enough to not finish # before the interrupt comes, even in release mode on fast machines. last_duration = 0.0 workload_size = 100_000 while last_duration < 1.0: print("workload size:", workload_size) large_csv = b"a,b,c\n" + b"1,2,3\n" * workload_size t1 = time.time() self.read_bytes(large_csv) last_duration = time.time() - t1 workload_size = workload_size * 3 def signal_from_thread(): time.sleep(0.2) raise_signal(signal.SIGINT) t1 = time.time() try: try: t = threading.Thread(target=signal_from_thread) with pytest.raises(KeyboardInterrupt) as exc_info: t.start() > self.read_bytes(large_csv) E Failed: DID NOT RAISE <class 'KeyboardInterrupt'> pyarrow/tests/test_csv.py:1400: Failed >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> entering PDB >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Attachments
Issue Links
- is related to
-
ARROW-15436 [Release][Python] Disable flaky csv::test_cancellation test on apple M1
- Resolved
- links to