| 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
 | #pragma once
#include <yql/essentials/public/udf/udf_registrator.h>
namespace NYql {
namespace NUdf {
inline constexpr char STANDART_STREAM_PROXY_INJECTION_SCRIPT[] =
    R"(
# numpy on import may find installed openblas library and load it,
# which in turn causes it to start CPUCOUNT threads
# with approx. 40Mb memory reserved for each thread;
#
# See more detailed explanation here: https://st.yandex-team.ru/STATLIBS-1715#5bfc68ecbbc039001cec572a
#
# Thus, we reduce negative effects as much as possible
import os
os.environ['OPENBLAS_NUM_THREADS'] = '1'
# Following part allows us later to format tracebacks via sys.excepthook
# in thread-safe manner
import sys
import threading
if sys.version_info >= (3, 0):
    from io import StringIO, TextIOWrapper as SysStderrType
else:
    from cStringIO import StringIO
    SysStderrType = file
class StderrLocal(threading.local):
    def __init__(self):
        self.is_real_mode = True
        self.buffer = StringIO()
class StderrProxy(object):
    def __init__(self, stderr):
        self._stderr = stderr
        self._tls = StderrLocal()
    def _toggle_real_mode(self):
        self._tls.is_real_mode = not self._tls.is_real_mode
        if not self._tls.is_real_mode:
            self._tls.buffer.clear()
    def _get_value(self):
        assert not self._tls.is_real_mode
        return self._tls.buffer.getvalue()
    def __getattr__(self, attr):
        target = self._stderr
        if not self._tls.is_real_mode:
            target = self._tls.buffer
        return getattr(target, attr)
if isinstance(sys.stderr, SysStderrType):
    sys.stderr = StderrProxy(sys.stderr)
)";
enum class EPythonFlavor {
    System,
    Arcadia,
};
void RegisterYqlPythonUdf(
    IRegistrator& registrator,
    ui32 flags,
    TStringBuf moduleName,
    TStringBuf resourceName,
    EPythonFlavor pythonFlavor);
TUniquePtr<IUdfModule> GetYqlPythonUdfModule(
    TStringBuf resourceName,
    EPythonFlavor pythonFlavor,
    bool standalone);
} // namespace NUdf
} // namespace NYql
 |