[
https://issues.apache.org/jira/browse/ARROW-2193?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16371820#comment-16371820
]
Antoine Pitrou commented on ARROW-2193:
---------------------------------------
Ok, this is because I recently switched from gcc-4.9 to clang-5.0. With gcc,
plasma_store doesn't have a runtime dependency on boost:
{code:bash}
$ ldd `which plasma_store`
linux-vdso.so.1 => (0x00007ffc8b318000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
(0x00007fdc79bbe000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6
(0x00007fdc7983c000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fdc79533000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1
(0x00007fdc7931d000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fdc78f53000)
/lib64/ld-linux-x86-64.so.2 (0x00007fdc79ddb000)
{code}
But with clang I get:
{code:bash}
$ ldd `which plasma_store`
linux-vdso.so.1 => (0x00007fff21ba4000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f0d04d5d000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
(0x00007f0d04b40000)
libboost_system.so.1.66.0 => not found
libboost_filesystem.so.1.66.0 => not found
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6
(0x00007f0d047be000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f0d044b5000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1
(0x00007f0d0429f000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f0d03ed5000)
/lib64/ld-linux-x86-64.so.2 (0x00007f0d04f65000)
{code}
> [Plasma] plasma_store forks endlessly
> -------------------------------------
>
> Key: ARROW-2193
> URL: https://issues.apache.org/jira/browse/ARROW-2193
> Project: Apache Arrow
> Issue Type: Bug
> Components: Plasma (C++)
> Reporter: Antoine Pitrou
> Priority: Major
>
> I'm not sure why, but when I run the pyarrow test suite (for example
> {{py.test pyarrow/tests/test_plasma.py}}), plasma_store forks endlessly:
> {code:bash}
> $ ps fuwww
> USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
> [...]
> antoine 27869 12.0 0.4 863208 68976 pts/7 S 13:41 0:01
> /home/antoine/miniconda3/envs/pyarrow/bin/python
> /home/antoine/arrow/python/pyarrow/plasma_store -s /tmp/plasma_store40209423
> -m 100000000
> antoine 27885 13.0 0.4 863076 68560 pts/7 S 13:41 0:01 \_
> /home/antoine/miniconda3/envs/pyarrow/bin/python
> /home/antoine/arrow/python/pyarrow/plasma_store -s /tmp/plasma_store40209423
> -m 100000000
> antoine 27901 12.1 0.4 863076 68320 pts/7 S 13:41 0:01 \_
> /home/antoine/miniconda3/envs/pyarrow/bin/python
> /home/antoine/arrow/python/pyarrow/plasma_store -s /tmp/plasma_store40209423
> -m 100000000
> antoine 27920 13.6 0.4 863208 68868 pts/7 S 13:41 0:01 \_
> /home/antoine/miniconda3/envs/pyarrow/bin/python
> /home/antoine/arrow/python/pyarrow/plasma_store -s /tmp/plasma_store40209423
> -m 100000000
> [etc.]
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)