-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ARROW-17246: [Packaging][deb][RPM] Don't use system jemalloc #13739
Conversation
Because system jemalloc can't be used with dlopen(). If system jemalloc can't used with dlopen(), our shared libraried can't be loaded as bindings of script languages such as Ruby: + ruby -r gi -e 'p GI.load('\''Arrow'\'')' (null)-WARNING **: Failed to load shared library 'libarrow-glib.so.900' referenced by the typelib: /lib64/libjemalloc.so.2: cannot allocate memory in static TLS block This is caused because system jemalloc isn't built with --disable-initial-exec-tls. See also: * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=951704 * jemalloc/jemalloc#1237
@github-actions crossbow submit -g linux |
|
Revision: ff986c0 Submitted crossbow builds: ursacomputing/crossbow @ actions-cd71a0d2d1 |
@github-actions crossbow submit -g linux |
Revision: e4660d5 Submitted crossbow builds: ursacomputing/crossbow @ actions-ca052f43ca |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @kou!
Because system jemalloc can't be used with dlopen(). If system jemalloc can't used with dlopen(), our shared libraried can't be loaded as bindings of script languages such as Ruby: + ruby -r gi -e 'p GI.load('\''Arrow'\'')' (null)-WARNING **: Failed to load shared library 'libarrow-glib.so.900' referenced by the typelib: /lib64/libjemalloc.so.2: cannot allocate memory in static TLS block This is caused because system jemalloc isn't built with --disable-initial-exec-tls. See also: * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=951704 * jemalloc/jemalloc#1237 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Krisztián Szűcs <[email protected]>
Benchmark runs are scheduled for baseline = bb31c9a and contender = 036fdf2. 036fdf2 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Because system jemalloc can't be used with dlopen(). If system
jemalloc can't used with dlopen(), our shared libraried can't be
loaded as bindings of script languages such as Ruby:
This is caused because system jemalloc isn't built with
--disable-initial-exec-tls.
See also: