Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder memcached-solaris10-amd64 Build #298

Results:

Failed shell_2 shell_3

SourceStamp:

Projectmemcached
Repositorygit://github.com/memcached/memcached.git
Branchnext
Revisionb95ca35702a9ba3cdd8e0ad66137f95dea71cbe7
Got Revisionb95ca35702a9ba3cdd8e0ad66137f95dea71cbe7
Changes2 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-memcached-solaris10-amd64' triggered this build

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. shell 'bash autogen.sh' ( 4 secs )
    1. stdio
  3. shell_1 './configure --enable-sasl ...' ( 7 secs )
    1. stdio
    2. config.log
  4. shell_2 'gmake' failed ( 1 secs )
    1. stdio
  5. shell_3 'gmake test' failed ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch next Build
builddir /export/home/buildbot/slave/memcached-solaris10-amd64 slave
buildername memcached-solaris10-amd64 Builder
buildnumber 298 Build
codebase Build
got_revision b95ca35702a9ba3cdd8e0ad66137f95dea71cbe7 Git
project memcached Build
repository git://github.com/memcached/memcached.git Build
revision b95ca35702a9ba3cdd8e0ad66137f95dea71cbe7 Build
scheduler schedule-memcached-solaris10-amd64 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/memcached-solaris10-amd64 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. dormando

Timing:

StartTue Nov 23 02:42:32 2021
EndTue Nov 23 02:42:53 2021
Elapsed21 secs

All Changes:

:

  1. Change #144409

    Category memcached
    Changed by dormando <dormandoohnoyoudont@rydia.net>
    Changed at Thu 18 Nov 2021 23:07:18
    Repository git://github.com/memcached/memcached.git
    Project memcached
    Branch next
    Revision 9917c798503e14b026c67068f1406bfc23c5a5b9

    Comments

    extstore: avoid looping IO queues on submission
    with low (ie; 1) IO threads, and a long IO depth (10k+) that might
    suddenly appear during a disk hiccup, we can cause a slowdown as each
    worker thread submission walks the entire queue.
    
    this fully avoids walking objects while holding any lock, though we can
    still do that a bit on the IO thread's end when reading the queue.

    Changed files

    • extstore.c
  2. Change #144410

    Category memcached
    Changed by dormando <dormandoohnoyoudont@rydia.net>
    Changed at Tue 23 Nov 2021 02:36:16
    Repository git://github.com/memcached/memcached.git
    Project memcached
    Branch next
    Revision b95ca35702a9ba3cdd8e0ad66137f95dea71cbe7

    Comments

    Fix for #837 - tests fail on OS X
    Always at least try to setrlimit to what we want it to be, but in debug
    mode ignore if it fails. This isn't the greatest workaround but will
    ensure the next release works under both valgrind and OS X. A better way
    to detect valgrind (importing their huge .h file I guess?) would mean we
    can skip setrlimit in that specific case only.

    Changed files

    • memcached.c