Giter VIP home page Giter VIP logo

crane's People

Contributors

bluecloudmatrix avatar cty12 avatar hemingcui avatar lingyuan-he avatar lizheang avatar milannic avatar osdi16-p83 avatar ruigulala avatar wanzc12345 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

crane's Issues

DynamoRio Installation

When I tried to follow the README installation,
I got an error when I tried to setup the DynamoRio:

ln: failed to create symbolic link ‘./drcov.drrun64’: File exists

I got this when I tried to run this code :

cd tools && ln -s $PWD/../drcov.drrun64 .

I ignore this error because I think the ./drcov.drrun64 already exist in tools directory.
But then, when I continue the steps. I'm confused on when should I execute this :

Test dynamorio with the "drcov" code coverage tool.

Should I just execute it anywhere? Here is the respond when I try to execute it in crane root directory

drcov: command not found

What should I do to solve this?

TBD. reconfigure IP addresses for Crane.

I found this sentence on README.

  1. Compile libevent_paxos.

cd $MSMR_ROOT/libevent_paxos
./mk
make clean; make

TBD. reconfigure IP addresses for Crane.

So, how can I reconfigure the IP addresses in Crane?

boost::interprocess::interprocess_exception with apache tests

In my current setup (more on this at the bottom), the execution of the command below fails:

./new-run.sh configs/apache.sh no_build proxy_only 1

In particular, the ab client cannot produce any performance benchmark.
By inspecting the logs, it boils down to the following error/problem:

ubuntu@ubuntu:~$ ./worker-run.py -a httpd -x 1 -p 1 -k 0 -c /home/ubuntu/crane -m s -i 0 --sp 1 --sd 1 --scmd 'rm /home/ubuntu/crane/apps/apache/install/logs/*; /home/ubuntu/crane/apps/apache/install/bin/apachectl   -f /home/ubuntu/crane/apps/apache/install/conf/httpd.conf -k start ' --tool none --enable-lxc yes --dmt-log-output 0 --start_proxy_only no --start_server_only yes
checking semphores...
Copy $MSMR_ROOT/eval-container/nodes.local.cfg to current folder
Copy default.options to current folder
Restarting the lxc container u1




XTERN is enabled. Preload library.
Replay real server command in lxc container:
parallel-ssh -l ubuntu -v -p 1 -x "-oStrictHostKeyChecking=no  -i ./.ssh/lxc_priv_key" -i -t 10 -h /home/ubuntu/crane/eval-container/u1 "/home/ubuntu/crane/xtern/scripts/wrap-xtern.sh 'rm /home/ubuntu/crane/apps/apache/install/logs/*; /home/ubuntu/crane/apps/apache/install/bin/apachectl   -f /home/ubuntu/crane/apps/apache/install/conf/httpd.conf -k start ' "
[1] 09:32:00 [FAILURE] 10.0.3.111 Exited with error code 134
Stderr: terminate called after throwing an instance of 'boost::interprocess::interprocess_exception'
  what():  No such file or directory
/home/ubuntu/crane/xtern/scripts/wrap-xtern.sh: line 6:  1713 Aborted                 rm /home/ubuntu/crane/apps/apache/install/logs/*
terminate called after throwing an instance of 'boost::interprocess::interprocess_exception'
  what():  No such file or directory
/home/ubuntu/crane/xtern/scripts/wrap-xtern.sh: line 6:  1714 Aborted                 /home/ubuntu/crane/apps/apache/install/bin/apachectl -f /home/ubuntu/crane/apps/apache/install/conf/httpd.conf -k start

The 'no such file or directory' is not clear to what it refers exactly.
The u1 LXC container (into which the parallel-ssh command is executing to) has all the files.
Have you already seen this ?

I wonder if this is due to my current setup, and thus I'd be grateful if you could clarify something: is it possible to use Crane with services operating inside virtual machines (using KVM as hypervisor) ?
Or else, there is a strict requirement for them to be physical machines ?
In your evaluation (SOSP paper, section 7) you do specify the hardware spec of the replica machines, but not if those host virtual machines.
Thanks !

env variables $MY_PROXY and $MY_XTERN

The script apacheinstallbinapachectl relies on the existence of those two variables:

# Start the application server
if [ $MY_XTERN"X" = "1X" ]; then
LD_PRELOAD=$XTERN_ROOT/dync_hook/interpose.so \
$MSMR_ROOT/apps/apache/install/bin/apachectl -f $MSMR_ROOT/eval/current/server7000/httpd7000.conf -k start &> ../server7000/${TEST_NAME}_0_${NO}_s${LOG_SUFFIX} &
REAL_SERVER_PID_0=$!
else
$MSMR_ROOT/apps/apache/install/bin/apachectl -f $MSMR_ROOT/eval/current/server7000/httpd7000.conf -k start &> ../server7000/${TEST_NAME}_0_${NO}_s${LOG_SUFFIX} &
REAL_SERVER_PID_0=$!
fi

echo "sleep some time"
sleep ${SLEEP_TIME}

# Start our proxy
if [ $MY_PROXY"X" = "1X" ]; then
${SERVER_PROGRAM} -n 0 -r -m s -c ${CONFIG_FILE} -l ./log 1>./log/node_0_${NO}_stdout 2>./log/node_0_${NO}_stderr &
fi

Those variables are defined by the eval.py script that generates the apacheinstallbinapachectl :
https://github.com/columbia/crane/blob/master/eval/eval.py#L315
https://github.com/columbia/crane/blob/master/eval/eval.py#L324

Could you explain where those variables should point to ?
Thanks

Minimal Working Example Errors

Hello! I've written a very simple echo server in Python and am trying to replicate the server using crane. I've read through the instructions in the README which led me to read new-run.sh, worker-run.py, worker-build.py, master.py, etc. I couldn't run those scripts out of the box, so I tried to write the simplest script I could to replicate the server without them.

I want to run with three servers (running on 127.0.0.1:7000-7002) and three proxies (running on 127.0.0.1:9000-9002). For simplicity, I want to run all three servers and all three proxies on the same machine with Parrot but without LXC. I have the following two config files, which (I hope) set this up properly:

I run this command three times to run the three proxies. This command succeeds.

libevent_paxos/target/server.out -n $i -r -m s -c nodes.local.cfg -l ./proxy_logs

Then, I ran this to start the servers:

xtern/scripts/wrap-xtern.sh python server.py 700$i

Unfortunately, this does not work. Running this prints

terminate called after throwing an instance of 'boost::interprocess::interprocess_exception'
  what():  No such file or directory

I read through the code and found that the first second line of code in paxq_open_shared_mem inside of paxos-op-queue.cpp is throwing the exception. It looks like there are some files that it expects to exist inside of /dev/shm that don't exist. Do I have to make some files first before running my server? I noticed the paxq_create_shared_mem function above, but it is never called in the code. I added a call to it myself and then the server runs! But, unfortunately when I try to connect a client to a proxy, the messages are not being delivered.

Long story short, I want to replicate a simple server with crane as simply as possible and am running into some troubles. Any help or guidance would be greatly appreciated!

/PAXOS_OP_QUEUE is too small for this app

Executing a benchmark that hammers the Crane proxy with several requests, the proxy stops working. On the primary's logs, we find:

/PAXOS_OP_QUEUE-valerio is too small for this app. Please enlarge it in paxos-op-queue.h

We've tried several different values by changing the value of the ELEM_CAPACITY here: https://github.com/columbia/crane/blob/master/xtern/lib/runtime/paxos-op-queue.cpp#L34

Is that the right variable to change ? It doesn't seem to produce beneficial effects on our benchmark.

Problem with ./eval.py *cfg

I've followed the instructions in:
https://raw.githubusercontent.com/columbia/crane/master/README.md

Everything goes smoothly. Then, I try to execute the eval.py scripts.
First, it requires the installation of matplotlib:

sudo apt-get install libfreetype6-dev && sudo pip install matplotlib

Then, once executed I got the following errors.
Does it have to be executed from the host machine (ubuntu), or from the container's machine (u1) ?

ubuntu@ubuntu:~/PORTED/crane/eval⟫ ./eval.py *.cfg                                                                                                                                              
2015Sep09-20:54:02 DEBUG MSMR_ROOT = /home/ubuntu/PORTED/m-smr
2015Sep09-20:54:02 DEBUG config files: apache_ab.cfg, lighttpd_ab.cfg, memcached.cfg, memcached-tiny.cfg, mongodb.cfg, mongoose_ab.cfg, mongoose_aget.cfg, new-apace-ab.cfg, new-mongodb.cfg, new-mongoose-ab.cfg, new-mysql-sysbench.cfg, pgsql.cfg, pgsql-tiny.cfg, proftpd.cfg, ssdb.cfg
2015Sep09-20:54:02 DEBUG set timeformat to '\nreal %E\nuser %U\nsys %S'
2015Sep09-20:54:02 DEBUG find 'bash' at /bin/bash
2015Sep09-20:54:03 DEBUG git 6 digits hash code: b74d30
2015Sep09-20:54:03 DEBUG git reposotory status: _dirty
2015Sep09-20:54:03 DEBUG git commit date: 2015-09-07 17:26:18
2015Sep09-20:54:03 INFO processing 'apache_ab.cfg'
2015Sep09-20:54:03 DEBUG creating apache_ab2015Sep09_205403_b74d30_dirty
2015Sep09-20:54:03 DEBUG processing: apache /install/bin/apachectl
2015Sep09-20:54:03 DEBUG app = apache
2015Sep09-20:54:03 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/apache_installbinapachectl/apacheinstallbinapachectl
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/conf/httpd.conf’: No such file or directory
sed: can't read ../server7000/httpd.conf: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
2015Sep09-20:54:05 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/apache_installbinapachectl/apacheinstallbinapachectl 1'
 /home/ubuntu/PORTED/m-smr/eval/current/apache_installbinapachectl/apacheinstallbinapachectl 1
/home/ubuntu/PORTED/m-smr/eval/current/apache_installbinapachectl/log/node-0-proxy-req.log
2015Sep09-20:54:05 INFO processing 'lighttpd_ab.cfg'
2015Sep09-20:54:05 DEBUG creating lighttpd_ab2015Sep09_205405_b74d30_dirty
2015Sep09-20:54:05 DEBUG processing: lighttpd /install/sbin/lighttpd
2015Sep09-20:54:05 DEBUG app = lighttpd
2015Sep09-20:54:05 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/lighttpd_installsbinlighttpd/lighttpdinstallsbinlighttpd
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/lighttpd.conf’: No such file or directory
sed: can't read ../server7000/lighttpd.conf: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/lighttpd/install/ab’: No such file or directory
2015Sep09-20:54:07 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/lighttpd_installsbinlighttpd/lighttpdinstallsbinlighttpd 1'
 /home/ubuntu/PORTED/m-smr/eval/current/lighttpd_installsbinlighttpd/lighttpdinstallsbinlighttpd 1
/home/ubuntu/PORTED/m-smr/eval/current/lighttpd_installsbinlighttpd/log/node-0-proxy-req.log
2015Sep09-20:54:07 INFO processing 'memcached.cfg'
2015Sep09-20:54:07 DEBUG creating memcached2015Sep09_205407_b74d30_dirty
2015Sep09-20:54:07 DEBUG processing: memcached /install/bin/memcached
2015Sep09-20:54:07 DEBUG app = memcached
2015Sep09-20:54:07 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/memcached_installbinmemcached/memcachedinstallbinmemcached
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
2015Sep09-20:54:07 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/memcached_installbinmemcached/memcachedinstallbinmemcached 1'
 /home/ubuntu/PORTED/m-smr/eval/current/memcached_installbinmemcached/memcachedinstallbinmemcached 1
/home/ubuntu/PORTED/m-smr/eval/current/memcached_installbinmemcached/log/node-0-proxy-req.log
2015Sep09-20:54:07 INFO processing 'memcached-tiny.cfg'
2015Sep09-20:54:07 DEBUG creating memcached-tiny2015Sep09_205407_b74d30_dirty
2015Sep09-20:54:07 DEBUG processing: memcached /install/bin/memcached
2015Sep09-20:54:07 DEBUG app = memcached
2015Sep09-20:54:07 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/memcached_installbinmemcached/memcachedinstallbinmemcached
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/memcached/benchmark/bin/memslap’: No such file or directory
2015Sep09-20:54:07 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/memcached_installbinmemcached/memcachedinstallbinmemcached 1'
 /home/ubuntu/PORTED/m-smr/eval/current/memcached_installbinmemcached/memcachedinstallbinmemcached 1
/home/ubuntu/PORTED/m-smr/eval/current/memcached_installbinmemcached/log/node-0-proxy-req.log
2015Sep09-20:54:07 INFO processing 'mongodb.cfg'
2015Sep09-20:54:07 DEBUG creating mongodb2015Sep09_205407_b74d30_dirty
2015Sep09-20:54:07 DEBUG processing: mongodb /install/bin/mongod
2015Sep09-20:54:07 DEBUG app = mongodb
2015Sep09-20:54:07 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/mongodb_installbinmongod/mongodbinstallbinmongod
mkdir: cannot create directory ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/install/data7000’: No such file or directory
mkdir: cannot create directory ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/install/data7001’: No such file or directory
mkdir: cannot create directory ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/install/data7002’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/ycsb-0.1.4/mongodb-binding’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/ycsb-0.1.4/core’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/ycsb-0.1.4/CHANGELOG’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/ycsb-0.1.4/bin/ycsb’: No such file or directory
2015Sep09-20:54:07 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/mongodb_installbinmongod/mongodbinstallbinmongod 1'
 /home/ubuntu/PORTED/m-smr/eval/current/mongodb_installbinmongod/mongodbinstallbinmongod 1
/home/ubuntu/PORTED/m-smr/eval/current/mongodb_installbinmongod/log/node-0-proxy-req.log
2015Sep09-20:54:07 INFO processing 'mongoose_ab.cfg'
2015Sep09-20:54:07 DEBUG creating mongoose_ab2015Sep09_205407_b74d30_dirty
2015Sep09-20:54:07 DEBUG processing: mongoose /mongoose
2015Sep09-20:54:07 DEBUG app = mongoose
2015Sep09-20:54:07 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mongoose/mongoosemongoose
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
2015Sep09-20:54:09 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mongoose/mongoosemongoose 1'
 /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mongoose/mongoosemongoose 1
/home/ubuntu/PORTED/m-smr/eval/current/mongoose_mongoose/log/node-0-proxy-req.log
2015Sep09-20:54:09 INFO processing 'mongoose_aget.cfg'
2015Sep09-20:54:09 DEBUG creating mongoose_aget2015Sep09_205409_b74d30_dirty
2015Sep09-20:54:09 DEBUG processing: mongoose /mongoose
2015Sep09-20:54:09 DEBUG app = mongoose
2015Sep09-20:54:09 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mongoose/mongoosemongoose
2015Sep09-20:54:11 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mongoose/mongoosemongoose 1'
 /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mongoose/mongoosemongoose 1
/home/ubuntu/PORTED/m-smr/eval/current/mongoose_mongoose/log/node-0-proxy-req.log
2015Sep09-20:54:11 INFO processing 'new-apace-ab.cfg'
2015Sep09-20:54:11 DEBUG creating new-apace-ab2015Sep09_205411_b74d30_dirty
2015Sep09-20:54:11 DEBUG processing: apache /install/bin/apachectl
2015Sep09-20:54:11 DEBUG app = apache
2015Sep09-20:54:11 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/apache_installbinapachectl/apacheinstallbinapachectl
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/conf/httpd.conf’: No such file or directory
sed: can't read ../server7000/httpd.conf: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
2015Sep09-20:54:11 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/apache_installbinapachectl/apacheinstallbinapachectl 1'
 /home/ubuntu/PORTED/m-smr/eval/current/apache_installbinapachectl/apacheinstallbinapachectl 1
/home/ubuntu/PORTED/m-smr/eval/current/apache_installbinapachectl/log/node-0-proxy-req.log
2015Sep09-20:54:11 INFO processing 'new-mongodb.cfg'
2015Sep09-20:54:11 DEBUG creating new-mongodb2015Sep09_205411_b74d30_dirty
2015Sep09-20:54:11 DEBUG processing: mongodb /install/bin/mongod
2015Sep09-20:54:11 DEBUG app = mongodb
2015Sep09-20:54:11 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/mongodb_installbinmongod/mongodbinstallbinmongod
mkdir: cannot create directory ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/install/data7000’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/ycsb-0.1.4/mongodb-binding’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/ycsb-0.1.4/core’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/ycsb-0.1.4/CHANGELOG’: No such file or directory
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/mongodb/ycsb-0.1.4/bin/ycsb’: No such file or directory
2015Sep09-20:54:11 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/mongodb_installbinmongod/mongodbinstallbinmongod 1'
 /home/ubuntu/PORTED/m-smr/eval/current/mongodb_installbinmongod/mongodbinstallbinmongod 1
/home/ubuntu/PORTED/m-smr/eval/current/mongodb_installbinmongod/log/node-0-proxy-req.log
2015Sep09-20:54:11 INFO processing 'new-mongoose-ab.cfg'
2015Sep09-20:54:11 DEBUG creating new-mongoose-ab2015Sep09_205411_b74d30_dirty
2015Sep09-20:54:11 DEBUG processing: mongoose /mg-server
2015Sep09-20:54:11 DEBUG app = mongoose
2015Sep09-20:54:11 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mg-server/mongoosemg-server
cp: cannot stat ‘/home/ubuntu/PORTED/m-smr/apps/apache/install/bin/ab’: No such file or directory
2015Sep09-20:54:11 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mg-server/mongoosemg-server 1'
 /home/ubuntu/PORTED/m-smr/eval/current/mongoose_mg-server/mongoosemg-server 1
/home/ubuntu/PORTED/m-smr/eval/current/mongoose_mg-server/log/node-0-proxy-req.log
2015Sep09-20:54:11 INFO processing 'new-mysql-sysbench.cfg'
2015Sep09-20:54:11 DEBUG creating new-mysql-sysbench2015Sep09_205411_b74d30_dirty
2015Sep09-20:54:11 DEBUG processing: mysql /mysql-install/libexec/mysqld
2015Sep09-20:54:11 DEBUG app = mysql
2015Sep09-20:54:11 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/mysql_mysql-installlibexecmysqld/mysqlmysql-installlibexecmysqld
2015Sep09-20:54:11 INFO executing ' /home/ubuntu/PORTED/m-smr/eval/current/mysql_mysql-installlibexecmysqld/mysqlmysql-installlibexecmysqld 1'
 /home/ubuntu/PORTED/m-smr/eval/current/mysql_mysql-installlibexecmysqld/mysqlmysql-installlibexecmysqld 1
/home/ubuntu/PORTED/m-smr/eval/current/mysql_mysql-installlibexecmysqld/log/node-0-proxy-req.log
2015Sep09-20:54:11 INFO processing 'pgsql.cfg'
2015Sep09-20:54:11 DEBUG creating pgsql2015Sep09_205411_b74d30_dirty
2015Sep09-20:54:11 DEBUG processing: pgsql /<port>/install/bin/pg_ctl
2015Sep09-20:54:11 DEBUG app = pgsql
2015Sep09-20:54:11 DEBUG executible file = /home/ubuntu/PORTED/m-smr/eval/current/pgsql_<port>installbinpg_ctl/pgsqlinstallbinpg_ctl
Please cd to $MSMR_ROOT/apps/pgsql and "./mk_single 7000" first.

sched_setaffinity fails (xtern?)

We're getting a bunch of these in our deployment:

https://gist.github.com/vschiavoni/8a3f756604aaa6967fd481923ddc3083#file-error_log

httpd: /home/valerio/crane/xtern/obj/./../dync_hook/annotation_hooks.cpp:170: void tern_init_affinity(): Assertion 'sched_setaffinity(0, sizeof(mask), &mask) == 0' failed.
The errors are in the error_log file of apache when using the joint_sched option
The code that fails is here:

https://github.com/columbia/crane/blob/master/xtern/dync_hook/annotation_hooks.cpp#L170

Any idea of why this can happen ?

hardcoded Columbia IPs in new-run.sh

Currently the new-run.sh file has hardcoded hostnames pointing to Columia machines:

# Update worker-run.py to the server
scp worker-run.py bug03.cs.columbia.edu:~/
scp worker-run.py bug01.cs.columbia.edu:~/
scp worker-run.py bug02.cs.columbia.edu:~/

How should we change those ? Without modifying those, executing the new-run one gets these:

Permission denied (publickey).
lost connection
Permission denied (publickey).
lost connection
Permission denied (publickey).
lost connection
Permission denied (publickey).
lost connection

Support for Docker ?

Hi,
can Crane work with Docker instead of LXC ? Is there some inherent limitation or it should work (more or less) out of the box ?

How should I setup IPs of three replicas and one client machine?

I'm not a RCS@Columbia team, so how should I replace the need of 3 replica machines and one client machine?

I tried to use the ubuntu@u1 IP, and create two IP aliases, but it doesn't work.

When I tried to execute

./new-run.sh configs/apache.sh no_build joint_sched 1

I got this error :

/home/jeff/Programs/crane/eval-container
/home/jeff/Programs/crane/eval-container
The plan to run is: joint_sched
ssh_exchange_identification: read: Connection reset by peer
lost connection
Permission denied (publickey).
lost connection
ssh: connect to host bug02.cs.columbia.edu port 22: Connection refused
lost connection
ssh: connect to host bug02.cs.columbia.edu port 22: Connection refused
lost connection
running httpd with config joint_sched for 1 rounds...
this is round 1
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
ERROR: ld.so: object '/home/jeff/Programs/crane/libevent_paxos/client-ld-preload/libclilib.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
ERROR: ld.so: object '/home/jeff/Programs/crane/libevent_paxos/client-ld-preload/libclilib.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
apr_socket_recv: Connection refused (111)
ERROR: ld.so: object '/home/jeff/Programs/crane/libevent_paxos/client-ld-preload/libclilib.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
ERROR: ld.so: object '/home/jeff/Programs/crane/libevent_paxos/client-ld-preload/libclilib.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
apr_socket_recv: Connection refused (111)
Replaying parameters:
app : httpd
proxy : 1
xtern : 1
joint : 1 1
leader election : 0
checkpoint : 0
checkpoint_period : 10
MSMR_ROOT : /home/jeff/Programs/crane
build project : false
Killing residual processes

Removing temporaries

Starting proxy only or starting server only: yes no
replaying server master node command:
parallel-ssh -l jeff -v -p 1 -i -t 25 -h head "~/worker-run.py -a httpd -x 1 -p 1 -k 0 -c /home/jeff/Programs/crane -m s -i 0 --sp 1 --sd 1 --scmd 'rm /home/jeff/Programs/crane/apps/apache/install/logs/*; /home/jeff/Programs/crane/apps/apache/install/bin/apachectl -f /home/jeff/Programs/crane/apps/apache/install/conf/httpd.conf -k start ' --tool none --enable-lxc yes --dmt-log-output 0 --start_proxy_only yes --start_server_only no"

Master: replaying master node command:
parallel-ssh -l jeff -v -p 1 -i -t 25 -h worker1 "~/worker-run.py -a httpd -x 1 -p 1 -k 0 -c /home/jeff/Programs/crane -m r -i 1 --sp 1 --sd 1 --scmd 'rm /home/jeff/Programs/crane/apps/apache/install/logs/*; /home/jeff/Programs/crane/apps/apache/install/bin/apachectl -f /home/jeff/Programs/crane/apps/apache/install/conf/httpd.conf -k start ' --tool none --enable-lxc yes --dmt-log-output 0 --start_proxy_only yes --start_server_only no"

Master: replaying master node command:
parallel-ssh -l jeff -v -p 1 -i -t 25 -h worker2 "~/worker-run.py -a httpd -x 1 -p 1 -k 0 -c /home/jeff/Programs/crane -m r -i 2 --sp 1 --sd 1 --scmd 'rm /home/jeff/Programs/crane/apps/apache/install/logs/*; /home/jeff/Programs/crane/apps/apache/install/bin/apachectl -f /home/jeff/Programs/crane/apps/apache/install/conf/httpd.conf -k start ' --tool none --enable-lxc yes --dmt-log-output 0 --start_proxy_only yes --start_server_only no"

Starting proxy only or starting server only: no yes
replaying server master node command:
parallel-ssh -l jeff -v -p 1 -i -t 25 -h head "~/worker-run.py -a httpd -x 1 -p 1 -k 0 -c /home/jeff/Programs/crane -m s -i 0 --sp 1 --sd 1 --scmd 'rm /home/jeff/Programs/crane/apps/apache/install/logs/*; /home/jeff/Programs/crane/apps/apache/install/bin/apachectl -f /home/jeff/Programs/crane/apps/apache/install/conf/httpd.conf -k start ' --tool none --enable-lxc yes --dmt-log-output 0 --start_proxy_only no --start_server_only yes"

Master: replaying master node command:
parallel-ssh -l jeff -v -p 1 -i -t 25 -h worker1 "~/worker-run.py -a httpd -x 1 -p 1 -k 0 -c /home/jeff/Programs/crane -m r -i 1 --sp 1 --sd 1 --scmd 'rm /home/jeff/Programs/crane/apps/apache/install/logs/*; /home/jeff/Programs/crane/apps/apache/install/bin/apachectl -f /home/jeff/Programs/crane/apps/apache/install/conf/httpd.conf -k start ' --tool none --enable-lxc yes --dmt-log-output 0 --start_proxy_only no --start_server_only yes"

Master: replaying master node command:
parallel-ssh -l jeff -v -p 1 -i -t 25 -h worker2 "~/worker-run.py -a httpd -x 1 -p 1 -k 0 -c /home/jeff/Programs/crane -m r -i 2 --sp 1 --sd 1 --scmd 'rm /home/jeff/Programs/crane/apps/apache/install/logs/*; /home/jeff/Programs/crane/apps/apache/install/bin/apachectl -f /home/jeff/Programs/crane/apps/apache/install/conf/httpd.conf -k start ' --tool none --enable-lxc yes --dmt-log-output 0 --start_proxy_only no --start_server_only yes"

Deployment Done! Wait 10s for the servers to become stable!!!
Client starts apache benchmark. This is round 0.
Preload client library
client cmd reply : /home/jeff/Programs/crane/apps/apache/install/bin/ab -n 1000 -c 8 http://10.0.3.111:9000/test.php
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking 10.0.3.111 (be patient)

Client workload done. Please grab performance result. Wait 20 seconds before exit.
Client starts apache benchmark. This is round 1.
Preload client library
client cmd reply : /home/jeff/Programs/crane/apps/apache/install/bin/ab -n 1000 -c 8 http://10.0.3.111:9000/test.php
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeust^[[1;2BERROR: ld.so: object '/home/jeff/Programs/crane/libevent_paxos/client-ld-preload/libclilib.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
ERROR: ld.so: object '/home/jeff/Programs/crane/libevent_paxos/client-ld-preload/libclilib.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
apr_socket_recv: Connection refused (111)
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
/bin/sh: 1: parallel-ssh: not found
ech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking 10.0.3.111 (be patient)

Client workload done. Please grab performance result. Wait 20 seconds before exit.
Client starts apache benchmark. This is round 2.
Preload client library
client cmd reply : /home/jeff/Programs/crane/apps/apache/install/bin/ab -n 1000 -c 8 http://10.0.3.111:9000/test.php
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking 10.0.3.111 (be patient)

Client workload done. Please grab performance result. Wait 20 seconds before exit.
Wait for 180s to kill all the processes
Killing residual processes

Removing temporaries

low throughput requests ?

Hi,
i've finally been able to setup a Crane cluster (1 client, 3 replicas) and launch 2 of the benchmark scripts for Apache (./new-run.sh configs/apache.sh no_build orig 1, and ./new-run.sh configs/apache.sh no_build proxy_only 1). Interestingly, I get strangely low request rate results from ApacheBench.
In the case of (./new-run.sh configs/apache.sh no_build orig) I get:

Benchmarking 172.16.2.243 (be patient)


Server Software:        Apache/2.2.11
Server Hostname:        172.16.2.243
Server Port:            7000

Document Path:          /test.php
Document Length:        27 bytes

Concurrency Level:      8
Time taken for tests:   170.793 seconds
Complete requests:      1000
Failed requests:        0
Write errors:           0
Total transferred:      212000 bytes
HTML transferred:       27000 bytes
Requests per second:    5.86 [#/sec] (mean)
Time per request:       1366.340 [ms] (mean)
Time per request:       170.793 [ms] (mean, across all concurrent requests)
Transfer rate:          1.21 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    0   0.8      0      22
Processing:  1344 1364  28.8   1353    1542
Waiting:     1344 1364  28.8   1353    1542
Total:       1345 1365  28.8   1354    1543

Percentage of the requests served within a certain time (ms)
  50%   1354
  66%   1357
  75%   1365
  80%   1370
  90%   1394
  95%   1426
  98%   1472
  99%   1504
 100%   1543 (longest request)

In the case of ./new-run.sh configs/apache.sh no_build proxy_only 1, I get:

Benchmarking 172.16.2.243 (be patient)


Server Software:        Apache/2.2.11
Server Hostname:        172.16.2.243
Server Port:            9000

Document Path:          /test.php
Document Length:        27 bytes

Concurrency Level:      8
Time taken for tests:   178.657 seconds
Complete requests:      1000
Failed requests:        0
Write errors:           0
Total transferred:      212000 bytes
HTML transferred:       27000 bytes
Requests per second:    5.60 [#/sec] (mean)
Time per request:       1429.260 [ms] (mean)
Time per request:       178.657 [ms] (mean, across all concurrent requests)
Transfer rate:          1.16 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    0   0.3      0       5
Processing:  1348 1424  90.4   1384    1853
Waiting:     1347 1423  90.3   1382    1852
Total:       1348 1424  90.4   1385    1853

Percentage of the requests served within a certain time (ms)
  50%   1385
  66%   1422
  75%   1460
  80%   1494
  90%   1565
  95%   1615
  98%   1673
  99%   1725
 100%   1853 (longest request)

In your SOSP paper there is not mention of the raw performances, and plots report relative results.
Do you mind sharing such numbers (even privately via email if you prefer)?

thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.