* Problem running make check @ 2015-05-14 20:24 Michal Jarzabek 2015-05-14 20:55 ` Gregory Farnum 0 siblings, 1 reply; 5+ messages in thread From: Michal Jarzabek @ 2015-05-14 20:24 UTC (permalink / raw) To: ceph-devel Hi, After cloning ceph repo and then running: ./autogen.sh ./configure make -j 8 make check make check always hangs after following lines: LD_PRELOAD=liblttng-ust-fork.so PASS: unittest_texttable LD_PRELOAD=liblttng-ust-fork.so PASS: unittest_on_exit LD_PRELOAD=liblttng-ust-fork.so PASS: unittest_readahead LD_PRELOAD=liblttng-ust-fork.so PASS: unittest_tableformatter LD_PRELOAD=liblttng-ust-fork.so PASS: unittest_bit_vector LD_PRELOAD=liblttng-ust-fork.so PASS: ceph-detect-init/run-tox.sh LD_PRELOAD=liblttng-ust-fork.so Any idea what might be a problem? Thanks, Michal ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problem running make check 2015-05-14 20:24 Problem running make check Michal Jarzabek @ 2015-05-14 20:55 ` Gregory Farnum 2015-05-14 23:15 ` Loic Dachary 0 siblings, 1 reply; 5+ messages in thread From: Gregory Farnum @ 2015-05-14 20:55 UTC (permalink / raw) To: Michal Jarzabek; +Cc: ceph-devel@vger.kernel.org On Thu, May 14, 2015 at 1:24 PM, Michal Jarzabek <stiopa@gmail.com> wrote: > Hi, > > After cloning ceph repo and then running: > ./autogen.sh > ./configure > make -j 8 > make check > > make check always hangs after following lines: > LD_PRELOAD=liblttng-ust-fork.so > PASS: unittest_texttable > LD_PRELOAD=liblttng-ust-fork.so > PASS: unittest_on_exit > LD_PRELOAD=liblttng-ust-fork.so > PASS: unittest_readahead > LD_PRELOAD=liblttng-ust-fork.so > PASS: unittest_tableformatter > LD_PRELOAD=liblttng-ust-fork.so > PASS: unittest_bit_vector > LD_PRELOAD=liblttng-ust-fork.so > PASS: ceph-detect-init/run-tox.sh > LD_PRELOAD=liblttng-ust-fork.so > > Any idea what might be a problem? You can try building without lttng, which has helped some users, and you can check if you have high enough ulimit settings. The defaults on my box were not high enough; I bumped both files and processes up to 16k and rebooted before I could get it working properly. -Greg ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problem running make check 2015-05-14 20:55 ` Gregory Farnum @ 2015-05-14 23:15 ` Loic Dachary 2015-05-16 8:55 ` Michal Jarzabek 0 siblings, 1 reply; 5+ messages in thread From: Loic Dachary @ 2015-05-14 23:15 UTC (permalink / raw) To: Michal Jarzabek; +Cc: ceph-devel@vger.kernel.org [-- Attachment #1: Type: text/plain, Size: 1675 bytes --] On 14/05/2015 22:55, Gregory Farnum wrote: > On Thu, May 14, 2015 at 1:24 PM, Michal Jarzabek <stiopa@gmail.com> wrote: >> Hi, >> >> After cloning ceph repo and then running: >> ./autogen.sh >> ./configure >> make -j 8 >> make check >> >> make check always hangs after following lines: >> LD_PRELOAD=liblttng-ust-fork.so >> PASS: unittest_texttable >> LD_PRELOAD=liblttng-ust-fork.so >> PASS: unittest_on_exit >> LD_PRELOAD=liblttng-ust-fork.so >> PASS: unittest_readahead >> LD_PRELOAD=liblttng-ust-fork.so >> PASS: unittest_tableformatter >> LD_PRELOAD=liblttng-ust-fork.so >> PASS: unittest_bit_vector >> LD_PRELOAD=liblttng-ust-fork.so >> PASS: ceph-detect-init/run-tox.sh >> LD_PRELOAD=liblttng-ust-fork.so >> >> Any idea what might be a problem? In addition to what Greg said: ./configure --without-lttng ... lttng is indeed the most probably cause for failure. How much RAM/CPU does your machine have ? Is this running on SSD or spinner ? Not that a spinner would be a problem but mor than -j4 on a spinner is probably not a good idea because the disk will be the bottleneck. > > You can try building without lttng, which has helped some users, and > you can check if you have high enough ulimit settings. The defaults on > my box were not high enough; I bumped both files and processes up to > 16k and rebooted before I could get it working properly. > -Greg > -- > To unsubscribe from this list: send the line "unsubscribe ceph-devel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > -- Loïc Dachary, Artisan Logiciel Libre [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 198 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problem running make check 2015-05-14 23:15 ` Loic Dachary @ 2015-05-16 8:55 ` Michal Jarzabek 2015-05-16 14:10 ` Michal Jarzabek 0 siblings, 1 reply; 5+ messages in thread From: Michal Jarzabek @ 2015-05-16 8:55 UTC (permalink / raw) To: Loic Dachary; +Cc: ceph-devel@vger.kernel.org Loic: I've got 16GB ram, SSD and 3.3GHz 4 cores cpu I have increased ulimit settings as Greg suggested to 16K and turned off lttng. Now it hangs in different place: ... PASS: unittest_ipaddr PASS: unittest_texttable PASS: unittest_on_exit PASS: unittest_readahead PASS: unittest_tableformatter PASS: unittest_bit_vector PASS: ceph-detect-init/run-tox.sh FAIL: test/erasure-code/test-erasure-code.sh PASS: test/run-rbd-unit-tests.sh On Fri, May 15, 2015 at 12:15 AM, Loic Dachary <loic@dachary.org> wrote: > > > On 14/05/2015 22:55, Gregory Farnum wrote: >> On Thu, May 14, 2015 at 1:24 PM, Michal Jarzabek <stiopa@gmail.com> wrote: >>> Hi, >>> >>> After cloning ceph repo and then running: >>> ./autogen.sh >>> ./configure >>> make -j 8 >>> make check >>> >>> make check always hangs after following lines: >>> LD_PRELOAD=liblttng-ust-fork.so >>> PASS: unittest_texttable >>> LD_PRELOAD=liblttng-ust-fork.so >>> PASS: unittest_on_exit >>> LD_PRELOAD=liblttng-ust-fork.so >>> PASS: unittest_readahead >>> LD_PRELOAD=liblttng-ust-fork.so >>> PASS: unittest_tableformatter >>> LD_PRELOAD=liblttng-ust-fork.so >>> PASS: unittest_bit_vector >>> LD_PRELOAD=liblttng-ust-fork.so >>> PASS: ceph-detect-init/run-tox.sh >>> LD_PRELOAD=liblttng-ust-fork.so >>> >>> Any idea what might be a problem? > > In addition to what Greg said: > > ./configure --without-lttng ... > > lttng is indeed the most probably cause for failure. How much RAM/CPU does your machine have ? Is this running on SSD or spinner ? Not that a spinner would be a problem but mor than -j4 on a spinner is probably not a good idea because the disk will be the bottleneck. > >> >> You can try building without lttng, which has helped some users, and >> you can check if you have high enough ulimit settings. The defaults on >> my box were not high enough; I bumped both files and processes up to >> 16k and rebooted before I could get it working properly. > >> -Greg >> -- >> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html >> > > -- > Loïc Dachary, Artisan Logiciel Libre > -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problem running make check 2015-05-16 8:55 ` Michal Jarzabek @ 2015-05-16 14:10 ` Michal Jarzabek 0 siblings, 0 replies; 5+ messages in thread From: Michal Jarzabek @ 2015-05-16 14:10 UTC (permalink / raw) To: Loic Dachary; +Cc: ceph-devel@vger.kernel.org Didn't notice that I had not enough space on my HDD. It works now, thanks for help! Michal On Sat, May 16, 2015 at 9:55 AM, Michal Jarzabek <stiopa@gmail.com> wrote: > Loic: I've got 16GB ram, SSD and 3.3GHz 4 cores cpu > > I have increased ulimit settings as Greg suggested to 16K and turned off lttng. > Now it hangs in different place: > > ... > PASS: unittest_ipaddr > PASS: unittest_texttable > PASS: unittest_on_exit > PASS: unittest_readahead > PASS: unittest_tableformatter > PASS: unittest_bit_vector > PASS: ceph-detect-init/run-tox.sh > FAIL: test/erasure-code/test-erasure-code.sh > PASS: test/run-rbd-unit-tests.sh > > > > On Fri, May 15, 2015 at 12:15 AM, Loic Dachary <loic@dachary.org> wrote: >> >> >> On 14/05/2015 22:55, Gregory Farnum wrote: >>> On Thu, May 14, 2015 at 1:24 PM, Michal Jarzabek <stiopa@gmail.com> wrote: >>>> Hi, >>>> >>>> After cloning ceph repo and then running: >>>> ./autogen.sh >>>> ./configure >>>> make -j 8 >>>> make check >>>> >>>> make check always hangs after following lines: >>>> LD_PRELOAD=liblttng-ust-fork.so >>>> PASS: unittest_texttable >>>> LD_PRELOAD=liblttng-ust-fork.so >>>> PASS: unittest_on_exit >>>> LD_PRELOAD=liblttng-ust-fork.so >>>> PASS: unittest_readahead >>>> LD_PRELOAD=liblttng-ust-fork.so >>>> PASS: unittest_tableformatter >>>> LD_PRELOAD=liblttng-ust-fork.so >>>> PASS: unittest_bit_vector >>>> LD_PRELOAD=liblttng-ust-fork.so >>>> PASS: ceph-detect-init/run-tox.sh >>>> LD_PRELOAD=liblttng-ust-fork.so >>>> >>>> Any idea what might be a problem? >> >> In addition to what Greg said: >> >> ./configure --without-lttng ... >> >> lttng is indeed the most probably cause for failure. How much RAM/CPU does your machine have ? Is this running on SSD or spinner ? Not that a spinner would be a problem but mor than -j4 on a spinner is probably not a good idea because the disk will be the bottleneck. >> >>> >>> You can try building without lttng, which has helped some users, and >>> you can check if you have high enough ulimit settings. The defaults on >>> my box were not high enough; I bumped both files and processes up to >>> 16k and rebooted before I could get it working properly. >> >>> -Greg >>> -- >>> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in >>> the body of a message to majordomo@vger.kernel.org >>> More majordomo info at http://vger.kernel.org/majordomo-info.html >>> >> >> -- >> Loïc Dachary, Artisan Logiciel Libre >> -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-05-16 14:10 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-05-14 20:24 Problem running make check Michal Jarzabek 2015-05-14 20:55 ` Gregory Farnum 2015-05-14 23:15 ` Loic Dachary 2015-05-16 8:55 ` Michal Jarzabek 2015-05-16 14:10 ` Michal Jarzabek
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.