Return-Path: X-Original-To: apmail-mesos-user-archive@www.apache.org Delivered-To: apmail-mesos-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CA27F119DD for ; Sat, 30 Aug 2014 06:09:09 +0000 (UTC) Received: (qmail 6803 invoked by uid 500); 30 Aug 2014 06:09:09 -0000 Delivered-To: apmail-mesos-user-archive@mesos.apache.org Received: (qmail 6754 invoked by uid 500); 30 Aug 2014 06:09:09 -0000 Mailing-List: contact user-help@mesos.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@mesos.apache.org Delivered-To: mailing list user@mesos.apache.org Received: (qmail 6744 invoked by uid 99); 30 Aug 2014 06:09:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Aug 2014 06:09:09 +0000 X-ASF-Spam-Status: No, hits=1.7 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of yasumoto7@gmail.com designates 209.85.220.48 as permitted sender) Received: from [209.85.220.48] (HELO mail-pa0-f48.google.com) (209.85.220.48) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 30 Aug 2014 06:09:05 +0000 Received: by mail-pa0-f48.google.com with SMTP id ey11so7947524pad.7 for ; Fri, 29 Aug 2014 23:08:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:cc:content-type; bh=yy9Ut5h82Wo/wqlug4EmpMOvtWsfzzxXwFY2g52CFxY=; b=uD08oqhMMgTIJchEaxvBkdJIlI10ssbM+1bnJSk6T/v/mQiBnEm/gf/H+qMZWeDCud 8cIZkkc9Zfcfx32ZDPj1T8HP/YOxEDWEkKE9/jzsjFoheER6h6MFYz5mwa2DNb34RCfP J91HLTLPgueV55DbCh5kszFv8XrH0QlERvC7QVYGJmHxIqbw8XOlsE4plf84tB1j0UjA m8amprr2VP6fdY0fPyNVMEXDqvUXG2k68+44h2+nZXIu0kC1xm/SsSySwwa6TD/QV0bc +Vrub86f17Aix0Y5KM8rQdbU1SS8Wk2H18M+Q+wurB4gtKIi8Z76tXG7AqSD2ry2K8kh mWjg== X-Received: by 10.68.133.170 with SMTP id pd10mr21116086pbb.83.1409378924672; Fri, 29 Aug 2014 23:08:44 -0700 (PDT) MIME-Version: 1.0 Received: by 10.70.49.102 with HTTP; Fri, 29 Aug 2014 23:08:24 -0700 (PDT) From: Joe Smith Date: Fri, 29 Aug 2014 23:08:24 -0700 Message-ID: Subject: Mesos 12.04 Python2.7 Egg To: user@mesos.apache.org Cc: dev@aurora.incubator.apache.org Content-Type: multipart/alternative; boundary=001a1134b16628be3f0501d29a9d X-Virus-Checked: Checked by ClamAV on apache.org --001a1134b16628be3f0501d29a9d Content-Type: text/plain; charset=UTF-8 Howdy all, I'm to migrating Apache Aurora to mesos 0.20.0[1][2], but am having an issue using the published dist on PyPI . I also gave the mesosphere-provided (thank you!) egg for Ubuntu 12.04, and am getting the same stack trace: vagrant@192:~$ PYTHONPATH=/home/vagrant/.pex/install/mesos.native-0.20.0-py2.7-linux-x86_64.egg.be6632b790cd03172f858e7f875cdab4ef415ca5/mesos.native-0.20.0-py2.7-linux-x86_64.egg/mesos/ python2.7 Python 2.7.3 (default, Feb 27 2014, 19:58:35) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import mesos Traceback (most recent call last): File "", line 1, in ImportError: No module named mesos >>> import native Traceback (most recent call last): File "", line 1, in File "/home/vagrant/.pex/install/mesos.native-0.20.0-py2.7-linux-x86_64.egg.be6632b790cd03172f858e7f875cdab4ef415ca5/mesos.native-0.20.0-py2.7-linux-x86_64.egg/mesos/native/__init__.py", line 17, in from ._mesos import MesosExecutorDriverImpl ImportError: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.16' not found (required by /home/vagrant/.pex/install/mesos.native-0.20.0-py2.7-linux-x86_64.egg.be6632b790cd03172f858e7f875cdab4ef415ca5/mesos.native-0.20.0-py2.7-linux-x86_64.egg/mesos/native/_mesos.so) >>> It looks like the issue is it was built with a non-standard glibc (if I'm following right): vagrant@192:~/mesos-0.20.0$ /lib/x86_64-linux-gnu/libc.so.6 | grep release\ version GNU C Library (Ubuntu EGLIBC 2.15-0ubuntu10) stable release version 2.15, by Roland McGrath et al. Any feedback or suggestions would be greatly appreciated! Thanks, Joe [1] https://reviews.apache.org/r/25208/ [2] https://issues.apache.org/jira/browse/AURORA-674 --001a1134b16628be3f0501d29a9d Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Howdy all,

I'm to migrating=C2=A0Apache Aurora=C2=A0to=C2= =A0=C2=A0mesos 0.20.0[1][2], but am having an issue using the published dist on PyPI.= I also gave the=C2=A0mesosphere-provided (thank you!) egg=C2=A0for Ubuntu 12.04, = and am getting the same stack trace:

vagrant@192:= ~$ PYTHONPATH=3D/home/vagrant/.pex/install/mesos.native-0.20.0-py2.7-linux-= x86_64.egg.be6632b790cd03172f858e7f875cdab4ef415ca5/mesos.native-0.20.0-py2= .7-linux-x86_64.egg/mesos/ python2.7
Python 2.7.3 (default, Feb 27 20= 14, 19:58:35)=C2=A0
= [GCC 4.6.3] on linux2
>>> import mesos=
Traceback (most recent cal= l last):
=C2=A0 File= "<stdin>", line 1, in <module>
ImportError: No module named mes= os
>>> impo= rt native
Traceback = (most recent call last):
=C2=A0 File "<stdin>&= quot;, line 1, in <module>
=C2=A0 File "/home/vagrant/.pex/install/mesos.native-0.20= .0-py2.7-linux-x86_64.egg.be6632b790cd03172f858e7f875cdab4ef415ca5/mesos.na= tive-0.20.0-py2.7-linux-x86_64.egg/mesos/native/__init__.py", line 17,= in <module>
=C2=A0 =C2=A0 from ._mesos impor= t MesosExecutorDriverImpl
ImportError: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.16'= ; not found (required by /home/vagrant/.pex/install/mesos.native-0.20.0-py2= .7-linux-x86_64.egg.be6632b790cd03172f858e7f875cdab4ef415ca5/mesos.native-0= .20.0-py2.7-linux-x86_64.egg/mesos/native/_mesos.so)
>>>=C2=A0
<= /div>

It looks like the issue is it was bu= ilt with a non-standard glibc (if I'm following right):

vagrant@192:~/mesos-0.20.0$ /lib/x86= _64-linux-gnu/libc.so.6 | grep release\ version
GNU C Library (Ubuntu EGLIBC 2.15-0ubuntu10) st= able release version 2.15, by Roland McGrath et al.

Any feedback or suggestions would be greatly appr= eciated!

Thanks,
Joe

--001a1134b16628be3f0501d29a9d--