blob: 92ca225fa91d01331616cdbe46f280c8601fbe4d (
plain)
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
|
From ffebbd89ca6c02312bc669e6d0d6295aae5b0319 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=A9dric=20Ollivier?= <cedric.ollivier@orange.com>
Date: Sun, 26 Apr 2020 20:42:27 +0200
Subject: [PATCH] Increase Thread stack size
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
It sets Glibc default value.
https://wiki.musl-libc.org/functional-differences-from-glibc.html
https://bugs.python.org/issue32307
Change-Id: I0158ec40fda63ab11fb8d50ac43610dac6c455c7
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
---
rally/common/broker.py | 1 +
rally/plugins/task/runners/constant.py | 1 +
rally/plugins/task/runners/rps.py | 1 +
rally/task/engine.py | 1 +
rally/task/hook.py | 1 +
5 files changed, 5 insertions(+)
diff --git a/rally/common/broker.py b/rally/common/broker.py
index 2e0bd75e2..cb169ab3e 100644
--- a/rally/common/broker.py
+++ b/rally/common/broker.py
@@ -15,6 +15,7 @@
import collections
import threading
+threading.stack_size(8*1024*1024)
from rally.common import logging
diff --git a/rally/plugins/task/runners/constant.py b/rally/plugins/task/runners/constant.py
index 5feb1fee1..5300324f3 100644
--- a/rally/plugins/task/runners/constant.py
+++ b/rally/plugins/task/runners/constant.py
@@ -17,6 +17,7 @@ import collections
import multiprocessing
import queue as Queue
import threading
+threading.stack_size(8*1024*1024)
import time
from rally.common import utils
diff --git a/rally/plugins/task/runners/rps.py b/rally/plugins/task/runners/rps.py
index 98a706d11..defeedc1c 100644
--- a/rally/plugins/task/runners/rps.py
+++ b/rally/plugins/task/runners/rps.py
@@ -17,6 +17,7 @@ import collections
import multiprocessing
import queue as Queue
import threading
+threading.stack_size(8*1024*1024)
import time
from rally.common import logging
diff --git a/rally/task/engine.py b/rally/task/engine.py
index 594d7f464..71f7f01c5 100644
--- a/rally/task/engine.py
+++ b/rally/task/engine.py
@@ -16,6 +16,7 @@
import copy
import json
import threading
+threading.stack_size(8*1024*1024)
import time
import traceback
diff --git a/rally/task/hook.py b/rally/task/hook.py
index 524bc3b71..1f731abea 100644
--- a/rally/task/hook.py
+++ b/rally/task/hook.py
@@ -16,6 +16,7 @@
import abc
import collections
import threading
+threading.stack_size(8*1024*1024)
from rally.common import logging
from rally.common.plugin import plugin
--
2.26.2
|