Re: UnsatisfiedLinkError in mesos 0.27 build with unbundled dependencies

2016-02-18 Thread Andrii Biletskyi
Please disregard this subject. I think I was able to fix the problem. As suggested in Dockerfile I ran ./configure with --disable-java flag. Removing it and reinstalling everything fixed the link error. Thanks, Andrii On Thu, Feb 18, 2016 at 8:11 AM, Andrii Biletskyi < andrii.bil

Re: UnsatisfiedLinkError in mesos 0.27 build with unbundled dependencies

2016-02-17 Thread Andrii Biletskyi
6.4) (7u95-2.6.4-0ubuntu0.14.04.1) OpenJDK 64-Bit Server VM (build 24.95-b01, mixed mode) Thanks, Andrii On Thu, Feb 18, 2016 at 2:46 AM, haosdent wrote: > Hi, do you try to set MESOS_NATIVE_JAVA_LIBRARY=/usr/local/lib/libmesos.so > ? > > On Thu, Feb 18, 2016 at 6:34 AM, Andrii Bilet

UnsatisfiedLinkError in mesos 0.27 build with unbundled dependencies

2016-02-17 Thread Andrii Biletskyi
rror: Exception in thread "main" java.lang.UnsatisfiedLinkError: org.apache.mesos.MesosSchedulerDriver.initialize()V at org.apache.mesos.MesosSchedulerDriver.initialize(Native Method) Is it a mesos build problem or some missing configuration? Thanks, Andrii Biletskyi

Re: Get Task's labels on reconciliation

2016-01-22 Thread Andrii Biletskyi
Okay, thanks for your answer. I will rework my algorithm so it doesn't rely on task labels/data. Thanks, Andrii On Fri, Jan 22, 2016 at 11:49 PM, Vinod Kone wrote: > > On Fri, Jan 22, 2016 at 1:07 PM, Andrii Biletskyi < > andrii.bilets...@stealth.ly> wrote: > >&

Re: Get Task's labels on reconciliation

2016-01-22 Thread Andrii Biletskyi
write highly > available frameworks. The docs will be on the website the next time it > is refreshed; in the mean time, you can find them here: > > https://reviews.apache.org/r/41896/diff/8#1 > > Neil > > [1] > https://github.com/apache/mesos/blob/master/include/mesos/

Get Task's labels on reconciliation

2016-01-22 Thread Andrii Biletskyi
Hi, I'm using Mesos 0.25. Is there any way to get some more information about the task (like label, taskData) when requesting task reconciliation? Right now i see that driver returns only taskId, slaveId, status, timestamp. Let me describe my use case so you have a better understanding. I'm tryi