You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mesos.apache.org by "Vinod Kone (Created) (JIRA)" <ji...@apache.org> on 2011/11/01 22:35:32 UTC

[jira] [Created] (MESOS-55) Mesos core make install is flaky

Mesos core make install is flaky
--------------------------------

                 Key: MESOS-55
                 URL: https://issues.apache.org/jira/browse/MESOS-55
             Project: Mesos
          Issue Type: Bug
            Reporter: Vinod Kone


> Some times (not always!) it errors out as follows:
> if test ! -d /home/vinod/local/mesos/bin; \
>               then mkdir -p /home/vinod/local/mesos/bin; \
>       fi
> if test ! -d /home/vinod/local/mesos/lib; \
>               then mkdir -p /home/vinod/local/mesos/lib; \
>       fi
> if test ! -d /home/vinod/local/mesos/lib/java; \
>               then mkdir -p /home/vinod/local/mesos/lib/java; \
>       fi
> if test ! -d /home/vinod/local/mesos/conf; \
>               then mkdir -p /home/vinod/local/mesos/conf; \
>       fi
> if test ! -d /home/vinod/local/mesos/deploy; \
>               then mkdir -p /home/vinod/local/mesos/deploy; \
>       fi
> install -m 755 ./bin/mesos-master /home/vinod/local/mesos/bin
> install -m 755 ./bin/mesos-slave /home/vinod/local/mesos/bin
> install -m 755 ./bin/mesos-local /home/vinod/local/mesos/bin
> install -m 755 ./bin/mesos-launcher /home/vinod/local/mesos/bin
> install -m 755 ./bin/mesos-getconf /home/vinod/local/mesos/bin
> install -m 755 ./bin/killtree.sh /home/vinod/local/mesos/bin
> rsync -avz ./bin/webui /home/vinod/local/mesos/bin
> building file list ... done
> sent 929 bytes  received 20 bytes  1898.00 bytes/sec
> total size is 151171  speedup is 159.30
> rsync -avz ./deploy /home/vinod/local/mesos
> building file list ... done
> sent 262 bytes  received 20 bytes  564.00 bytes/sec
> total size is 4752  speedup is 16.85
> install -m 755 ./lib/libmesos_exec.a /home/vinod/local/mesos/lib
> install -m 755 ./lib/libmesos_sched.a /home/vinod/local/mesos/lib
> install -m 755 ./lib/libmesos.so /home/vinod/local/mesos/lib
> install -m 755 ./lib/java/libmesos.so /home/vinod/local/mesos/lib/java
> install -m 755 ./lib/java/mesos.jar /home/vinod/local/mesos/lib/java
> mkdir -p /home/vinod/local/mesos/lib/python
> PYTHONPATH=third_party/distribute-0.6.19/distribute-0.6.19-py2.6.egg:/home/vinod/local/mesos/lib/python python2.6 -m easy_install --install-dir /home/vinod/local/mesos/lib/python ./src/python/dist/*.egg
> Processing mesos-1.0-py2.6-linux-x86_64.egg
> removing '/home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg' (and everything under it)
> creating /home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg
> Extracting mesos-1.0-py2.6-linux-x86_64.egg to /home/vinod/local/mesos/lib/python
> Adding mesos 1.0 to easy-install.pth file
> Installed /home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg
> Processing dependencies for mesos==1.0
> Finished processing dependencies for mesos==1.0
> PYTHONPATH=third_party/distribute-0.6.19/distribute-0.6.19-py2.6.egg:/home/vinod/local/mesos/lib/python python2.6 -m easy_install --install-dir /home/vinod/local/mesos/lib/python ./third_party/protobuf-2.3.0/python/dist/*.egg
> Processing protobuf-2.3.0-py2.6.egg
> removing '/home/vinod/local/mesos/lib/python/protobuf-2.3.0-py2.6.egg' (and everything under it)
> creating /home/vinod/local/mesos/lib/python/protobuf-2.3.0-py2.6.egg
> Extracting protobuf-2.3.0-py2.6.egg to /home/vinod/local/mesos/lib/python
> Adding protobuf 2.3.0 to easy-install.pth file
> error: /home/vinod/local/mesos/lib/python/easy-install.pth: Input/output error
> make: *** [install] Error 1


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Closed] (MESOS-55) Mesos core make install is flaky

Posted by "Benjamin Hindman (Closed) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MESOS-55?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benjamin Hindman closed MESOS-55.
---------------------------------

    Resolution: Not A Problem

New build system via autotools, new issue will address 'make install' for autotools.
                
> Mesos core make install is flaky
> --------------------------------
>
>                 Key: MESOS-55
>                 URL: https://issues.apache.org/jira/browse/MESOS-55
>             Project: Mesos
>          Issue Type: Bug
>            Reporter: Vinod Kone
>
> > Some times (not always!) it errors out as follows:
> > if test ! -d /home/vinod/local/mesos/bin; \
> >               then mkdir -p /home/vinod/local/mesos/bin; \
> >       fi
> > if test ! -d /home/vinod/local/mesos/lib; \
> >               then mkdir -p /home/vinod/local/mesos/lib; \
> >       fi
> > if test ! -d /home/vinod/local/mesos/lib/java; \
> >               then mkdir -p /home/vinod/local/mesos/lib/java; \
> >       fi
> > if test ! -d /home/vinod/local/mesos/conf; \
> >               then mkdir -p /home/vinod/local/mesos/conf; \
> >       fi
> > if test ! -d /home/vinod/local/mesos/deploy; \
> >               then mkdir -p /home/vinod/local/mesos/deploy; \
> >       fi
> > install -m 755 ./bin/mesos-master /home/vinod/local/mesos/bin
> > install -m 755 ./bin/mesos-slave /home/vinod/local/mesos/bin
> > install -m 755 ./bin/mesos-local /home/vinod/local/mesos/bin
> > install -m 755 ./bin/mesos-launcher /home/vinod/local/mesos/bin
> > install -m 755 ./bin/mesos-getconf /home/vinod/local/mesos/bin
> > install -m 755 ./bin/killtree.sh /home/vinod/local/mesos/bin
> > rsync -avz ./bin/webui /home/vinod/local/mesos/bin
> > building file list ... done
> > sent 929 bytes  received 20 bytes  1898.00 bytes/sec
> > total size is 151171  speedup is 159.30
> > rsync -avz ./deploy /home/vinod/local/mesos
> > building file list ... done
> > sent 262 bytes  received 20 bytes  564.00 bytes/sec
> > total size is 4752  speedup is 16.85
> > install -m 755 ./lib/libmesos_exec.a /home/vinod/local/mesos/lib
> > install -m 755 ./lib/libmesos_sched.a /home/vinod/local/mesos/lib
> > install -m 755 ./lib/libmesos.so /home/vinod/local/mesos/lib
> > install -m 755 ./lib/java/libmesos.so /home/vinod/local/mesos/lib/java
> > install -m 755 ./lib/java/mesos.jar /home/vinod/local/mesos/lib/java
> > mkdir -p /home/vinod/local/mesos/lib/python
> > PYTHONPATH=third_party/distribute-0.6.19/distribute-0.6.19-py2.6.egg:/home/vinod/local/mesos/lib/python python2.6 -m easy_install --install-dir /home/vinod/local/mesos/lib/python ./src/python/dist/*.egg
> > Processing mesos-1.0-py2.6-linux-x86_64.egg
> > removing '/home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg' (and everything under it)
> > creating /home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg
> > Extracting mesos-1.0-py2.6-linux-x86_64.egg to /home/vinod/local/mesos/lib/python
> > Adding mesos 1.0 to easy-install.pth file
> > Installed /home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg
> > Processing dependencies for mesos==1.0
> > Finished processing dependencies for mesos==1.0
> > PYTHONPATH=third_party/distribute-0.6.19/distribute-0.6.19-py2.6.egg:/home/vinod/local/mesos/lib/python python2.6 -m easy_install --install-dir /home/vinod/local/mesos/lib/python ./third_party/protobuf-2.3.0/python/dist/*.egg
> > Processing protobuf-2.3.0-py2.6.egg
> > removing '/home/vinod/local/mesos/lib/python/protobuf-2.3.0-py2.6.egg' (and everything under it)
> > creating /home/vinod/local/mesos/lib/python/protobuf-2.3.0-py2.6.egg
> > Extracting protobuf-2.3.0-py2.6.egg to /home/vinod/local/mesos/lib/python
> > Adding protobuf 2.3.0 to easy-install.pth file
> > error: /home/vinod/local/mesos/lib/python/easy-install.pth: Input/output error
> > make: *** [install] Error 1

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MESOS-55) Mesos core make install is flaky

Posted by "Benjamin Hindman (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MESOS-55?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13189404#comment-13189404 ] 

Benjamin Hindman commented on MESOS-55:
---------------------------------------

I'm going to close this issue in lieu of a new issue that explicitly tracks making sure 'make install' is working correctly.
                
> Mesos core make install is flaky
> --------------------------------
>
>                 Key: MESOS-55
>                 URL: https://issues.apache.org/jira/browse/MESOS-55
>             Project: Mesos
>          Issue Type: Bug
>            Reporter: Vinod Kone
>
> > Some times (not always!) it errors out as follows:
> > if test ! -d /home/vinod/local/mesos/bin; \
> >               then mkdir -p /home/vinod/local/mesos/bin; \
> >       fi
> > if test ! -d /home/vinod/local/mesos/lib; \
> >               then mkdir -p /home/vinod/local/mesos/lib; \
> >       fi
> > if test ! -d /home/vinod/local/mesos/lib/java; \
> >               then mkdir -p /home/vinod/local/mesos/lib/java; \
> >       fi
> > if test ! -d /home/vinod/local/mesos/conf; \
> >               then mkdir -p /home/vinod/local/mesos/conf; \
> >       fi
> > if test ! -d /home/vinod/local/mesos/deploy; \
> >               then mkdir -p /home/vinod/local/mesos/deploy; \
> >       fi
> > install -m 755 ./bin/mesos-master /home/vinod/local/mesos/bin
> > install -m 755 ./bin/mesos-slave /home/vinod/local/mesos/bin
> > install -m 755 ./bin/mesos-local /home/vinod/local/mesos/bin
> > install -m 755 ./bin/mesos-launcher /home/vinod/local/mesos/bin
> > install -m 755 ./bin/mesos-getconf /home/vinod/local/mesos/bin
> > install -m 755 ./bin/killtree.sh /home/vinod/local/mesos/bin
> > rsync -avz ./bin/webui /home/vinod/local/mesos/bin
> > building file list ... done
> > sent 929 bytes  received 20 bytes  1898.00 bytes/sec
> > total size is 151171  speedup is 159.30
> > rsync -avz ./deploy /home/vinod/local/mesos
> > building file list ... done
> > sent 262 bytes  received 20 bytes  564.00 bytes/sec
> > total size is 4752  speedup is 16.85
> > install -m 755 ./lib/libmesos_exec.a /home/vinod/local/mesos/lib
> > install -m 755 ./lib/libmesos_sched.a /home/vinod/local/mesos/lib
> > install -m 755 ./lib/libmesos.so /home/vinod/local/mesos/lib
> > install -m 755 ./lib/java/libmesos.so /home/vinod/local/mesos/lib/java
> > install -m 755 ./lib/java/mesos.jar /home/vinod/local/mesos/lib/java
> > mkdir -p /home/vinod/local/mesos/lib/python
> > PYTHONPATH=third_party/distribute-0.6.19/distribute-0.6.19-py2.6.egg:/home/vinod/local/mesos/lib/python python2.6 -m easy_install --install-dir /home/vinod/local/mesos/lib/python ./src/python/dist/*.egg
> > Processing mesos-1.0-py2.6-linux-x86_64.egg
> > removing '/home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg' (and everything under it)
> > creating /home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg
> > Extracting mesos-1.0-py2.6-linux-x86_64.egg to /home/vinod/local/mesos/lib/python
> > Adding mesos 1.0 to easy-install.pth file
> > Installed /home/vinod/local/mesos/lib/python/mesos-1.0-py2.6-linux-x86_64.egg
> > Processing dependencies for mesos==1.0
> > Finished processing dependencies for mesos==1.0
> > PYTHONPATH=third_party/distribute-0.6.19/distribute-0.6.19-py2.6.egg:/home/vinod/local/mesos/lib/python python2.6 -m easy_install --install-dir /home/vinod/local/mesos/lib/python ./third_party/protobuf-2.3.0/python/dist/*.egg
> > Processing protobuf-2.3.0-py2.6.egg
> > removing '/home/vinod/local/mesos/lib/python/protobuf-2.3.0-py2.6.egg' (and everything under it)
> > creating /home/vinod/local/mesos/lib/python/protobuf-2.3.0-py2.6.egg
> > Extracting protobuf-2.3.0-py2.6.egg to /home/vinod/local/mesos/lib/python
> > Adding protobuf 2.3.0 to easy-install.pth file
> > error: /home/vinod/local/mesos/lib/python/easy-install.pth: Input/output error
> > make: *** [install] Error 1

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira