Skip to content

Instantly share code, notes, and snippets.

@sakserv
Created December 29, 2016 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sakserv/bc55f10fd35801bb374e8b8401bf07bb to your computer and use it in GitHub Desktop.
Save sakserv/bc55f10fd35801bb374e8b8401bf07bb to your computer and use it in GitHub Desktop.
Docker Create Performance
# Loop
for i in $(seq -w 1 10); do echo $i; (./launch_container_timings.sh $i | tee -a /tmp/ctr_timings.out &); done
# Docker Run Cmd
docker run --name ${base_name}${ctr_num} -dt $image $entrypoint
# Timings
01 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
02 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
03 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
04 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
05 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
06 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
07 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
08 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
09 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
10 - run_start_time - Thu Dec 29 15:19:18 UTC 2016
03 - run - 2835
03 - run_end_time - Thu Dec 29 15:19:21 UTC 2016
02 - run - 4798
02 - run_end_time - Thu Dec 29 15:19:23 UTC 2016
04 - run - 6652
04 - run_end_time - Thu Dec 29 15:19:25 UTC 2016
01 - run - 8580
01 - run_end_time - Thu Dec 29 15:19:27 UTC 2016
06 - run - 10652
06 - run_end_time - Thu Dec 29 15:19:29 UTC 2016
07 - run - 12263
07 - run_end_time - Thu Dec 29 15:19:30 UTC 2016
05 - run - 14690
05 - run_end_time - Thu Dec 29 15:19:33 UTC 2016
09 - run - 19148
09 - run_end_time - Thu Dec 29 15:19:37 UTC 2016
08 - run - 21349
08 - run_end_time - Thu Dec 29 15:19:39 UTC 2016
10 - run - 23909
10 - run_end_time - Thu Dec 29 15:19:42 UTC 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment