20191130のdockerに関する記事は14件です。

dotfiles入りのdockerコンテナができた

dotfilesアドベントカレンダー4日目の記事です(^^)

この顔文字を使うのはおじさんだという指摘をどこかで見ました。。。私のことです。。

私のdotfilesはこちらです。

dotfiles自体は至って普通の?dotfilesでして、

  • パッケージをインストールしたり、
  • Neovim(Vim)やGitをビルドしたり、
  • dotfilesにリンクを張ったり、

するスクリプトがあったりするようなものです。

dotfilesはちょくちょく更新したくなるので、それがいざ使いたいときに動かないととても残念な気持ちになるので、テストしてます。

テストは、dockerコンテナを起動して、その中でdotfilesをインストールして、最後まで成功するか、というのを確認してます。

私はよく、社内Proxyのある環境でも作業するので、Proxyがある状況でもちゃんと動くかも、テストしてます。Proxy用のdockerコンテナも合わせて起動して、そのコンテナをProxyに設定する感じです。

こうしてテストしているうちに、このテストでできあがったコンテナをイメージにしておけば、いつでも開発環境のdockerコンテナが手に入るのでは?と思い、テストの最後に、DockerHubにイメージをpushするようにしました。

これで、開発環境はいくらでも使い捨てができます。作業に使うファイルはvolumeマウントしておけば消えてしまうこともありません。

なにかパッケージを試したくなったときも、わざわざ仮想環境を作る必要はありません。失敗したら、コンテナごと起動しなおせばよいのです。

最強の開発環境のできあがりです。みなさんもぜひお試しください。(^^)


(▽〃)。oO(なお、私は、普段は使ってません。。)

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

IBM Cloud Functionsで外部ライブラリを使いたい

IBM Cloud Functionsで標準対応している言語には、デフォルトで様々なライブラリが提供されています。ただ、デフォルトにはないライブラリを使って開発をするにはコマンドラインでの開発が必須になります。また、JavaはGUIの開発環境がないのでコマンドラインでの開発が必須になります。というわけで今回はPythonを例にコマンドラインでCloud Functionsの開発をしたときに詰まったことをまとめます。なお、今回は予めdockerをインストールしている前提で話を進めます。(他の言語で開発する場合も適宣読み替えていただくと開発できるかと思います。)

まずはドキュメント通りに作ってみる

今回はpythonのLINE bot SDKを入れていきたいと思います。こちらのドキュメントを参考にして,requirements.txtの中身を以下の通り作成します。

# Requirements.txt contains a list of dependencies for the Python Application #

# Setup modules
gevent == 1.4.0
flask == 1.0.2

# default available packages for python3action
beautifulsoup4 == 4.8.0
httplib2 == 0.13.0
kafka_python == 1.4.6
lxml == 4.3.4
python-dateutil == 2.8.0
requests == 2.22.0
scrapy == 1.6.0
simplejson == 3.16.0
virtualenv == 16.7.1
twisted == 19.7.0
PyJWT == 1.7.1

# packages for numerics
numpy == 1.16.4
scikit-learn == 0.20.3
scipy == 1.2.1
pandas == 0.24.2

# packages for image processing
Pillow == 6.2.1

# IBM specific python modules
ibm_db == 3.0.1
cloudant == 2.12.0
watson-developer-cloud == 2.8.1
ibm-cos-sdk == 2.5.1
ibmcloudsql == 0.2.23

# Compose Libs
psycopg2 == 2.8.2
pymongo == 3.8.0
redis == 3.2.1
pika == 1.0.1
elasticsearch == 6.3.1
cassandra-driver == 3.18.0
etcd3 == 0.10.0

#Additional modules
line-bot-sdk

テキストファイルを作成したところでdockerコマンドでFunctionsの動作環境を取得し、Pythonの仮想環境のパッケージを作成します。

$ docker pull ibmfunctions/action-python-v3.7
$ docker run --rm -v "$PWD:/tmp" ibmfunctions/action-python-v3.7 bash -c "cd /tmp && virtualenv virtualenv && source virtualenv/bin/activate && pip install -r requirements.txt"

デプロイしたときに動かすコード(__main__.py)を以下に掲載します。

__main__.py
def main(args):
    return {"result":"OK!"}

先ほど作成したパッケージとコードをzipに圧縮して、コマンドラインからアクションを作成します。なお、IBM Cloudコマンドでログインをしている状態で続けます。

$ zip -r hellobot.zip virtualenv __main__.py
$ ibmcloud fn action create hellobot hellobot.zip --kind python:3.7

すると、実行結果が以下に出力されました。

error: Unable to create action 'my-action-name': The connection failed, or timed out. (HTTP status code 413)

おや?タイポはしてないのにどうしてこんなエラーが出るのでしょう?

原因を調べてみた

このエラーの原因を調べてみたらStackoverflowでこんな記事を見つけました。
IBM Cloud functions - Unable to create an action
IBM Cloud Functionsの責任者らしき人の回答によると、これはコマンドライン側のバグのようで、このやり方ではアクションを作成できないようです。(それ、ドキュメントに書いてよー)

Docker Hubを使ってアクションを作成する(忙しい方はここから読んでください)

先程のStackoverflowの中にはバグだから使えないよってことを言っているだけではなく、代替の解決策も提示してくれたので、今度はそっちで試して行きたいと思います。こちらを参考にして自前で仮想環境を構築してDocker Hubにアップしてからアクションを作成します。この方法はDockerの操作に慣れている方なら簡単な操作ですが、触ったことない方には分かりにくいかもしれません。

実行環境を作成する

まずはアクションの実行環境のDockerfileを用意します。

FROM openwhisk/actionloop-python-v3.7:36721d6

COPY requirements.txt requirements.txt

RUN pip install --upgrade pip setuptools six && pip install --no-cache-dir -r requirements.txt

Dockerfileからお分かりいただけるかと思いますがこの中に出てくるrequirements.txtは先程作成したものをそのまま使うので中身は省略します。ここまで必要なファイルが揃ったので、以下のコマンドを実行し、イメージを作成します。完成に結構時間がかかります。

$ docker build -t linebot_function .

作成したイメージをDocker Hubにアップロードをします。Docker Hubに登録してない方は、こちらから登録します。登録したら、DockerのGUI画面を開きDockerにサインインをします。サインインできたら以下のコマンドを使用してアップロードをします。

$ docker push YOUR_USER_NAME/linebot_function

アクションを作成する

それでは実行環境を用意できたので、今度は動かすためのコードを用意します。今回は外部ライブラリとして、LINE botのPythonSDKを入れたのでそれがちゃんと入っているかを確認します。そこで以下のコードを用意します。

first-linebot.py
import linebot

def main(args):
    return {"LINEbot":linebot.__version__}

コードを用意したら、アクションを作成していきます。まずは、IBM Cloud Functionsのプラグインをインストールしていきます。

$ ibmcloud plugin install cloud-functions

以下のコマンドでリソースグループをターゲットします。グループ名に関してはこちらからログインして確認します。

$ ibmcloud target -o <org> -s <space> 

コードを用意できたので、以下のコマンドでアクションを作成します。

$ ibmcloud fn action create first-linebot --docker YOUR_USER_NAME/linebot_function first-linebot.py

エラーなく結果が返ってきたら成功です。

動作確認

これで作成したアクションの動作確認を行います。ですが、Dockerの実行環境で作成したアクションは、GUIから動作確認をできないのでこれもコマンドラインで操作をして行います。以下のコマンドを実行します。

ibmcloud fn action invoke first-linebot --result

実行後にLINE bot SDKのバージョンが結果として出力されたら、自前の環境でアクションが問題なく動作しています。

{
    "LINEbot": "1.15.0"
}

これで作成できるアクションの幅が広がると思います。今回構築した環境を使ってサーバーレスのLINE botを作成してみようと思います。

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

docker環境のpostgresのバージョンをお手軽にアップデートする(いろんなバージョンでいけるよ)

前提条件

  • dockerでpostgresを動かしている
  • dataディレクトリはホストマシン上等で永続化している。
  • ?なので、欲しいのはバージョンアップしたDBに対応した新しいdataディレクトリだけでよい
  • ネット上では pg_upgrade を使う方法が書かれているけど面倒そうだからやりたくないな…という強い気持ちを持っている?

TL;DR

tianonさんの作られた神ツール docker-postgres-upgrade を使うべし。
https://github.com/tianon/docker-postgres-upgrade

アップデートの手順

例として、PostgreSQL9.4系->9.6へアップデートしてみます。

PostgreSQL9.4のdataディレクトリが /Users/hoge/tmp/db にあると仮定します。
その場合以下のようになるはずです。

$ pwd
/Users/hoge/tmp
$ ll db
total 96
-rw-------   1 hoge  staff     4B 11 30 17:17 PG_VERSION
drwx------   9 hoge  staff   288B 11 30 17:18 base
drwx------  56 hoge  staff   1.8K 11 30 17:18 global
drwx------   4 hoge  staff   128B 11 30 17:18 pg_clog
drwx------   2 hoge  staff    64B 11 30 17:17 pg_commit_ts
drwx------   2 hoge  staff    64B 11 30 17:17 pg_dynshmem
-rw-------   1 hoge  staff   4.4K 11 30 17:17 pg_hba.conf
-rw-------   1 hoge  staff   1.6K 11 30 17:17 pg_ident.conf
drwx------   4 hoge  staff   128B 11 30 17:17 pg_logical
drwx------   4 hoge  staff   128B 11 30 17:18 pg_multixact
drwx------   3 hoge  staff    96B 11 30 17:18 pg_notify
...

PostgreSQL9.6系のdataディレクトリを db2 として構築する場合、以下のコマンドをおもむろに叩いてください。なお db2ディレクトリはホストPC上になくても大丈夫です

docker run --rm \
    -v /Users/hoge/tmp/db:/var/lib/postgresql/9.4/data \
    -v /Users/hoge/tmp/db2:/var/lib/postgresql/9.6/data \
    tianon/postgres-upgrade:9.4-to-9.6

するとこんな感じで処理が進んで…

The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with locale "en_US.utf8".
The default database encoding has accordingly been set to "UTF8".
The default text search configuration will be set to "english".

Data page checksums are disabled.

fixing permissions on existing directory /var/lib/postgresql/9.6/data ... ok
creating subdirectories ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default timezone ... Etc/UTC
selecting dynamic shared memory implementation ... posix
creating configuration files ... ok
running bootstrap script ...

...(省略)...
                                                            ok
Setting next OID for new cluster                            ok
Sync data directory to disk                                 ok
Creating script to analyze new cluster                      ok
Creating script to delete old cluster                       ok

Upgrade Complete
----------------
Optimizer statistics are not transferred by pg_upgrade so,
once you start the new server, consider running:
    ./analyze_new_cluster.sh

Running this script will delete the old cluster's data files:
    ./delete_old_cluster.sh

わーい。できあがりです。
コマンドの最後に analyze_new_cluster.sh を実行するように言われますが、内部で vacuumdb しているだけなので必要に応じて実行してください。

対応バージョン

docker-postgres-upgrade で対応しているバージョンは現時点(2019/11/30)で以下のとおりでした。

  • 10-to-11
  • 10-to-12
  • 11-to-12
  • 9.2-to-10
  • 9.2-to-11
  • 9.2-to-9.3
  • 9.2-to-9.4
  • 9.2-to-9.5
  • 9.2-to-9.6
  • 9.3-to-10
  • 9.3-to-11
  • 9.3-to-9.4
  • 9.3-to-9.5
  • 9.3-to-9.6
  • 9.4-to-10
  • 9.4-to-11
  • 9.4-to-12
  • 9.4-to-9.5
  • 9.4-to-9.6
  • 9.5-to-10
  • 9.5-to-11
  • 9.5-to-12
  • 9.5-to-9.6
  • 9.6-to-10
  • 9.6-to-11
  • 9.6-to-12

まさに神ツール❗

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

docker & gulp(brower-sync)で環境作りたい!

やりたいこと

docker-composeで作ったwordpressのローカル環境でgulpのbrowser-syncを使いたい

 課題

  • brower-syncのことをよく知らない
  • dockerで立ち上げたサーバーとbrowser-syncでのサーバーをリンクさせたい

参考サイト

https://qiita.com/Black-Yamasan/items/5b7d5feceed95cebbcad

 browser-syncについて調べる

https://www.browsersync.io/docs/gulp
↑公式のドキュメントです。公式読む癖つけないと。
以下、公式から引用

var gulp        = require('gulp');
var browserSync = require('browser-sync').create();

// Static server
gulp.task('browser-sync', function() {
    browserSync.init({
        server: {
            baseDir: "./"
        }
    });
});

// or...

gulp.task('browser-sync', function() {
    browserSync.init({
        proxy: "yourlocal.dev"
    });
});

var browserSync = require('browser-sync').create()
create()って何?と思って調べたら、
https://www.browsersync.io/docs/api
こちらの公式に以下の記述が。

Calling .create() means you get a unique reference & allows you to create multiple servers or proxies.

複数のサーバを建てられるしuniqueな参照(いまいちわからん)になるので推奨とのこと。

server:{}では指定したファイルでサーバーを構築でき、
proxy:{}では proxyで構築できる。

私の作業の場合はdockerですでに建てたサーバーを参照したいので、proxy:{}の方を使います。

実際に設定してみる

var browserSync = require('browser-sync')

function browserSyncTask() {
  return browserSync.init({
    proxy: 'localhost:8000'
  })
}

function bsReload() {
  return browserSync.reload()
}

exports.browserSync = browserSyncTask
exports.bsReload = bsReload

これでlocalhost:3000で開くようになり、
bsReloadを好きなところで呼び出して自動リロードできるようになります。やったぜ!

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

Docker コマンド チートシート

はじめに

Dockerのコマンドが全然覚えれん...。 そんな自分のためのメモです。
とりあえずよく使いそうなコマンドだけ。

イメージの操作

docker image --help

Usage:  docker image COMMAND

Manage images

Commands:
  build       Build an image from a Dockerfile
  history     Show the history of an image
  import      Import the contents from a tarball to create a filesystem image
  inspect     Display detailed information on one or more images
  load        Load an image from a tar archive or STDIN
  ls          List images
  prune       Remove unused images
  pull        Pull an image or a repository from a registry
  push        Push an image or a repository to a registry
  rm          Remove one or more images
  save        Save one or more images to a tar archive (streamed to STDOUT by default)
  tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE

イメージのビルド

docker image build DockerfileをもとにDockerイメージを作成する。

docker image build {Dockerfileへのパス}

-t イメージ名とタグ名を指定する。

docker image build -t {イメージ名:タグ名} .

-f 「Dockerfile」以外の名前のファイルをもとにイメージを作成する。

docker image -f {ファイル名} .

--pull ベースイメージを強制的に再取得する。

docker image --pull=true . 

イメージの一覧

docker image ls イメージの一覧を表示する。

docker image ls

イメージの詳細

docker image inspect Dockerイメージの詳細を表示する。

docker image inspect {イメージ名:タグ名}

イメージの検索

docker search Docker Hubに登録されているリポジトリを検索する。

docker search {キーワード}

--limit 表示件数を制限する。

docker search --limit 10 {キーワード}

イメージの取得

docker image pull Dockerレジストリからイメージを取得する。
tagを省略するとデフォルトタグ(latest)が指定される。

docker image pull {リポジトリ:タグ名}

イメージの削除

docker image rm Dockerイメージを削除する。

docker image rm {イメージ名:タグ名}

-f イメージを強制的に削除する。

docker image rm -f {イメージ名:タグ名}

イメージのタグ付け

docker image tag Dockerイメージの特定バージョンにタグをつける。

docker image tag {イメージ名:タグ名} {イメージ名:新タグ名}

イメージの公開

docker image push DockerイメージをDocker Hub等のレジストリに登録する。

docker image push {イメージ名:タグ名}

コンテナの操作

docker container --help

Usage:  docker container COMMAND

Manage containers

Commands:
  attach      Attach local standard input, output, and error streams to a running container
  commit      Create a new image from a container's changes
  cp          Copy files/folders between a container and the local filesystem
  create      Create a new container
  diff        Inspect changes to files or directories on a container's filesystem
  exec        Run a command in a running container
  export      Export a container's filesystem as a tar archive
  inspect     Display detailed information on one or more containers
  kill        Kill one or more running containers
  logs        Fetch the logs of a container
  ls          List containers
  pause       Pause all processes within one or more containers
  port        List port mappings or a specific mapping for the container
  prune       Remove all stopped containers
  rename      Rename a container
  restart     Restart one or more containers
  rm          Remove one or more containers
  run         Run a command in a new container
  start       Start one or more stopped containers
  stats       Display a live stream of container(s) resource usage statistics
  stop        Stop one or more running containers
  top         Display the running processes of a container
  unpause     Unpause all processes within one or more containers
  update      Update configuration of one or more containers
  wait        Block until one or more containers stop, then print their exit codes

コンテナの作成と実行

docker container run Dockerイメージからコンテナを作成・実行する。

docker container run {イメージ名:タグ名(イメージID)}

--name コンテナ名を指定する。

docker container run --name {コンテナ名}

-i コンテナの標準入力を使用する。
-t コンテナの擬似端末を有効にする。
組み合わせて使用する事が多く、ターミナルの使用・文字入力を有効にする。

docker container run -it {イメージ名:タグ名(イメージID)}

-d バックグラウンドで実行する。

docker container run -d {イメージ名:タグ名(イメージID)}

--rm コンテナ終了時にコンテナを破棄する。

docker container run --rm {イメージ名:タグ名(イメージID)}

-v ホスト/コンテナ間でディレクトリ・ファイルを共有する。

docker container run -v {ホストディレクトリ:コンテナ内ディレクトリ} {イメージ名:タグ名(イメージID)}

-p ポートフォワーディングを設定する。

docker container run -p {ホスト側ポート:コンテナ側ポート} {イメージ名:タグ名}

コンテナの作成

docker contianer create イメージからコンテナを作成する。

docker container create {イメージ名:タグ名}

--name コンテナ名を指定する。

docker container create --name {コンテナ名}

コンテナの起動

docker container start コンテナを起動する。

docker container start {コンテナ名(コンテナID)}

コンテナの再起動

docker container restart 停止中のコンテナを再起動する。

docker container restart {コンテナ名(コンテナID)}

コンテナの停止

docker container stop 起動中のコンテナを停止する。

docker container stop {コンテナ名(コンテナID)}

コンテナの削除

docker container rm コンテナを削除する。

docker container rm {コンテナ名(コンテナID)}

コンテナの一覧

docker container ls コンテナの一覧を表示する。

docker container ls

-a 停止中のコンテナも表示する

docker container ls -a

-q コンテナIDのみを表示する。

docker container ls -q

--filter 条件に一致するものだけを表示する。

docker container --filter "{フィルタ名=値}"

標準出力の取得

docker container logs 実行中コンテナの標準出力を表示する。

docker container logs {コンテナ名(コンテナID)}

実行中コンテナでのコマンド実行

docker container exec 実行中のコンテナ内で任意のコマンドを実行する。

docker container exec {コンテナ名(コンテナID)} {コマンド}

ファイルのコピー

docker container cp ホスト/コンテナ間、コンテナ間でファイルをコピーする。

docker container cp {コンテナ名(コンテナID)}:{コンテナ内コピー元} {ホストコピー先}
docker container cp {ホストコピー元} {コンテナ名(コンテナID)}:{コンテナ内コピー先}

管理用コマンド

イメージの一括削除

docker image prune イメージを一括削除する。

docker image prune

$ docker image prune
WARNING! This will remove all dangling images.
Are you sure you want to continue?

dangling image(宙ぶらりんのイメージ)を削除するらいいけど、判断基準がイマイチわかってない。

コンテナの一括削除

docker container prune 停止中のコンテナを一括削除する。

docker container prune

Dockerリソースの一括削除

docker system prune 利用されていないDockerイメージやコンテナ、ボリューム、ネットワーク等、すべてのリソースを一括削除する。

docker system prune

おわりに

イメージとコンテナの操作に関するものだけですが、色々調べながらまとめたら頭がスッキリ。

指摘、修正、追記等々に関するコメント頂ければ幸いです。

参考

プログラマのためのDocker教科書 第2版
Docker/Kubernetes 実践コンテナ入門

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

【Docker】はじめてのDocker〜概要・PHPコマンドの実行まで

名前しか知らなかったDockerを使ってみました。
備忘録です。

Dockerとは

コンテナ型の仮想環境を提供するツール
docker初心者の方が知っておいた方がよい基礎知識

なぜ使うのか

  • 従来の仮想環境(ハイパーバイザ型)と比較して軽く、リソース消費が少ないから
  • 作成した環境を簡単に配布できるから

用語集

解説はDocker-docs-ja/用語集を参考にしています。

ハイパーバイザ型・コンテナ型の概要も含め、図で見た方が分かりやすいです。
Dockerのすべてが5分でわかるまとめ!(コマンド一覧付き)

Dockerコンテナ

  • Dockerイメージを実行するときの実体(runtime instance)
  • Dockerイメージを実行(run)するとDockerコンテナが生成される
  • OSレベルの仮想化を行う

Dockerイメージ

  • Dockerコンテナの元のようなもの
  • 環境を作るための設定がひとまとめになっている

Dockerfile

  • Dockerイメージを構築するために必要な命令の一覧
  • DockerfileをビルドするとDockerイメージが構築される
  • テキスト形式のドキュメント

リポジトリ

  • Dockerイメージの集合体

レジストリ

  • リポジトリを預かるサービス(Docker Hub)

実行

ファイル作成

必要なディレクトリ・ファイルを作成します。

$ mkdir docker_test
$ cd docker_test
$ touch main.php
$ touch Dockerfile

実行ファイル

main.php
<?php 
echo "Hello! World!\n";
echo phpversion()."\n";

Dockerfile

イメージはphp:7.2-cliを指定したので、7.2系で最新のバージョンが呼び出されます。

Docker Hub - php
Dockerfile リファレンス
【入門】Dockerfileの基本的な書き方

# イメージを指定
FROM php:7.2-cli

# イメージ上で実行するコマンドを指定
# helloディレクトリを作成
RUN mkdir /hello
# helloディレクトリにmain.phpをコピー
COPY main.php /hello

# 実行コマンド
# php /hello/main.phpを実行
CMD [ "php", "/hello/main.php" ]

ビルド

buildコマンドでビルドし、新しいイメージを生成します。

tオプションリポジトリ名hello-app実行場所を指定します。
タグ名は指定していないので、デフォルトのlatestが設定されます。

同名のリポジトリが複数存在する場合は、タグをつけて識別します。

イメージのタグ付け、送信、取得
リポジトリ(repository)
タグ

$ docker build -t hello-app .
# 省略
Successfully built b9d2c9893a00
Successfully tagged hello-app:latest

ビルドが成功しました。

起動

runコマンドで新しくコンテナを起動します。

$ docker run hello-app
Hello! World!
7.2.25

Dockerfileのコマンドが実行されました。
phpのバージョンもFROMで指定したバージョン(7.2系で最新)になっています。

コンテナはイメージIDを指定して起動することもできます。

$ docker run b9d2c9893a00
Hello! World!
7.2.25

imagesコマンドでイメージの一覧が表示されます。
ここでリポジトリやタグの確認ができます。

$ docker images
REPOSITORY                 TAG                 IMAGE ID            CREATED             SIZE
hello-app                  latest              b9d2c9893a00        11 minutes ago      398MB

その他のコマンドはコマンドライン・リファレンスで確認できます。

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

Docker - How to Get Private Git Repository Inner Golang Container?

This method didn't need to generate ssh key.

FROM golang:1.13.4-alpine
...
...
...
ARG GIT_URL
ARG GIT_GROUP
ARG GIT_ACCOUNT
ARG GIT_PASSWORD

RUN apk update -qq && apk --no-cache add git

RUN printf "machine ${GIT_URL}\n\
    login ${GIT_ACCOUNT}\n\
    password ${GIT_PASSWORD}\n"\
    >> /root/.netrc
RUN chmod 600 /root/.netrc

RUN go env -w GOPRIVATE=${GIT_URL}/${GIT_GROUP}
...
...
...

https://medium.com/@jwenz723/fetching-private-go-modules-during-docker-build-5b76aa690280

https://blog.csdn.net/du_chao_qun/article/details/53464454

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

Docker - How to Get Private Git Repository Inner Golang Container via HTTP?

You may be put your golang modules in a self-hosting git repository which likes gitlab. The most ways to tell us using ssh method and it is not easy enough (need to generate ssh key). I am just want to use https to get golang modules.

FROM golang:1.13.4-alpine
...
...
...
ARG GIT_URL
ARG GIT_GROUP
ARG GIT_ACCOUNT
ARG GIT_PASSWORD

RUN apk update -qq && apk --no-cache add git

RUN printf "machine ${GIT_URL}\n\
    login ${GIT_ACCOUNT}\n\
    password ${GIT_PASSWORD}\n"\
    >> /root/.netrc
RUN chmod 600 /root/.netrc

RUN go env -w GOPRIVATE=${GIT_URL}/${GIT_GROUP}
...
...
...

https://medium.com/@jwenz723/fetching-private-go-modules-during-docker-build-5b76aa690280

https://blog.csdn.net/du_chao_qun/article/details/53464454

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

Docker×Datadog×PHP実装まとめ(APM編)

概要

Datadogを使って、Docker(ECS)で実装しているPHPウェブアプリのメトリクスを収集し、Datadogコンソール(APMService)で監視できるようにする。

アウトライン

・PHPコンテナに、DatadogAPMの計測設定
・ローカル開発環境(docker-compose)で、datadog/agentコンテナを実装
・クラウド開発環境(ECS)で、datadog/agentコンテナを実装

作業ログ

PHPコンテナに、DatadogAPMの計測設定

・PHPにDatadog拡張機能(datadog-php-tracer)をインストール
→PHPコンテナのDockerfileにインストールする。

ENV DDTRACE_VERSION=0.30.1
RUN curl -Lo datadog-php-tracer.apk https://github.com/DataDog/dd-trace-php/releases/download/${DDTRACE_VERSION}/datadog-php-tracer_${DDTRACE_VERSION}_noarch.apk \
&& apk add datadog-php-tracer.apk --allow-untrusted \
&& rm datadog-php-tracer.apk

※コンテナを実行して、↓phpinfo()でインストールされていることを確認
83EB3AE9-FBA4-4C11-8B98-30BD6F8A12BD.png

※datadog-php-tracerをインストールするだけで、勝手に計測してdatadog/agentのEPに計測データを送信してくれる。

ローカル開発環境(docker-compose)で、datadog/agentコンテナを実装

ローカルでコンテナを実行し、datadogコンソールにデータを送信できることを確認する。
↓構成としてはこんな感じ。
local-env-datadog.jpg

datadog/agentコンテナ

datadogの公式イメージ(datadog/agent)に、環境変数を設定して実行

  • datadogのAPIキー

※キーは、Datadogコンソールの Integrations - APIs - API keys から確認

DD_API_KEY=***
  • Datadog Agentのトレースメトリクスを有効にする。
DD_APM_ENABLED=true
  • データ送信先サイトを設定
DD_SITE=datadoghq.com
  • 非ローカルトラフィックのトレース許可
DD_APM_NON_LOCAL_TRAFFIC=true
PHPコンテナの設定

環境変数で計測データの設定を行う。

  • datadog-agentコンテナのhost名を設定
DD_AGENT_HOST=datadog-agent

※datadog/agentのサービス名をdatadog-agentにしたのでそのまま設定(デフォルトはlocalhost)

  • APM - Services名 (APMのサービス名)
DD_SERVICE_NAME=php-apm

スクリーンショット_2019-11-25_18_55_56.jpg

docker-compose.yml

version: '3'
services:
  php-apache:
    container_name: php_apache_container
    build: ./php_apache_container
    volumes:
      - ./php_apache_container/src:/var/www/html
    environment:
      DD_AGENT_HOST: "datadog-agent"
      DD_SERVICE_NAME: "php-apache"
      DD_TRACE_GLOBAL_TAGS: "env:local,service:php-apache"
      DD_TRACE_ANALYTICS_ENABLED=true
    networks:
      - net


  datadog-agent:
    container_name: datadog-agent
    image: datadog/agent:latest
    environment:
      DD_API_KEY: "******"
      DD_APM_ENABLED: "true"
      DD_SITE: "datadoghq.com"
      DD_APM_NON_LOCAL_TRAFFIC: "true"
    networks:
      net:

networks:
  net:
    driver: bridge
    ipam:
      driver: default
      config:
        - subnet: 172.16.238.0/24

※だいたい↑の感じ。。業務用コード、固有名詞をざっくり削除、編集したもの載せてます。動作は見てない。

クラウド開発環境(ECS)で、datadog/agentコンテナを実装

↓だいたい下記の感じで実装
KAKUNIN_ECS-Sample.jpg

・ECSはEC2モード
・PHPコンテナは、Replica、AWSVPCモード、Datadogコンテナは、Daemon、Bridgeモードで起動

ENIの制限

※使用するインスタンスタイプはENI数:3
AWSVPCモードだと1タスクにつき1つのENIを使用する為、ENI枯渇を防ぐ為、datadogコンテナはbridgeモードで実装

PHPコンテナ→Datadogコンテナの通信経路

タスク間を跨いで通信する場合、直接通信できない為、Route53でPrivateHostedZone→ALBを通して、datadog/agentコンテナに計測メトリクスを送信する。
※サービス検出とSRVレコードを使った方法もあるらしいが、datadog-php-tracer(の通信に使ってるCURL)がSRVレコードに対応してないようなので使えない?ぽい。

タスク定義

・ローカル環境でも設定した環境変数をenvironmentに設定
・APIキーはパラメータストアに設定して、ARNを指定
・portはdatadogAPM用ポート8126を設定
※terraformで管理してる為、設定値を${var}の形で外部から設定できるようにしてる。(JSONのLINTに怒られるけど気にしない)

[
  {
    "name": "datadog-agent",
    "image": "datadog/agent:latest",
    "cpu": 10,
    "memory": 256,
    "portMappings": [
      {
        "hostPort": ${dd_trace_agent_port},
        "protocol": "tcp",
        "containerPort": ${dd_trace_agent_port}
      }
    ],
    "essential": true,
    "mountPoints": [
      {
        "containerPath": "/var/run/docker.sock",
        "sourceVolume": "docker_sock",
        "readOnly": true
      },
      {
        "containerPath": "/host/sys/fs/cgroup",
        "readOnly": true,
        "sourceVolume": "cgroup"
      },
      {
        "containerPath": "/host/proc",
        "readOnly": true,
        "sourceVolume": "proc"
      }
    ],
    "environment": [
      {
        "name": "DD_APM_ENABLED",
        "value": "true"
      },
      {
        "name": "DD_SITE",
        "value": "datadoghq.com"
      },
      {
        "name": "DD_APM_NON_LOCAL_TRAFFIC",
        "value": "true"
      },
      {
        "name": "DD_TAGS",
        "value": "php-sample"
      }
    ],
    "secrets": [
      {
        "name": "DD_API_KEY",
        "valueFrom": "${dd_api_key}"
      }
    ]
  }
]
  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

初心者向けDockerの基礎

Dockerについて学ぶ機会がありましたので、備忘を兼ねてDockerを知らない方向けに記事を書いてみようと思いました。
私もDockerについて何一つ知らない状態でしたので、同じような方を対象に記事を記載しようと思います。

Dockerとは

まずDockerとはなにかですが、コンテナ型仮想化技術のひとつです。従来のホスト型やハイパーバイザ型と異なり、コンテナ型はディスク使用量が少なくすみ、仮想環境の作成、起動が短時間で行なえかつ性能劣化が殆どないという優れたものになります。しかもオープンソースなので無料で使用できます。
コンテナ型は何故上記のような利点が生まれるのかというと

  1. コンテナ型はホスト型やハイパーバイザ型と異なりゲストOSを持たずホストOSが直接コンテナ管理ソフト(Docker)を使用するため
  2. 後述するdocker runコマンドでイメージを取得しコンテナ起動、つまり仮想環境が1コマンドで完了する

といったようなことがあげられます。これは便利。
この1コマンドで環境構築できるというのが優れているところは、パッケージングしておけばどんな場面でも全く同一の環境が作成できるというところにあります。テスト環境と本番環境が微妙に異なり本番環境で予期せぬ動作をするといったことが防げます。

実際にDockerをインストールしてみる

Dockerについてを簡単にですが記しました。次はDockerをインストールして実際に使ってみようと思います。知らないことを覚えるには実際にやってみるのが一番ですね。
Dockerにはエディションがあります。無償版のDocker Community Edition(CE)と商用サポートが有るDocker Enterprise Edition(EE)です。個人で使用するので無償版のDocker Community Editionを使っていきます。

自分の環境がWindows7 64bitのため今回使うのはDocker Toolboxとします。Windowsの場合、Docker for Windowsもあるのですが、こちらはWindows10かつPro、Enterprise、Educationでなければインストール出来ないため選択肢から除外。Docker ToolboxもWin7の64bitなら動きますが、32bitでは動かないため注意してください。ではインストールしていきます。 

  1. Docker Toolboxをダウンロード
     githubからダウンロードします。以下のURLから飛べます。
     https://github.com/docker/toolbox/releases

  2. 画面中部からDockerToolbox-19.03.1.exeを保存

  3. インストール実行
    デフォルトの状態でインストールを進めていきます。
    WS000000.JPG
    WS000001.JPG
    WS000002.JPG
    次は一番下の項目にチェックを付けてからNextをクリックします。
    WS000003.JPG
    WS000004.JPG
    デバイスソフトウェアの確認が出たらインストールをクリックします。
    WS000005.JPG
    WS000008.JPG
    Finishをクリックしインストール完了です。デスクトップにOracle VM VirtualBox、Docker Quickstart Terminal、Kitematic (Alpha)が作られましたので、Docker Quickstart Terminalから起動します。
    セットアップが進んでいき、クジラが表示されたらセットアップ完了です。くじらの背中にある#マークはコンテナを表してるそうですよ。
    WS000010.jpg

Dockerの基本操作について

Dockerを操作するコマンドは基本的に先頭にDockerを付けます。正常にインストールが完了したかの確認も兼ねてバージョン確認をしてみます。

$ docker version
Docker version 19.03.1, build 74b1e89e8a

バージョンが確認できたので、正常ににインストールできていました。
では次に早速コンテナを起動してみたいと思います。ここではお約束であるhello worldイメージを使います。docker run hello-worldを投入してみましょう。

$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1b930d010525: Pull complete
Digest: sha256:4df8ca8a7e309c256d60d7971ea14c27672fc0d10c5f303856d7bc48f8cc17ff
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

ちゃんとコンテナ起動ができました。どのようにしてコンテナの起動を行ったのかを説明します。

先程使用したdocker run hello-worldコマンドですが、runがコンテナ起動のコマンドで、hello-worldがDockerイメージの名前です。イメージとコンテナは下記の様な意味となります。

  • イメージ
    コンテナを起動させるためのベースファイル」のこと

  • コンテナ
    Dockerのイメージを元に作成される仮想環境の実行部分」のこと

runコマンドはイメージを取得してきてそのイメージからコンテナを作成し起動を行ってくれるコマンドです。
以下のコマンドをまとめて実行してくれています。
docker pull ⇛イメージの取得
docker create ⇛コンテナの作成
docker start ⇛コンテナの起動
上記のことからdocker run hello-worldでコンテナ起動ができたという訳です。

DockerのイメージはDockerの公式サイトであるDockerHubから取得しています。サイトではイメージ一覧の確認が可能です。
https://hub.docker.com

次に取得したdockerのイメージを確認してみます。

$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
hello-world         latest              fce289e99eb9        10 months ago       1.84kB

hello-worldのイメージのみ取得している状態のため、1つだけ表示されました。

次に取得したイメージを削除してみます。イメージの削除コマンドはrmiです。docker rmi [IMAGE ID]の形式で使用します。

$ docker rmi fce289e99eb9
Error response from daemon: conflict: unable to delete fce289e99eb9 (must be forced) - image is being used by stopped container a9b8233830bf

エラーが出ました。イメージは停止したコンテナが使っているので削除できませんって表示されていますね。
先にコンテナを削除する必要があるそうです。

というわけでコンテナを削除します。コンテナ削除のコマンドはrmです。docker rm [CONTAINER ID]の形式で使用します。
起動中のコンテナを確認するコマンドはdocker psです。ただ、hello-worldはメッセージ出力が終わると自動的にコンテナを停止してしまうため、ステータスに関係なく全てのコンテナを表示するdocker ps -aを使用します。

$ docker ps -a
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS                      PORTS               NAMES
a9b8233830bf        hello-world         "/hello"            16 minutes ago      Exited (0) 16 minutes ago                       heuristic_vaughan

このコンテナを削除してみます。

$ docker rm a9b8233830bf
a9b8233830bf
$ docker ps -a
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES

ちゃんと消えていますね。これでイメージを削除できます。

$ docker rmi fce289e99eb9
Untagged: hello-world:latest
Untagged: hello-world@sha256:4df8ca8a7e309c256d60d7971ea14c27672fc0d10c5f303856d7bc48f8cc17ff
Deleted: sha256:fce289e99eb9bca977dae136fbe2a82b6b7d4c372474c9235adc1741675f587e
Deleted: sha256:af0b15c8625bb1938f1d7b17081031f649fd14e6b233688eea3c5483994a66a3
$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE

イメージを無事に削除できました。イメージを削除するには、
1. コンテナ削除
2. イメージ削除
の順で実施しましょう。

※補足
コンテナが起動されていても-fオプションを付けてDocker rmi -f [IMAGE ID]のように実行すればイメージを強制削除することもできます。
ただし、強制削除した場合はコンテナは消えずに残り続けるので、環境をキレイにするにはコンテナも削除します。

おわりに

Dockerを使用する準備段階から実際にコンテナ起動までを記載してみました。
次回を書く機会がありましたら、Dockerでよく使うコマンドまとめや、実際にDockerを活用して開発環境を作成する記事を書こうかなと思います。

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

知っておくと便利なDocker操作・コマンド

(こちらは、さくらインターネットアドベントカレンダー2019 1日目の投稿です。意外と知られてなさそうな操作方法やコマンドを紹介します。 )

概要

Docker を日常で利用するにあたり、操作が便利になる方法や、コマンド、考え方です。他にも思いついたら、また追加していきます。

Tips

コンテナ ID やイメージ ID などに対する操作は前方一致

各コンテナやイメージ、ネットワーク、ボリュームには、ユニークな 64 文字の ID が割り振られています。

docker コマンドで、コンテナ ID 等を指定時、すべてのコンテナ ID を入力する必要はありません。 Docker は内部で 前方一致 する対象を自動的に判別します。

たとえば、 docker ps で次のコンテナが表示されるとします。

# docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS               NAMES
66015a77c86e        nginx               "nginx -g 'daemon of…"   5 seconds ago       Up 4 seconds        80/tcp              sleepy_carson

この時、このコンテナを停止するには docker kill 66015a77c86e (コンテナのショートIDを指定)、または docker kill sleepy_carson のようにコンテナ名を指定します。

ですが、 docker kill 6 のみでも停止できます。ただし、他にも前方一致するコンテナが存在しない場合です。

# docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS               NAMES
66015a77c86e        nginx               "nginx -g 'daemon of…"   5 seconds ago       Up 4 seconds        80/tcp              sleepy_carson
6dfe781fb0d3        nginx               "nginx -g 'daemon of…"   8 seconds ago       Up 7 seconds        80/tcp              beautiful_pasteur

ここでは、 6 で始まるコンテナ ID が複数ある場合に docker kill 6 を実行すると、エラー Error response from daemon: Cannot kill container: 6: Multiple IDs found with provided prefix: 6 と表示されます(前方一致するる複数のコンテナ ID が存在するという内容)。

このような場合もありますので、 docker kill 660 のように、3文字くらい普段から入力する癖をつけておくと、毎回コンテナ ID をコピー&ペーストする必要がないので便利です。

docker system df で容量表示

Docker コンテナ、イメージやネットワーク、ボリュームでどれだけホスト上の容量を使用しているかを調べるコマンドです。

# docker system df
TYPE                TOTAL               ACTIVE              SIZE                RECLAIMABLE
Images              2                   1                   345.4MB             219.6MB (63%)
Containers          2                   0                   4B                  4B (100%)
Local Volumes       0                   0                   0B                  0B
Build Cache         0                   0                   0B                  0B

環境のクリーンアップ

docker system prune コマンド

docker system prune コマンドを実行すると、以下のリソースをまとめて削除します。

  • すべての停止中のコンテナ
  • コンテナに使用されていないネットワーク
  • ビルドで用いられr中間イメージとビルド・キャッシュ

確認のプロンプトで y を入力すると、不要なものをまとめて削除してくれます。

docker system prune 対象外のものを全部消すには

すべてのコンテナ、イメージを削除するには、複数のコマンドを組み合わせます。稼働中のコンテナをすべて強制停止(kill)し、不要なネットワークやボリュームを削除した後、すべてのイメージを削除します。

# docker kill $(docker ps -q)
# docker system prune -f && docker rmi -f $(docker images -aq)

Docker セットアップ

簡単な Docker Engine のセットアップ(Linux)と覚え方

インストール方法は、 https://get.docker.com/ というホスト名だけを覚えておきます。表示されるページは、Docker を児童インストールするシェルスクリプトです。そのため、をブラウザや curl などで開くと、Docker をインストールするコマンドが確認できます。

# This script is meant for quick & easy install via:
#   $ curl -fsSL https://get.docker.com -o get-docker.sh
#   $ sh get-docker.sh

あとは、root 権限や sudo で sh get-docker.sh を実行するだけで、各ディストリビューションに対応した Docker Engine のリポジトリ設定と、最新安定版の Docker Engine を自動的に設定します。

CentOS 7、Fedora、Ubuntu、Debian に対応しています。

CentOS 7 の場合

このスクリプトを使っても Docker デーモンは自動起動しないため、 systemctl で Docker Engine の起動と、サーバ起動後は自動的にサービスを起動するコマンドを実行します。

# systemctl start docker
# systemctl enable docker

参考情報

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

docker 19 + nginx 1.17.6 + PHP 7.4の環境構築

docker 19 + nginx 1.17.6 + PHP 7.4の環境構築

環境情報

2019/11/30 時点

  • MacOS X 10.15.1(19B88)
  • Docker 19.03.5
  • nginx 1.17.6

事前準備

Mac用のdocker-for-macをインストールする必要があります。
インストールする際、Docker Hubのアカウントが必要になりますので、事前にDocker Hubへのアカウント登録を済ませておいてください。

https://docs.docker.com/docker-for-mac/install/

$ docker --version
Docker version 19.03.5, build 633a0ea

環境構築

基本的にはdocker-composeを使って環境構築を進めていきます。

nginxの構築

以下のディレクトリ構成を前提に環境構築を進めていきます。

.
├── docker-compose.yml
├── php-docker.md
└── web
    ├── conf
    │   └── default.conf
    └── src
        └── index.html

default.confファイルの内容は下記の通りです。

server {
  listen 80;
  server_name 127.0.0.1;


  #ルートディレクトリの設定
  location / {
    root  /var/www/;
    index index.html index.htm;
  }

  access_log /var/log/nginx/access.log;
  error_log  /var/log/nginx/error.log;
}

index.htmlファイルの内容は下記の通りです。

<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>ようこそDocker</title>
</head>

<body>
  <h1>ようこそDocker!</h1>
</body>
</html>

docker-compose.ymlファイルの内容は下記の通りです。

version: '3'
services:
  web:
    image: nginx:latest
    ports:
      - "8000:80"
    volumes:
      - ./web/conf/default.conf:/etc/nginx/conf.d/default.conf
      - ./web/src:/var/www/
  • version
    • Docker 19.03.5に対応しているdocker-composeのファイルフォーマットは3.7なので、yamlのversionには3を指定する。
    • 対応バージョンの確認はこちらから確認してください。
  • services -> web は、任意の名前をつけられます。今回はnginxをWebサーバーとして利用する環境構築となり、わかりやすい名称としてwebと定義しています。
  • services -> web -> image に設定している nginx:latest は、docker hubのnginxでどのバージョンに対応しているかなどが確認できます。
    • ここではlatestとしていますが、1.17.6と指定しても同じ結果になります。(2019/11/30時点では。)
  • services -> web -> ports の8000:80は、ホスト(ここではMacPC)で受け付けたポート8000へのリクエストを、Dockerコンテナの80ポートに転送するという設定です。ポートフォワーディング
  • volumes ホスト側で編集したソースやconfなどをDockerコンテナと同期するための設定。

カレントディレクトリをdocker-compose.ymlのあるディレクトリに移動して、下記コマンドを実行します。

docker-compose up -d

コマンドの実行結果

$ docker-compose up -d
Creating network "php-docker_default" with the default driver
Pulling web (nginx:latest)...
latest: Pulling from library/nginx
000eee12ec04: Pull complete
eb22865337de: Pull complete
bee5d581ef8b: Pull complete
Digest: sha256:50cf965a6e08ec5784009d0fccb380fc479826b6e0e65684d9879170a9df8566
Status: Downloaded newer image for nginx:latest
Creating php-docker_web_1 ... done

nginxのDockerコンテナが正常に動作しているか確認するため以下のURLにアクセスします。
http://127.0.0.1:8000/

「ようこそDocker!」というページ(index.htmlで作ったページ)が表示されればOKです。

いったん起動したnginxのコンテナを停止します。

docker-compose stop
$ docker-compose stop
Stopping php-docker_web_1 ... done

ここまでで、dockerによるnginx環境の構築がいったん完了です。
続いて、phpの環境を構築していきます。(後日更新します。。。)

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

docker 互換の podman を Ubuntu/Debian で使う

Fedraのデフォルトが CGroup V2になりつつも、相変わらずDockerはCGroup V2で動きませんDocker互換のPodmanはCGroup V2でも使え、Ubuntuなど各種Linuxでのインストール手順も明示されています。しかしUbuntu 19.10 EoanとかDebianではその手順では使えない(EoanやDebian用のパッケージがまだ無い)ので、podmanをインストールする手順を以下に書きます。

  • 以下の行を/etc/apt/sources.list に追加する。ディストリビューションのdiscoは自分のディストリビューションになるべく近いものにすること。
deb http://ppa.launchpad.net/projectatomic/ppa/ubuntu disco main
  • /etc/apt/apt.conf.d/00insecure に以下の内容を追加する
/etc/apt/apt.conf.d/00insecure
Acquire::AllowInsecureRepositories 1;
  • sudo apt-get update
  • sudo apt-get -t disco install podman
  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む

AWSとGCPのインスタンスやコンテナサービスをDockerコンテナ上のUnixBenchでベンチマークして比較してみた

AWSとGCPのインスタンスやコンテナサービスを利用して、Dockerコンテナ上でアプリを動作させているのですが、CPUパフォーマンスに差があるなぁと気になったので、UnixBenchを利用して各環境のDockerコンテナ上でパフォーマンス測定してみました。

UnixBenchについて

UnixBenchについては下記が参考になります。

kdlucas/byte-unixbench: Automatically exported from code.google.com/p/byte-unixbench
https://github.com/kdlucas/byte-unixbench

UnixBenchでベンチマーク - IDCF テックブログ
https://blog.idcf.jp/entry/cloud/unixbench/

UnixBenchとは、LinuxをはじめUnix系OSでは昔からよく使われている定番のベンチマークツールです。システムのベンチマークという位置づけですが、主にCPUのベンチマークとして利用可能です。

UnixBenchでLinuxサーバのCPU性能を比較する
http://naoberry.com/tech/unixbench/

クラウドの登場により、サーバスペックを簡単に変更できるようになりました。ハードウェアレイヤが仮想化されているため、CPUはvCPUと表記されることが多く、クロック数等の明記がないことも多々見受けられます。

IaaSベンダーによっては、明確なクロック数の表記がなく、こっちのほうが高スペックです!と提示されているケースもあります。

CPUスペックの違いを可視化するために、UnixBenchを利用してみます。

まさにそうなのです。私、気になります!

Dockerイメージ

Dockerコンテナ内でパフォーマンス計測したいので、Docker Hubで公開されているイメージを利用させてもらいました。

tutum/unixbench - Docker Hub
https://hub.docker.com/r/tutum/unixbench

条件

環境構築するリージョンは下記として、計測は2019/10/29から10/31の間に実施しました。

  • リージョン
    • AWS: ap-northeast-1 (アジアパシフィック (東京))
    • GCP
      • asia-northeast1 (東京)
      • us-central1 (アイオワ): N2マシンタイプ利用のため

計測対象

下記のサービスについて計測しました。

インスタンス

GCPに関してはリージョン・ゾーンの制限がなく選択しやすいN1マシンタイプを主と考えましたが、計測・比較するうちにN2マシンタイプとC2マシンタイプも対象にしたほうが良さそうでしたので含めました。

※GCPのN2とC2マシンタイプは一部のゾーンとリージョンでのみ使用できます。またN2マシンタイプはベータ版となります。

マシンタイプ  |  Compute Engine ドキュメント  |  Google Cloud
https://cloud.google.com/compute/docs/machine-types?hl=ja

これは、N2 マシンタイプのベータ版です。この機能はサービスレベル契約(SLA)や非推奨ポリシーの対象ではなく、下位互換性が維持されない可能性があります。

リージョンとゾーン  |  Compute Engine ドキュメント  |  Google Cloud
https://cloud.google.com/compute/docs/regions-zones/?hl=ja#available

インスタンスタイプ - Amazon EC2 | AWS
https://aws.amazon.com/jp/ec2/instance-types/

汎用

サービス マシンタイプ vCPU メモリ(GB)
AWS EC2 t2.small 1 2.00
t2.medium 2 4.00
t2.2xlarge 8 32.00
GCP Conpute Engine n1-standard-1 1 3.75
n1-highcpu-2 2 1.80
n1-highcpu-8 8 7.20
n1-highcpu-16 16 14.40

汎用2

サービス マシンタイプ vCPU メモリ(GB)
AWS EC2 t3.small 2 2.00
t3.xlarge 4 16.00
t3.2xlarge 8 32.00
GCP Conpute Engine n2-standard-2 2 8.00
n2-highcpu-4 4 4.00
n2-highcpu-8 8 8.00
n2-highcpu-16 16 16.00

コンピューティング最適化

サービス マシンタイプ vCPU メモリ(GB)
AWS EC2 c5.large 2 4.00
c5.xlarge 4 8.00
c5.2xlarge 8 16.00
c5.4xlarge 16 32.00
GCP Conpute Engine c2-standard-4 4 16.00
c2-standard-8 8 32.00
c2-standard-16 16 64.00

ビルドサービス

ビルドサービスもDockerコンテナで動いているので計測してみました。

サービス マシンタイプ vCPU メモリ(GB)
AWS CodeBuild build.general1.small 2 3.00
build.general1.medium 4 7.00
build.general1.large 8 15.00
GCP Cloud Build n1-standard-1 1 3.75
n1-highcpu-8 8 7.20
n1-highcpu-32 32 28.80

AWS Fargate

AWS Fargateはどうなんだろうと思って対象に含めました。こちらはマシンタイプではなく、vCPUとメモリを数値で指定します。

AWS Fargate(サーバーやクラスターの管理が不要なコンテナの使用)| AWS
https://aws.amazon.com/jp/fargate/

サービス マシンタイプ vCPU メモリ(GB)
AWS ECS - Fargate 0.25 0.5
0.50 1.0
1.00 2.0
2.00 4.0
4.00 8.0

計測方法

各環境でDockerが動作するようにして、以下コマンドを実行して情報取得と計測を行いました。
最後のほうにおまけとしてインストール方法やログなどをまとめていますので、詳細が気になる方はそちらをご確認ください。

# Docker情報取得
> docker info

# CPU情報取得
> cat /proc/cpuinfo

# UnixBench計測実行
> docker run -it --rm tutum/unixbench

計測結果

UnixBenchを実行すると、各種テストを実行しSystem Benchmarks Index Score という総合的なスコアが得られます。
マルチコアの場合はコア数だけ並列で実行した総合的なスコアも得られます。

計測は各環境で1回のみなので、確度はよろしくありません。ご参考程度にどうぞ。(実行コストががが)

インスタンス

ホストOSとDockerバージョンは各タイプともに下記となります。

  • ホストOS
    • AWS: Amazon Linux 2
    • GCP: Debian GNU/Linux 9
  • Dockerバージョン
    • AWS: Docker version 18.06.1-ce, build e68fc7a215d7133c34aa18e3b72b4a21fd0c6136
    • GCP: Docker version 19.03.4, build 9013bf583a

汎用

System Benchmarks Index Score

AWSのt2とGCPのn1を比較すると、AWSのほうがシングルで130%、マルチで177%と結構な差がでました。
GCPの多くのリージョンとゾーンで利用できるのがn1となるので、もう少しスペックを上げてほしいのが本音。

サービス マシンタイプ Index(シングル) Index(マルチ)
AWS EC2 t2.small 973.7
t2.medium 863.0 1,746.5
t2.2xlarge 1,005.1 4,929.6
GCP Conpute Engine n1-standard-1 781.2
n1-highcpu-2 680.2 954.3
n1-highcpu-8 723.3 2,870.8
n1-highcpu-16 772.1 4,279.8
CPU
サービス マシンタイプ CPU
AWS EC2 t2.small Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
t2.medium Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
t2.2xlarge Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
GCP Conpute Engine n1-standard-1 Intel(R) Xeon(R) CPU @ 2.20GHz
n1-highcpu-2 Intel(R) Xeon(R) CPU @ 2.20GHz
n1-highcpu-8 Intel(R) Xeon(R) CPU @ 2.20GHz
n1-highcpu-16 Intel(R) Xeon(R) CPU @ 2.20GHz

汎用2

System Benchmarks Index Score

AWSのt3とGCPのn2を比較するとGCPのほうがシングルで103%、マルチが211%!という結果になりました。

現在ベータ版となるGCPのn2ですが、早く主流になってほしいですね。(2019/11/07時点)

サービス マシンタイプ Index(シングル) Index(マルチ)
AWS EC2 t3.small 938.4 389.9
t3.xlarge 1,059.2 1,957.6
t3.2xlarge 1,013.8 3,568.5
GCP Conpute Engine n2-standard-2 975.6 1,500.3
n2-highcpu-4 1,033.2 2,566.9
n2-highcpu-8 1,095.7 4,207.2
GCP 比較対象外
n2-highcpu-16 1,100.5 6,561.6
CPU
サービス マシンタイプ CPU
AWS EC2 t3.small Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
t3.xlarge Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
t3.2xlarge Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
GCP Conpute Engine n2-standard-2 Intel(R) Xeon(R) CPU @ 2.80GHz
n2-highcpu-4 Intel(R) Xeon(R) CPU @ 2.80GHz
n2-highcpu-8 Intel(R) Xeon(R) CPU @ 2.80GHz
n2-highcpu-16 Intel(R) Xeon(R) CPU @ 2.80GHz

コンピューティング最適化

System Benchmarks Index Score

AWSのc5とGCPのc2を比較するとAWSのほうがシングルで114%、マルチが112%という結果になりました。(AWSのc5.largeは比較対象外)このくらいの差であればまあどちらでも良いかなという感じです。

サービス マシンタイプ Index(シングル) Index(マルチ)
AWS EC2 c5.large 1,177.7 1,702.7
c5.xlarge 1,187.3 2,852.0
c5.2xlarge 1,230.3 4,712.0
c5.4xlarge 1,275.0 7,457.3
GCP Conpute Engine c2-standard-4 1,121.6 2,742.0
c2-standard-8 1,170.4 4,382.6
c2-standard-16 1,184.6 6,836.8
CPU
サービス マシンタイプ CPU
AWS EC2 c5.large Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
c5.xlarge Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
c5.2xlarge Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
c5.4xlarge Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
GCP Conpute Engine c2-standard-4 Intel(R) Xeon(R) CPU @ 3.10GHz
c2-standard-8 Intel(R) Xeon(R) CPU @ 3.10GHz
c2-standard-16 Intel(R) Xeon(R) CPU @ 3.10GHz

ビルドサービス

vCPU x 8となるAWSのbuild.general1.large とGCPのn1-highcpu-8 でAWSがシングル・マルチ合わせて117%ほど良い結果となりました。

System Benchmarks Index Score
サービス マシンタイプ Index(シングル) Index(マルチ)
AWS CodeBuild build.general1.small 1,054.0 1,490.1
build.general1.medium 1,116.2 2,558.4
build.general1.large 1,162.5 4,059.2
GCP Cloud Build n1-standard-1 937.9
n1-highcpu-8 925.0 3,452.5
n1-highcpu-32 979.9

GCPのn1-highcpu-32 でマルチコアの結果がありませんが、UnixBenchの制限で16コア以上だとテストがスキップされるそうです。下記にパッチの当て方がありましたが今回は対応せず。

UnixBench計測した - Qiita
https://qiita.com/tukiyo3/items/680888014256a1eb785a#16%E3%82%B3%E3%82%A2%E3%82%92%E8%B6%85%E3%81%88%E3%82%8B%E5%A0%B4%E5%90%88%E3%81%AE%E3%83%91%E3%83%83%E3%83%81

CPU
サービス マシンタイプ CPU
AWS CodeBuild build.general1.small Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
build.general1.medium Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
build.general1.large Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
GCP Cloud Build n1-standard-1 Intel(R) Xeon(R) CPU @ 2.20GHz
n1-highcpu-8 Intel(R) Xeon(R) CPU @ 2.20GHz
n1-highcpu-32 Intel(R) Xeon(R) CPU @ 2.20GHz

AWS Fargate

System Benchmarks Index Score

試しに計測してみたAWS Fargateですが、vCPUの数値が上がるにつれIndexも良くなっています。

vCPU メモリ
(GB)
Index(シングル) Index(マルチ)
0.25 0.5 214.5 248.3
0.50 1.0 466.8 411.5
1.00 2.0 875.5 773.7
2.00 4.0 1,001.0 1,393.4
4.00 8.0 1,102.1 2,363.4
CPU

CPUは0.25と4.00が他と異なるCPUとなっていました。

vCPU メモリ
(GB)
CPU
0.25 0.5 Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz
0.50 1.0 Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
1.00 2.0 Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
2.00 4.0 Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
4.00 8.0 Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz

今回始めて知ったのですが、vCPUの指定と実際のコア数は関連しないようです。そもそもvCPUが0.25 だったらコア数どうなるの?って話なので、まあ実はマルチコアで動作してる。って覚えておくと、いつの日にか役に立つことがあるかもですね。0.25、0.5〜2、4とでCPUが異なっていうのも豆知識になりそうです。ただし、マネージドなサービスなので、いつCPU種類や仕様が変わるかも不明ですので、へぇ〜程度にみておいたほうが良いと思います。

古めの投稿ですが、こちらだとマルチコアでかつCPU種類が異なっていたようです。

FargateのvCPU性能と価格感等雑感 - Qiita
https://qiita.com/nabeken/items/69b47e2d346a61d34176

まとめ

インスタンスに関しては両者ともに選択肢があり、ワークロードに最適なタイプを選択することができそうですが、ビルドサービスに関してはタイプ選択の幅がせまいので、パフォーマンスがほしい場合にはAWSかなという状況でした。

同じにように比較している記事をざっくりと調べてみた限り、AWS > GCPとなる結果が多いみたいです。

[AWS vs GCP] EC2 vs GCE 〜CPU性能〜 - Qiita
https://qiita.com/endam/items/828b187385d96ff2a983

どちらが全体的に優秀なのか、AmazonとGoogleのクラウドのパフォーマンスを比較した結果 - GIGAZINE
https://gigazine.net/news/20181217-aws-gcp-cloud-report/

AWS Alibaba Azure GCPの仮想サーバー性能比較 - Qiita
https://qiita.com/ushijimay/items/28b51fbc14573cf7f9be

AWS EC2 と GCE(Google Compute Engine)を徹底的にベンチマークしてみた | あぱーブログ
https://blog.apar.jp/web/7042/

AWS、GCP、さくらのクラウド でUnixBench CPU性能比較 - Qiita
https://qiita.com/T-Yam/items/bc058bd055fe0b229d50

IaaSクラウドサーバーのベンチマーク(2016年9月版) | 稲葉サーバーデザイン
https://inaba-serverdesign.jp/blog/20160921/iaas_cloud_benchmark_201609.html

参考

kdlucas/byte-unixbench: Automatically exported from code.google.com/p/byte-unixbench
https://github.com/kdlucas/byte-unixbench

UnixBenchでベンチマーク - IDCF テックブログ
https://blog.idcf.jp/entry/cloud/unixbench/

UnixBenchでLinuxサーバのCPU性能を比較する
http://naoberry.com/tech/unixbench/

UnixBenchでDockerのベンチマークとってみた - Qiita
https://qiita.com/ariarijp/items/9434258faec356ebc76f

マシンタイプ  |  Compute Engine ドキュメント  |  Google Cloud
https://cloud.google.com/compute/docs/machine-types?hl=ja

リージョンとゾーン  |  Compute Engine ドキュメント  |  Google Cloud
https://cloud.google.com/compute/docs/regions-zones/?hl=ja#available

tutum/unixbench - Docker Hub
https://hub.docker.com/r/tutum/unixbench

AWS Fargate(サーバーやクラスターの管理が不要なコンテナの使用)| AWS
https://aws.amazon.com/jp/fargate/

UnixBench計測した - Qiita
https://qiita.com/tukiyo3/items/680888014256a1eb785a

FargateのvCPU性能と価格感等雑感 - Qiita
https://qiita.com/nabeken/items/69b47e2d346a61d34176

Linuxの性能をチェックするunixbenchの使い方:なんとなしの日記
http://babyp.blog55.fc2.com/blog-entry-822.html

[AWS vs GCP] EC2 vs GCE 〜CPU性能〜 - Qiita
https://qiita.com/endam/items/828b187385d96ff2a983

どちらが全体的に優秀なのか、AmazonとGoogleのクラウドのパフォーマンスを比較した結果 - GIGAZINE
https://gigazine.net/news/20181217-aws-gcp-cloud-report/

AWS Alibaba Azure GCPの仮想サーバー性能比較 - Qiita
https://qiita.com/ushijimay/items/28b51fbc14573cf7f9be

AWS EC2 と GCE(Google Compute Engine)を徹底的にベンチマークしてみた | あぱーブログ
https://blog.apar.jp/web/7042/

AWS、GCP、さくらのクラウド でUnixBench CPU性能比較 - Qiita
https://qiita.com/T-Yam/items/bc058bd055fe0b229d50

IaaSクラウドサーバーのベンチマーク(2016年9月版) | 稲葉サーバーデザイン
https://inaba-serverdesign.jp/blog/20160921/iaas_cloud_benchmark_201609.html

おまけ

環境のセットアップ方法や実行時のログなどを置いておきます。

セットアップ

ざっくりと各環境での実行までの手順となります。

AWS EC2

# Dockerインストール
> sudo yum install -y docker
> sudo service docker start
> sudo usermod -a -G docker ec2-user

# 再ログイン
> exit

> docker --version
Docker version 18.06.1-ce, build e68fc7a215d7133c34aa18e3b72b4a21fd0c6136

GCP Conpute Engine

> curl -fsSL https://get.docker.com -o get-docker.sh
> sudo sh get-docker.sh
> sudo systemctl start docker

> docker --version
Docker version 19.03.4, build 9013bf583a

AWS CodeBuild

下記を参考にしてCodeBuildのプロジェクトを作成する。

TODO: URLはりなおす
【予約投稿:2019/11/13 09:00】AWS CodeBuildでUnity ML-Agentsを動作させる(v0.9.1対応) - Qiita
https://qiita.com/kai_kou/private/e84ddcb579b150d6d785

buildspec.yaml
version: 0.2

phases:
  install:
    runtime-versions:
      docker: 18
  build:
    commands:
      - cd /app/UnixBench
      # - ./Run
      - cat /proc/cpuinfo

上記buildspec.yaml を用意してコマンド実行する。

> aws codebuild start-build \
  --region ap-northeast-1 \
  --project-name <作成したプロジェクトの名前> \
  --timeout-in-minutes-override 60 \
  --buildspec-override file://buildspec.yaml \
  --image-override tutum/unixbench \
  --compute-type-override BUILD_GENERAL1_SMALL

# コンピューティングタイプ
# - BUILD_GENERAL1_SMALL
# - BUILD_GENERAL1_MEDIUM
# - BUILD_GENERAL1_LARGE

GCP Cloud Build

cloudbuild.yaml
steps:
- name: 'tutum/unixbench'
  dir: /app/UnixBench
  entrypoint: 'bash'
  args: ['-c', 'cat /proc/cpuinfo']
- name: 'tutum/unixbench'
  dir: /app/UnixBench
timeout: 3600s
options:
  machineType: UNSPECIFIED

# マシンタイプ
# UNSPECIFIED  (n1-standard-1)
# N1_HIGHCPU_8
# N1_HIGHCPU_32

上記cloudbuild.yaml を用意してコマンド実行する。

> gcloud builds submit \
  --config cloudbuild-unixbench.yaml \
  --no-source \
  --async

AWS Fargate

Fargate用のクラスタと、以下のJSONを参考にしてFargate互換のタスク定義を作成してタスク実行する。
※ CPUとメモリはタスクの新しいリビジョンを作成して変更。

{
  "ipcMode": null,
  "executionRoleArn": "arn:aws:iam::<AWS ACCOUNT ID>:role/ecsTaskExecutionRole",
  "containerDefinitions": [
    {
      "dnsSearchDomains": null,
      "logConfiguration": {
        "logDriver": "awslogs",
        "secretOptions": null,
        "options": {
          "awslogs-group": "/ecs/unix-bench-fargate-task",
          "awslogs-region": "ap-northeast-1",
          "awslogs-stream-prefix": "ecs"
        }
      },
      "entryPoint": [
        "bash",
        "-c"
      ],
      "portMappings": [],
      "command": [
        "cat /proc/cpuinfo"
      ],
      "linuxParameters": null,
      "cpu": 0,
      "environment": [],
      "resourceRequirements": null,
      "ulimits": null,
      "dnsServers": null,
      "mountPoints": [],
      "workingDirectory": null,
      "secrets": null,
      "dockerSecurityOptions": null,
      "memory": null,
      "memoryReservation": null,
      "volumesFrom": [],
      "stopTimeout": null,
      "image": "tutum/unixbench",
      "startTimeout": null,
      "firelensConfiguration": null,
      "dependsOn": null,
      "disableNetworking": null,
      "interactive": null,
      "healthCheck": null,
      "essential": false,
      "links": null,
      "hostname": null,
      "extraHosts": null,
      "pseudoTerminal": null,
      "user": null,
      "readonlyRootFilesystem": null,
      "dockerLabels": null,
      "systemControls": null,
      "privileged": null,
      "name": "cpuinfo"
    },
    {
      "dnsSearchDomains": null,
      "logConfiguration": {
        "logDriver": "awslogs",
        "secretOptions": null,
        "options": {
          "awslogs-group": "/ecs/unix-bench-fargate-task",
          "awslogs-region": "ap-northeast-1",
          "awslogs-stream-prefix": "ecs"
        }
      },
      "entryPoint": null,
      "portMappings": [],
      "command": null,
      "linuxParameters": null,
      "cpu": 0,
      "environment": [],
      "resourceRequirements": null,
      "ulimits": null,
      "dnsServers": null,
      "mountPoints": [],
      "workingDirectory": "/app/UnixBench",
      "secrets": null,
      "dockerSecurityOptions": null,
      "memory": null,
      "memoryReservation": null,
      "volumesFrom": [],
      "stopTimeout": null,
      "image": "tutum/unixbench",
      "startTimeout": null,
      "firelensConfiguration": null,
      "dependsOn": [
        {
          "containerName": "cpuinfo",
          "condition": "SUCCESS"
        }
      ],
      "disableNetworking": null,
      "interactive": null,
      "healthCheck": null,
      "essential": true,
      "links": null,
      "hostname": null,
      "extraHosts": null,
      "pseudoTerminal": null,
      "user": null,
      "readonlyRootFilesystem": null,
      "dockerLabels": null,
      "systemControls": null,
      "privileged": null,
      "name": "run"
    }
  ],
  "placementConstraints": [],
  "memory": "1024",
  "taskRoleArn": null,
  "family": "unix-bench-fargate-task",
  "pidMode": null,
  "requiresCompatibilities": [
    "FARGATE"
  ],
  "networkMode": "awsvpc",
  "cpu": "512",
  "inferenceAccelerators": null,
  "proxyConfiguration": null,
  "volumes": [],
  "tags": []
}

計測ログ

計測時のログとなります。

すっごく長いので縮めておきます。

AWS EC2

t2.small

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 1
Total Memory: 1.945GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false

$ cat /proc/cpuinfo

processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2400.004
cache size      : 30720 KB
physical id     : 0
siblings        : 1
core id         : 0
cpu cores       : 1
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4800.09
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 95011afc1d84: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz (4800.1 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   03:54:05 up 1 min,  0 users,  load average: 0.05, 0.02, 0.00; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 03:54:05 - 04:22:08
1 CPU in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       30945978.6 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4003.1 MWIPS (9.8 s, 7 samples)
Execl Throughput                               4116.7 lps   (29.6 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        500677.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          130062.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1522916.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                              626857.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 171768.9 lps   (10.0 s, 7 samples)
Process Creation                              10507.8 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   7869.0 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1024.9 lpm   (60.0 s, 2 samples)
System Call Overhead                         394912.9 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   30945978.6   2651.8
Double-Precision Whetstone                       55.0       4003.1    727.8
Execl Throughput                                 43.0       4116.7    957.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     500677.4   1264.3
File Copy 256 bufsize 500 maxblocks            1655.0     130062.4    785.9
File Copy 4096 bufsize 8000 maxblocks          5800.0    1522916.5   2625.7
Pipe Throughput                               12440.0     626857.0    503.9
Pipe-based Context Switching                   4000.0     171768.9    429.4
Process Creation                                126.0      10507.8    834.0
Shell Scripts (1 concurrent)                     42.4       7869.0   1855.9
Shell Scripts (8 concurrent)                      6.0       1024.9   1708.1
System Call Overhead                          15000.0     394912.9    263.3
                                                                   ========
System Benchmarks Index Score                                         973.7

t2.medium

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 3.851GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2399.915
cache size      : 30720 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4800.17
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2399.915
cache size      : 30720 KB
physical id     : 0
siblings        : 2
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4800.17
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:



------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:16:21 - 06:44:28
2 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       31255357.8 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4505.6 MWIPS (10.6 s, 7 samples)
Execl Throughput                               3816.9 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        496757.3 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          128935.9 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1538545.9 KBps  (30.0 s, 2 samples)
Pipe Throughput                              621635.5 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  34023.1 lps   (10.0 s, 7 samples)
Process Creation                               6844.3 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   8686.0 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1619.2 lpm   (60.0 s, 2 samples)
System Call Overhead                         397473.0 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   31255357.8   2678.3
Double-Precision Whetstone                       55.0       4505.6    819.2
Execl Throughput                                 43.0       3816.9    887.6
File Copy 1024 bufsize 2000 maxblocks          3960.0     496757.3   1254.4
File Copy 256 bufsize 500 maxblocks            1655.0     128935.9    779.1
File Copy 4096 bufsize 8000 maxblocks          5800.0    1538545.9   2652.7
Pipe Throughput                               12440.0     621635.5    499.7
Pipe-based Context Switching                   4000.0      34023.1     85.1
Process Creation                                126.0       6844.3    543.2
Shell Scripts (1 concurrent)                     42.4       8686.0   2048.6
Shell Scripts (8 concurrent)                      6.0       1619.2   2698.6
System Call Overhead                          15000.0     397473.0    265.0
                                                                   ========
System Benchmarks Index Score                                         863.0

------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:44:28 - 07:12:37
2 CPUs in system; running 2 parallel copies of tests

Dhrystone 2 using register variables       62735214.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     8923.4 MWIPS (10.7 s, 7 samples)
Execl Throughput                               7170.9 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        916919.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          238366.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2664924.4 KBps  (30.0 s, 2 samples)
Pipe Throughput                             1237848.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 304878.6 lps   (10.0 s, 7 samples)
Process Creation                              14953.4 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  11446.8 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1749.5 lpm   (60.0 s, 2 samples)
System Call Overhead                         765273.2 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   62735214.9   5375.8
Double-Precision Whetstone                       55.0       8923.4   1622.4
Execl Throughput                                 43.0       7170.9   1667.6
File Copy 1024 bufsize 2000 maxblocks          3960.0     916919.1   2315.5
File Copy 256 bufsize 500 maxblocks            1655.0     238366.5   1440.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    2664924.4   4594.7
Pipe Throughput                               12440.0    1237848.0    995.1
Pipe-based Context Switching                   4000.0     304878.6    762.2
Process Creation                                126.0      14953.4   1186.8
Shell Scripts (1 concurrent)                     42.4      11446.8   2699.7
Shell Scripts (8 concurrent)                      6.0       1749.5   2915.8
System Call Overhead                          15000.0     765273.2    510.2
                                                                   ========
System Benchmarks Index Score                                        1746.5

t2.2xlarge

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 31.41GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2394.682
cache size      : 30720 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 8
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4789.07
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:



------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:52:39 - 03:20:41
8 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       33943423.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4351.3 MWIPS (9.8 s, 7 samples)
Execl Throughput                               4237.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        542618.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          138892.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1890891.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                              674198.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  36166.4 lps   (10.0 s, 7 samples)
Process Creation                               6944.1 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  10301.7 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3992.9 lpm   (60.0 s, 2 samples)
System Call Overhead                         429673.0 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   33943423.7   2908.6
Double-Precision Whetstone                       55.0       4351.3    791.1
Execl Throughput                                 43.0       4237.1    985.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     542618.4   1370.2
File Copy 256 bufsize 500 maxblocks            1655.0     138892.4    839.2
File Copy 4096 bufsize 8000 maxblocks          5800.0    1890891.3   3260.2
Pipe Throughput                               12440.0     674198.0    542.0
Pipe-based Context Switching                   4000.0      36166.4     90.4
Process Creation                                126.0       6944.1    551.1
Shell Scripts (1 concurrent)                     42.4      10301.7   2429.7
Shell Scripts (8 concurrent)                      6.0       3992.9   6654.9
System Call Overhead                          15000.0     429673.0    286.4
                                                                   ========
System Benchmarks Index Score                                        1005.1

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:20:41 - 03:48:46
8 CPUs in system; running 8 parallel copies of tests

Dhrystone 2 using register variables      247318013.5 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    32094.1 MWIPS (9.8 s, 7 samples)
Execl Throughput                              24508.6 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks       1323948.6 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          349898.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       3962521.4 KBps  (30.0 s, 2 samples)
Pipe Throughput                             4930084.8 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                1174661.4 lps   (10.0 s, 7 samples)
Process Creation                              37322.6 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  37191.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   5984.6 lpm   (60.0 s, 2 samples)
System Call Overhead                        3008828.6 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  247318013.5  21192.6
Double-Precision Whetstone                       55.0      32094.1   5835.3
Execl Throughput                                 43.0      24508.6   5699.7
File Copy 1024 bufsize 2000 maxblocks          3960.0    1323948.6   3343.3
File Copy 256 bufsize 500 maxblocks            1655.0     349898.5   2114.2
File Copy 4096 bufsize 8000 maxblocks          5800.0    3962521.4   6831.9
Pipe Throughput                               12440.0    4930084.8   3963.1
Pipe-based Context Switching                   4000.0    1174661.4   2936.7
Process Creation                                126.0      37322.6   2962.1
Shell Scripts (1 concurrent)                     42.4      37191.5   8771.6
Shell Scripts (8 concurrent)                      6.0       5984.6   9974.3
System Call Overhead                          15000.0    3008828.6   2005.9
                                                                   ========
System Benchmarks Index Score                                        4929.6

c5.large

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 3.618GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3398.180
cache size      : 25344 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.01
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3414.705
cache size      : 25344 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.01
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 2bac389e2fbb: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   04:28:28 up 1 min,  0 users,  load average: 0.07, 0.04, 0.01; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 04:28:28 - 04:56:41
2 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       41522907.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4362.6 MWIPS (11.2 s, 7 samples)
Execl Throughput                               5223.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        654344.6 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          169949.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1996926.0 KBps  (30.0 s, 2 samples)
Pipe Throughput                              830655.2 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  74304.7 lps   (10.0 s, 7 samples)
Process Creation                              12421.8 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  11220.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1793.7 lpm   (60.0 s, 2 samples)
System Call Overhead                         551076.0 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   41522907.7   3558.1
Double-Precision Whetstone                       55.0       4362.6    793.2
Execl Throughput                                 43.0       5223.1   1214.7
File Copy 1024 bufsize 2000 maxblocks          3960.0     654344.6   1652.4
File Copy 256 bufsize 500 maxblocks            1655.0     169949.0   1026.9
File Copy 4096 bufsize 8000 maxblocks          5800.0    1996926.0   3443.0
Pipe Throughput                               12440.0     830655.2    667.7
Pipe-based Context Switching                   4000.0      74304.7    185.8
Process Creation                                126.0      12421.8    985.9
Shell Scripts (1 concurrent)                     42.4      11220.5   2646.3
Shell Scripts (8 concurrent)                      6.0       1793.7   2989.5
System Call Overhead                          15000.0     551076.0    367.4
                                                                   ========
System Benchmarks Index Score                                        1177.7

------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 04:56:41 - 05:24:43
2 CPUs in system; running 2 parallel copies of tests

Dhrystone 2 using register variables       51887669.4 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     8733.7 MWIPS (9.9 s, 7 samples)
Execl Throughput                               7190.5 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        850874.9 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          220727.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2787336.1 KBps  (30.0 s, 2 samples)
Pipe Throughput                             1116134.5 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 270850.1 lps   (10.0 s, 7 samples)
Process Creation                              16543.9 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  13120.1 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1827.2 lpm   (60.0 s, 2 samples)
System Call Overhead                         728913.9 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   51887669.4   4446.2
Double-Precision Whetstone                       55.0       8733.7   1587.9
Execl Throughput                                 43.0       7190.5   1672.2
File Copy 1024 bufsize 2000 maxblocks          3960.0     850874.9   2148.7
File Copy 256 bufsize 500 maxblocks            1655.0     220727.5   1333.7
File Copy 4096 bufsize 8000 maxblocks          5800.0    2787336.1   4805.8
Pipe Throughput                               12440.0    1116134.5    897.2
Pipe-based Context Switching                   4000.0     270850.1    677.1
Process Creation                                126.0      16543.9   1313.0
Shell Scripts (1 concurrent)                     42.4      13120.1   3094.4
Shell Scripts (8 concurrent)                      6.0       1827.2   3045.3
System Call Overhead                          15000.0     728913.9    485.9
                                                                   ========
System Benchmarks Index Score                                        1702.7

c5.xlarge

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 7.446GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3372.044
cache size      : 25344 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.01
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3398.003
cache size      : 25344 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.01
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3401.153
cache size      : 25344 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.01
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3426.809
cache size      : 25344 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.01
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 768763ede93e: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   07:06:04 up 3 min,  0 users,  load average: 0.13, 0.06, 0.01; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 07:06:04 - 07:34:17
4 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       41538631.2 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4362.5 MWIPS (11.2 s, 7 samples)
Execl Throughput                               5052.5 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        632610.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          170124.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1688876.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                              831829.7 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  68962.8 lps   (10.0 s, 7 samples)
Process Creation                              10559.0 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  12545.7 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   2830.0 lpm   (60.0 s, 2 samples)
System Call Overhead                         550539.6 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   41538631.2   3559.4
Double-Precision Whetstone                       55.0       4362.5    793.2
Execl Throughput                                 43.0       5052.5   1175.0
File Copy 1024 bufsize 2000 maxblocks          3960.0     632610.4   1597.5
File Copy 256 bufsize 500 maxblocks            1655.0     170124.4   1027.9
File Copy 4096 bufsize 8000 maxblocks          5800.0    1688876.5   2911.9
Pipe Throughput                               12440.0     831829.7    668.7
Pipe-based Context Switching                   4000.0      68962.8    172.4
Process Creation                                126.0      10559.0    838.0
Shell Scripts (1 concurrent)                     42.4      12545.7   2958.9
Shell Scripts (8 concurrent)                      6.0       2830.0   4716.7
System Call Overhead                          15000.0     550539.6    367.0
                                                                   ========
System Benchmarks Index Score                                        1187.3

------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 07:34:17 - 08:02:19
4 CPUs in system; running 4 parallel copies of tests

Dhrystone 2 using register variables      103304403.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    17398.6 MWIPS (10.0 s, 7 samples)
Execl Throughput                              11988.8 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks       1154003.6 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          322494.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       3277828.0 KBps  (30.0 s, 2 samples)
Pipe Throughput                             2203745.3 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 524941.5 lps   (10.0 s, 7 samples)
Process Creation                              24336.1 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  22128.9 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3203.6 lpm   (60.0 s, 2 samples)
System Call Overhead                        1385777.2 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  103304403.0   8852.1
Double-Precision Whetstone                       55.0      17398.6   3163.4
Execl Throughput                                 43.0      11988.8   2788.1
File Copy 1024 bufsize 2000 maxblocks          3960.0    1154003.6   2914.2
File Copy 256 bufsize 500 maxblocks            1655.0     322494.5   1948.6
File Copy 4096 bufsize 8000 maxblocks          5800.0    3277828.0   5651.4
Pipe Throughput                               12440.0    2203745.3   1771.5
Pipe-based Context Switching                   4000.0     524941.5   1312.4
Process Creation                                126.0      24336.1   1931.4
Shell Scripts (1 concurrent)                     42.4      22128.9   5219.1
Shell Scripts (8 concurrent)                      6.0       3203.6   5339.3
System Call Overhead                          15000.0    1385777.2    923.9
                                                                   ========
System Benchmarks Index Score                                        2852.0

c5.2xlarge

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 15.21GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3602.479
cache size      : 36608 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 4
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3601.723
cache size      : 36608 KB
physical id     : 0
siblings        : 8
core id         : 1
cpu cores       : 4
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3601.042
cache size      : 36608 KB
physical id     : 0
siblings        : 8
core id         : 2
cpu cores       : 4
apicid          : 4
initial apicid  : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3601.934
cache size      : 36608 KB
physical id     : 0
siblings        : 8
core id         : 3
cpu cores       : 4
apicid          : 6
initial apicid  : 6
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 4
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3600.828
cache size      : 36608 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 4
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 5
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3600.257
cache size      : 36608 KB
physical id     : 0
siblings        : 8
core id         : 1
cpu cores       : 4
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 6
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3599.981
cache size      : 36608 KB
physical id     : 0
siblings        : 8
core id         : 2
cpu cores       : 4
apicid          : 5
initial apicid  : 5
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 7
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3600.425
cache size      : 36608 KB
physical id     : 0
siblings        : 8
core id         : 3
cpu cores       : 4
apicid          : 7
initial apicid  : 7
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 6000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 54923d3f3f42: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 4: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 5: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 6: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 7: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   06:03:46 up 26 min,  0 users,  load average: 0.04, 0.01, 0.00; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 06:03:46 - 06:32:15
8 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       44004072.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4074.3 MWIPS (12.8 s, 7 samples)
Execl Throughput                               5293.8 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        598197.2 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          161087.9 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1794664.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                              787369.6 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  70064.6 lps   (10.0 s, 7 samples)
Process Creation                              10810.5 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  13493.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   4423.0 lpm   (60.0 s, 2 samples)
System Call Overhead                         516911.1 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   44004072.0   3770.7
Double-Precision Whetstone                       55.0       4074.3    740.8
Execl Throughput                                 43.0       5293.8   1231.1
File Copy 1024 bufsize 2000 maxblocks          3960.0     598197.2   1510.6
File Copy 256 bufsize 500 maxblocks            1655.0     161087.9    973.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    1794664.2   3094.2
Pipe Throughput                               12440.0     787369.6    632.9
Pipe-based Context Switching                   4000.0      70064.6    175.2
Process Creation                                126.0      10810.5    858.0
Shell Scripts (1 concurrent)                     42.4      13493.6   3182.5
Shell Scripts (8 concurrent)                      6.0       4423.0   7371.7
System Call Overhead                          15000.0     516911.1    344.6
                                                                   ========
System Benchmarks Index Score                                        1230.3

------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 06:32:15 - 07:00:19
8 CPUs in system; running 8 parallel copies of tests

Dhrystone 2 using register variables      238879814.5 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    37067.8 MWIPS (10.0 s, 7 samples)
Execl Throughput                              23583.4 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks       1107975.3 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          296325.2 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       3347685.8 KBps  (30.0 s, 2 samples)
Pipe Throughput                             4313703.7 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                1062537.7 lps   (10.0 s, 7 samples)
Process Creation                              44143.4 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  40015.9 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   6171.7 lpm   (60.0 s, 2 samples)
System Call Overhead                        2622021.4 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  238879814.5  20469.6
Double-Precision Whetstone                       55.0      37067.8   6739.6
Execl Throughput                                 43.0      23583.4   5484.5
File Copy 1024 bufsize 2000 maxblocks          3960.0    1107975.3   2797.9
File Copy 256 bufsize 500 maxblocks            1655.0     296325.2   1790.5
File Copy 4096 bufsize 8000 maxblocks          5800.0    3347685.8   5771.9
Pipe Throughput                               12440.0    4313703.7   3467.6
Pipe-based Context Switching                   4000.0    1062537.7   2656.3
Process Creation                                126.0      44143.4   3503.4
Shell Scripts (1 concurrent)                     42.4      40015.9   9437.7
Shell Scripts (8 concurrent)                      6.0       6171.7  10286.2
System Call Overhead                          15000.0    2622021.4   1748.0
                                                                   ========
System Benchmarks Index Score                                        4712.0

c5.4xlarge

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 16
Total Memory: 30.63GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false



$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping        : 7
microcode       : 0x500002c
cpu MHz         : 3602.015
cache size      : 36608 KB
physical id     : 0
siblings        : 16
core id         : 0
cpu cores       : 8
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5999.99
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:



------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 05:29:19 - 05:57:47
16 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       44043236.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4076.5 MWIPS (12.8 s, 7 samples)
Execl Throughput                               5408.5 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        617417.5 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          161781.3 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2014798.0 KBps  (30.0 s, 2 samples)
Pipe Throughput                              789530.6 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  71475.6 lps   (10.0 s, 7 samples)
Process Creation                              10191.4 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  14143.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   5653.2 lpm   (60.0 s, 2 samples)
System Call Overhead                         515450.4 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   44043236.9   3774.1
Double-Precision Whetstone                       55.0       4076.5    741.2
Execl Throughput                                 43.0       5408.5   1257.8
File Copy 1024 bufsize 2000 maxblocks          3960.0     617417.5   1559.1
File Copy 256 bufsize 500 maxblocks            1655.0     161781.3    977.5
File Copy 4096 bufsize 8000 maxblocks          5800.0    2014798.0   3473.8
Pipe Throughput                               12440.0     789530.6    634.7
Pipe-based Context Switching                   4000.0      71475.6    178.7
Process Creation                                126.0      10191.4    808.8
Shell Scripts (1 concurrent)                     42.4      14143.5   3335.7
Shell Scripts (8 concurrent)                      6.0       5653.2   9422.1
System Call Overhead                          15000.0     515450.4    343.6
                                                                   ========
System Benchmarks Index Score                                        1275.0

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 05:57:47 - 06:25:52
16 CPUs in system; running 16 parallel copies of tests

Dhrystone 2 using register variables      468653376.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    73527.4 MWIPS (10.1 s, 7 samples)
Execl Throughput                              42320.7 lps   (29.5 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks       1080726.7 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          286272.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       3540014.1 KBps  (30.0 s, 2 samples)
Pipe Throughput                             8693885.6 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                2137921.0 lps   (10.0 s, 7 samples)
Process Creation                              62024.1 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  75200.0 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                  10889.3 lpm   (60.0 s, 2 samples)
System Call Overhead                        4923966.8 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  468653376.0  40158.8
Double-Precision Whetstone                       55.0      73527.4  13368.6
Execl Throughput                                 43.0      42320.7   9842.0
File Copy 1024 bufsize 2000 maxblocks          3960.0    1080726.7   2729.1
File Copy 256 bufsize 500 maxblocks            1655.0     286272.0   1729.7
File Copy 4096 bufsize 8000 maxblocks          5800.0    3540014.1   6103.5
Pipe Throughput                               12440.0    8693885.6   6988.7
Pipe-based Context Switching                   4000.0    2137921.0   5344.8
Process Creation                                126.0      62024.1   4922.5
Shell Scripts (1 concurrent)                     42.4      75200.0  17735.9
Shell Scripts (8 concurrent)                      6.0      10889.3  18148.8
System Call Overhead                          15000.0    4923966.8   3282.6
                                                                   ========
System Benchmarks Index Score                                        7457.3

t3.small

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 1.91GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: fb4d5c1b4ea1: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   02:01:45 up 1 min,  0 users,  load average: 0.76, 0.29, 0.10; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Wed Nov 06 2019 02:01:45 - 02:29:49
2 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       32362720.6 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4401.9 MWIPS (9.8 s, 7 samples)
Execl Throughput                               4565.0 lps   (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        532376.6 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          148008.2 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1468925.0 KBps  (30.0 s, 2 samples)
Pipe Throughput                              729270.3 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  43488.8 lps   (10.0 s, 7 samples)
Process Creation                               9061.6 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   8981.4 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1234.9 lpm   (60.1 s, 2 samples)
System Call Overhead                         487965.3 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   32362720.6   2773.2
Double-Precision Whetstone                       55.0       4401.9    800.3
Execl Throughput                                 43.0       4565.0   1061.6
File Copy 1024 bufsize 2000 maxblocks          3960.0     532376.6   1344.4
File Copy 256 bufsize 500 maxblocks            1655.0     148008.2    894.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    1468925.0   2532.6
Pipe Throughput                               12440.0     729270.3    586.2
Pipe-based Context Switching                   4000.0      43488.8    108.7
Process Creation                                126.0       9061.6    719.2
Shell Scripts (1 concurrent)                     42.4       8981.4   2118.3
Shell Scripts (8 concurrent)                      6.0       1234.9   2058.2
System Call Overhead                          15000.0     487965.3    325.3
                                                                   ========
System Benchmarks Index Score                                         938.4

------------------------------------------------------------------------
Benchmark Run: Wed Nov 06 2019 02:29:49 - 03:05:56
2 CPUs in system; running 2 parallel copies of tests

Dhrystone 2 using register variables       12153352.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     7999.3 MWIPS (9.9 s, 7 samples)
Execl Throughput                               1389.8 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        159635.5 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks           42621.7 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks        453455.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                              259141.2 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  62763.6 lps   (10.0 s, 7 samples)
Process Creation                               3221.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   2558.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    319.7 lpm   (60.2 s, 2 samples)
System Call Overhead                         173480.3 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   12153352.9   1041.4
Double-Precision Whetstone                       55.0       7999.3   1454.4
Execl Throughput                                 43.0       1389.8    323.2
File Copy 1024 bufsize 2000 maxblocks          3960.0     159635.5    403.1
File Copy 256 bufsize 500 maxblocks            1655.0      42621.7    257.5
File Copy 4096 bufsize 8000 maxblocks          5800.0     453455.3    781.8
Pipe Throughput                               12440.0     259141.2    208.3
Pipe-based Context Switching                   4000.0      62763.6    156.9
Process Creation                                126.0       3221.7    255.7
Shell Scripts (1 concurrent)                     42.4       2558.5    603.4
Shell Scripts (8 concurrent)                      6.0        319.7    532.8
System Call Overhead                          15000.0     173480.3    115.7
                                                                   ========
System Benchmarks Index Score                                         389.9

t3.xlarge

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 15.48GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: cbea9215ec91: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   00:54:21 up 3 min,  0 users,  load average: 0.02, 0.05, 0.02; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Wed Nov 06 2019 00:54:21 - 01:22:23
4 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       33245158.3 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4471.0 MWIPS (9.8 s, 7 samples)
Execl Throughput                               4817.5 lps   (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        599747.9 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          156840.8 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1842691.6 KBps  (30.0 s, 2 samples)
Pipe Throughput                              757407.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  41490.6 lps   (10.0 s, 7 samples)
Process Creation                               8905.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  10955.0 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   2611.8 lpm   (60.0 s, 2 samples)
System Call Overhead                         503680.0 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   33245158.3   2848.8
Double-Precision Whetstone                       55.0       4471.0    812.9
Execl Throughput                                 43.0       4817.5   1120.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     599747.9   1514.5
File Copy 256 bufsize 500 maxblocks            1655.0     156840.8    947.7
File Copy 4096 bufsize 8000 maxblocks          5800.0    1842691.6   3177.1
Pipe Throughput                               12440.0     757407.0    608.8
Pipe-based Context Switching                   4000.0      41490.6    103.7
Process Creation                                126.0       8905.7    706.8
Shell Scripts (1 concurrent)                     42.4      10955.0   2583.7
Shell Scripts (8 concurrent)                      6.0       2611.8   4353.1
System Call Overhead                          15000.0     503680.0    335.8
                                                                   ========
System Benchmarks Index Score                                        1059.2

------------------------------------------------------------------------
Benchmark Run: Wed Nov 06 2019 01:22:23 - 01:50:28
4 CPUs in system; running 4 parallel copies of tests

Dhrystone 2 using register variables       95050449.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    16129.0 MWIPS (9.9 s, 7 samples)
Execl Throughput                              11530.2 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks       1009853.7 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          279019.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       3171110.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                             2039814.7 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 258994.5 lps   (10.0 s, 7 samples)
Process Creation                              10524.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  10002.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1300.6 lpm   (60.2 s, 2 samples)
System Call Overhead                         695766.4 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   95050449.0   8144.9
Double-Precision Whetstone                       55.0      16129.0   2932.5
Execl Throughput                                 43.0      11530.2   2681.5
File Copy 1024 bufsize 2000 maxblocks          3960.0    1009853.7   2550.1
File Copy 256 bufsize 500 maxblocks            1655.0     279019.5   1685.9
File Copy 4096 bufsize 8000 maxblocks          5800.0    3171110.2   5467.4
Pipe Throughput                               12440.0    2039814.7   1639.7
Pipe-based Context Switching                   4000.0     258994.5    647.5
Process Creation                                126.0      10524.7    835.3
Shell Scripts (1 concurrent)                     42.4      10002.5   2359.1
Shell Scripts (8 concurrent)                      6.0       1300.6   2167.7
System Call Overhead                          15000.0     695766.4    463.8
                                                                   ========
System Benchmarks Index Score                                        1957.6

t3.2xlarge

$ docker info
Containers: 1
 Running: 0
 Paused: 0
 Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
 Backing Filesystem: xfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 31.07GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 4
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 1
cpu cores       : 4
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 2
cpu cores       : 4
apicid          : 4
initial apicid  : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 3
cpu cores       : 4
apicid          : 6
initial apicid  : 6
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 4
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 4
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 5
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 1
cpu cores       : 4
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 6
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 2
cpu cores       : 4
apicid          : 5
initial apicid  : 5
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 7
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 2500.000
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 3
cpu cores       : 4
apicid          : 7
initial apicid  : 7
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5000.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:



========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 2deb25a5b907: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 4: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 5: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 6: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 7: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   03:27:55 up 1 min,  0 users,  load average: 0.37, 0.17, 0.06; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 03:27:55 - 03:55:57
8 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       32465826.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4408.1 MWIPS (9.8 s, 7 samples)
Execl Throughput                               4669.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        567097.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          151815.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1564961.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                              738038.1 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  33380.4 lps   (10.0 s, 7 samples)
Process Creation                               7143.9 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   9918.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3779.3 lpm   (60.0 s, 2 samples)
System Call Overhead                         498028.1 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   32465826.7   2782.0
Double-Precision Whetstone                       55.0       4408.1    801.5
Execl Throughput                                 43.0       4669.1   1085.8
File Copy 1024 bufsize 2000 maxblocks          3960.0     567097.1   1432.1
File Copy 256 bufsize 500 maxblocks            1655.0     151815.0    917.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    1564961.3   2698.2
Pipe Throughput                               12440.0     738038.1    593.3
Pipe-based Context Switching                   4000.0      33380.4     83.5
Process Creation                                126.0       7143.9    567.0
Shell Scripts (1 concurrent)                     42.4       9918.6   2339.3
Shell Scripts (8 concurrent)                      6.0       3779.3   6298.9
System Call Overhead                          15000.0     498028.1    332.0
                                                                   ========
System Benchmarks Index Score                                        1013.8

------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 03:55:57 - 04:24:05
8 CPUs in system; running 8 parallel copies of tests

Dhrystone 2 using register variables      187960624.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    31710.1 MWIPS (9.9 s, 7 samples)
Execl Throughput                              20764.2 lps   (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        954567.2 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          265332.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2827252.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                             3979973.6 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 942253.1 lps   (10.0 s, 7 samples)
Process Creation                              37394.3 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  18546.3 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   2408.7 lpm   (60.1 s, 2 samples)
System Call Overhead                        1927960.1 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  187960624.0  16106.3
Double-Precision Whetstone                       55.0      31710.1   5765.5
Execl Throughput                                 43.0      20764.2   4828.9
File Copy 1024 bufsize 2000 maxblocks          3960.0     954567.2   2410.5
File Copy 256 bufsize 500 maxblocks            1655.0     265332.5   1603.2
File Copy 4096 bufsize 8000 maxblocks          5800.0    2827252.3   4874.6
Pipe Throughput                               12440.0    3979973.6   3199.3
Pipe-based Context Switching                   4000.0     942253.1   2355.6
Process Creation                                126.0      37394.3   2967.8
Shell Scripts (1 concurrent)                     42.4      18546.3   4374.1
Shell Scripts (8 concurrent)                      6.0       2408.7   4014.4
System Call Overhead                          15000.0    1927960.1   1285.3
                                                                   ========
System Benchmarks Index Score                                        3568.5

CodeBuild

build.general1.small

AWS マネジメントコンソールで確認(するのが早い)

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 63
model name  : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping    : 2
microcode   : 0x43
cpu MHz     : 2899.896
cache size  : 25600 KB
physical id : 0
siblings    : 2
core id     : 0
cpu cores   : 1
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs        : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips    : 5800.14
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:44:55 - 03:12:59
2 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       36880307.3 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4688.4 MWIPS (10.0 s, 7 samples)
Execl Throughput                               4621.9 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        655807.7 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          168419.2 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2060660.8 KBps  (30.0 s, 2 samples)
Pipe Throughput                              845716.8 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  47212.6 lps   (10.0 s, 7 samples)
Process Creation                               7995.6 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   9626.7 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1486.7 lpm   (60.0 s, 2 samples)
System Call Overhead                         567780.1 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   36880307.3   3160.3
Double-Precision Whetstone                       55.0       4688.4    852.4
Execl Throughput                                 43.0       4621.9   1074.9
File Copy 1024 bufsize 2000 maxblocks          3960.0     655807.7   1656.1
File Copy 256 bufsize 500 maxblocks            1655.0     168419.2   1017.6
File Copy 4096 bufsize 8000 maxblocks          5800.0    2060660.8   3552.9
Pipe Throughput                               12440.0     845716.8    679.8
Pipe-based Context Switching                   4000.0      47212.6    118.0
Process Creation                                126.0       7995.6    634.6
Shell Scripts (1 concurrent)                     42.4       9626.7   2270.5
Shell Scripts (8 concurrent)                      6.0       1486.7   2477.8
System Call Overhead                          15000.0     567780.1    378.5
                                                                   ========
System Benchmarks Index Score                                        1054.0

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:12:59 - 03:41:07
2 CPUs in system; running 2 parallel copies of tests

Dhrystone 2 using register variables       43837772.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     8116.2 MWIPS (10.0 s, 7 samples)
Execl Throughput                               5789.6 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        811946.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          209011.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2373898.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                             1062657.8 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 236394.6 lps   (10.0 s, 7 samples)
Process Creation                              12030.2 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  11033.7 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1528.9 lpm   (60.0 s, 2 samples)
System Call Overhead                         711209.7 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   43837772.7   3756.5
Double-Precision Whetstone                       55.0       8116.2   1475.7
Execl Throughput                                 43.0       5789.6   1346.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     811946.4   2050.4
File Copy 256 bufsize 500 maxblocks            1655.0     209011.0   1262.9
File Copy 4096 bufsize 8000 maxblocks          5800.0    2373898.3   4092.9
Pipe Throughput                               12440.0    1062657.8    854.2
Pipe-based Context Switching                   4000.0     236394.6    591.0
Process Creation                                126.0      12030.2    954.8
Shell Scripts (1 concurrent)                     42.4      11033.7   2602.3
Shell Scripts (8 concurrent)                      6.0       1528.9   2548.1
System Call Overhead                          15000.0     711209.7    474.1
                                                                   ========
System Benchmarks Index Score                                        1490.1

build.general1.medium

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 63
model name  : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping    : 2
microcode   : 0x43
cpu MHz     : 2900.072
cache size  : 25600 KB
physical id : 0
siblings    : 4
core id     : 0
cpu cores   : 2
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs        : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips    : 5800.20
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:56:18 - 03:24:22
4 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       37042891.4 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4687.8 MWIPS (9.9 s, 7 samples)
Execl Throughput                               4869.6 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        642096.6 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          165562.2 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2120868.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                              831962.9 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  38591.2 lps   (10.0 s, 7 samples)
Process Creation                               8478.4 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  12208.9 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   2686.7 lpm   (60.0 s, 2 samples)
System Call Overhead                         551373.6 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   37042891.4   3174.2
Double-Precision Whetstone                       55.0       4687.8    852.3
Execl Throughput                                 43.0       4869.6   1132.5
File Copy 1024 bufsize 2000 maxblocks          3960.0     642096.6   1621.5
File Copy 256 bufsize 500 maxblocks            1655.0     165562.2   1000.4
File Copy 4096 bufsize 8000 maxblocks          5800.0    2120868.5   3656.7
Pipe Throughput                               12440.0     831962.9    668.8
Pipe-based Context Switching                   4000.0      38591.2     96.5
Process Creation                                126.0       8478.4    672.9
Shell Scripts (1 concurrent)                     42.4      12208.9   2879.5
Shell Scripts (8 concurrent)                      6.0       2686.7   4477.8
System Call Overhead                          15000.0     551373.6    367.6
                                                                   ========
System Benchmarks Index Score                                        1116.2

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:24:22 - 03:52:29
4 CPUs in system; running 4 parallel copies of tests

Dhrystone 2 using register variables       87893541.5 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    16250.2 MWIPS (10.0 s, 7 samples)
Execl Throughput                              11552.4 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        927068.6 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          236688.1 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       3031883.9 KBps  (30.0 s, 2 samples)
Pipe Throughput                             2105841.3 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 460718.6 lps   (10.0 s, 7 samples)
Process Creation                              21576.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  20830.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3056.8 lpm   (60.0 s, 2 samples)
System Call Overhead                        1348812.7 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   87893541.5   7531.6
Double-Precision Whetstone                       55.0      16250.2   2954.6
Execl Throughput                                 43.0      11552.4   2686.6
File Copy 1024 bufsize 2000 maxblocks          3960.0     927068.6   2341.1
File Copy 256 bufsize 500 maxblocks            1655.0     236688.1   1430.1
File Copy 4096 bufsize 8000 maxblocks          5800.0    3031883.9   5227.4
Pipe Throughput                               12440.0    2105841.3   1692.8
Pipe-based Context Switching                   4000.0     460718.6   1151.8
Process Creation                                126.0      21576.7   1712.4
Shell Scripts (1 concurrent)                     42.4      20830.6   4912.9
Shell Scripts (8 concurrent)                      6.0       3056.8   5094.6
System Call Overhead                          15000.0    1348812.7    899.2
                                                                   ========
System Benchmarks Index Score                                        2558.4

build.general1.large

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 63
model name  : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping    : 2
microcode   : 0x43
cpu MHz     : 2899.926
cache size  : 25600 KB
physical id : 0
siblings    : 8
core id     : 0
cpu cores   : 4
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs        : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips    : 5800.14
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:56:39 - 03:24:42
8 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       37164856.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4697.0 MWIPS (9.9 s, 7 samples)
Execl Throughput                               4723.5 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        655966.3 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          169142.8 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2144758.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                              847124.2 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  40702.0 lps   (10.0 s, 7 samples)
Process Creation                               8017.4 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  12395.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3989.1 lpm   (60.0 s, 2 samples)
System Call Overhead                         569997.9 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   37164856.9   3184.6
Double-Precision Whetstone                       55.0       4697.0    854.0
Execl Throughput                                 43.0       4723.5   1098.5
File Copy 1024 bufsize 2000 maxblocks          3960.0     655966.3   1656.5
File Copy 256 bufsize 500 maxblocks            1655.0     169142.8   1022.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    2144758.5   3697.9
Pipe Throughput                               12440.0     847124.2    681.0
Pipe-based Context Switching                   4000.0      40702.0    101.8
Process Creation                                126.0       8017.4    636.3
Shell Scripts (1 concurrent)                     42.4      12395.5   2923.5
Shell Scripts (8 concurrent)                      6.0       3989.1   6648.5
System Call Overhead                          15000.0     569997.9    380.0
                                                                   ========
System Benchmarks Index Score                                        1162.5

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:24:42 - 03:52:47
8 CPUs in system; running 8 parallel copies of tests

Dhrystone 2 using register variables      173879768.6 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    32455.1 MWIPS (10.0 s, 7 samples)
Execl Throughput                              20199.0 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        899782.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          240332.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2896177.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                             4249392.9 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 905567.1 lps   (10.0 s, 7 samples)
Process Creation                              34890.9 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  36271.3 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   5402.3 lpm   (60.0 s, 2 samples)
System Call Overhead                        2674683.8 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  173879768.6  14899.7
Double-Precision Whetstone                       55.0      32455.1   5900.9
Execl Throughput                                 43.0      20199.0   4697.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     899782.1   2272.2
File Copy 256 bufsize 500 maxblocks            1655.0     240332.4   1452.2
File Copy 4096 bufsize 8000 maxblocks          5800.0    2896177.2   4993.4
Pipe Throughput                               12440.0    4249392.9   3415.9
Pipe-based Context Switching                   4000.0     905567.1   2263.9
Process Creation                                126.0      34890.9   2769.1
Shell Scripts (1 concurrent)                     42.4      36271.3   8554.5
Shell Scripts (8 concurrent)                      6.0       5402.3   9003.8
System Call Overhead                          15000.0    2674683.8   1783.1
                                                                   ========
System Benchmarks Index Score                                        4059.2

ECS - Fargate

0.25 x vCPU, Memory 0.5 GB

> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/cpuinfo/<タスクID> \
  --query "events[].[message]" \
  --output text

processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 79
model name      : Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz
stepping        : 1
microcode       : 0xb000038
cpu MHz         : 2299.923
cache size      : 46080 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4600.12
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:
processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 79
model name      : Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz
stepping        : 1
microcode       : 0xb000038
cpu MHz         : 2299.923
cache size      : 46080 KB
physical id     : 0
siblings        : 2
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4600.12
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/run/<タスクID> \
  --query "events[].[message]" \
  --output text

========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)
   System: ip-172-31-14-80.ap-northeast-1.compute.internal: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz (4600.1 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz (4600.1 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   05:02:55 up 1 min,  0 users,  load average: 0.21, 0.06, 0.02; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:02:55 - 05:37:36
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables        7801772.5 lps   (10.1 s, 7 samples)
Double-Precision Whetstone                     4508.1 MWIPS (10.6 s, 7 samples)
Execl Throughput                                949.9 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        112761.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks           29769.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks        335409.7 KBps  (30.0 s, 2 samples)
Pipe Throughput                              153927.4 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                   6912.6 lps   (10.0 s, 7 samples)
Process Creation                               1572.7 lps   (30.1 s, 2 samples)
Shell Scripts (1 concurrent)                   1691.2 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    226.3 lpm   (60.2 s, 2 samples)
System Call Overhead                          99125.1 lps   (10.1 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0    7801772.5    668.5
Double-Precision Whetstone                       55.0       4508.1    819.6
Execl Throughput                                 43.0        949.9    220.9
File Copy 1024 bufsize 2000 maxblocks          3960.0     112761.4    284.8
File Copy 256 bufsize 500 maxblocks            1655.0      29769.0    179.9
File Copy 4096 bufsize 8000 maxblocks          5800.0     335409.7    578.3
Pipe Throughput                               12440.0     153927.4    123.7
Pipe-based Context Switching                   4000.0       6912.6     17.3
Process Creation                                126.0       1572.7    124.8
Shell Scripts (1 concurrent)                     42.4       1691.2    398.9
Shell Scripts (8 concurrent)                      6.0        226.3    377.1
System Call Overhead                          15000.0      99125.1     66.1
                                                                   ========
System Benchmarks Index Score                                         214.5
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:37:36 - 06:20:57
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables        7807285.8 lps   (10.1 s, 7 samples)
Double-Precision Whetstone                     8974.7 MWIPS (10.6 s, 7 samples)
Execl Throughput                                901.9 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        101552.2 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks           26668.0 KBps  (30.1 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks        300822.1 KBps  (30.0 s, 2 samples)
Pipe Throughput                              153599.7 lps   (10.1 s, 7 samples)
Pipe-based Context Switching                  28153.4 lps   (10.1 s, 7 samples)
Process Creation                               1695.3 lps   (30.1 s, 2 samples)
Shell Scripts (1 concurrent)                   1683.6 lpm   (60.1 s, 2 samples)
Shell Scripts (8 concurrent)                    226.4 lpm   (60.3 s, 2 samples)
System Call Overhead                          95960.9 lps   (10.1 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0    7807285.8    669.0
Double-Precision Whetstone                       55.0       8974.7   1631.8
Execl Throughput                                 43.0        901.9    209.7
File Copy 1024 bufsize 2000 maxblocks          3960.0     101552.2    256.4
File Copy 256 bufsize 500 maxblocks            1655.0      26668.0    161.1
File Copy 4096 bufsize 8000 maxblocks          5800.0     300822.1    518.7
Pipe Throughput                               12440.0     153599.7    123.5
Pipe-based Context Switching                   4000.0      28153.4     70.4
Process Creation                                126.0       1695.3    134.5
Shell Scripts (1 concurrent)                     42.4       1683.6    397.1
Shell Scripts (8 concurrent)                      6.0        226.4    377.3
System Call Overhead                          15000.0      95960.9     64.0
                                                                   ========
System Benchmarks Index Score                                         248.3

0.5 x vCPU, Memory 1 GB

> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/cpuinfo/<タスクID> \
  --query "events[].[message]" \
  --output text

processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2893.668
cache size      : 25600 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5786.73
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:
processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2893.668
cache size      : 25600 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5786.73
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/run/<タスクID> \
  --query "events[].[message]" \
  --output text
========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)
   System: ip-172-31-13-70.ap-northeast-1.compute.internal: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5786.7 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5786.7 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   05:26:46 up 3 min,  0 users,  load average: 0.92, 0.25, 0.08; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:26:46 - 05:56:49
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables       18319698.5 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4737.1 MWIPS (9.8 s, 7 samples)
Execl Throughput                               2286.8 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        274635.0 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks           70545.2 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks        901333.9 KBps  (30.0 s, 2 samples)
Pipe Throughput                              363406.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  15090.6 lps   (10.0 s, 7 samples)
Process Creation                               3714.5 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   3922.7 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    421.9 lpm   (60.1 s, 2 samples)
System Call Overhead                         230248.6 lps   (10.0 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   18319698.5   1569.8
Double-Precision Whetstone                       55.0       4737.1    861.3
Execl Throughput                                 43.0       2286.8    531.8
File Copy 1024 bufsize 2000 maxblocks          3960.0     274635.0    693.5
File Copy 256 bufsize 500 maxblocks            1655.0      70545.2    426.3
File Copy 4096 bufsize 8000 maxblocks          5800.0     901333.9   1554.0
Pipe Throughput                               12440.0     363406.0    292.1
Pipe-based Context Switching                   4000.0      15090.6     37.7
Process Creation                                126.0       3714.5    294.8
Shell Scripts (1 concurrent)                     42.4       3922.7    925.2
Shell Scripts (8 concurrent)                      6.0        421.9    703.2
System Call Overhead                          15000.0     230248.6    153.5
                                                                   ========
System Benchmarks Index Score                                         466.8
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:56:49 - 06:31:11
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables       11483641.7 lps   (10.1 s, 7 samples)
Double-Precision Whetstone                     8186.4 MWIPS (9.9 s, 7 samples)
Execl Throughput                               1541.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        178702.8 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks           45765.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks        594792.4 KBps  (30.0 s, 2 samples)
Pipe Throughput                              235027.5 lps   (10.1 s, 7 samples)
Pipe-based Context Switching                  51461.7 lps   (10.0 s, 7 samples)
Process Creation                               3398.8 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   3337.9 lpm   (60.1 s, 2 samples)
Shell Scripts (8 concurrent)                    406.7 lpm   (60.1 s, 2 samples)
System Call Overhead                         150623.0 lps   (10.0 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   11483641.7    984.0
Double-Precision Whetstone                       55.0       8186.4   1488.4
Execl Throughput                                 43.0       1541.1    358.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     178702.8    451.3
File Copy 256 bufsize 500 maxblocks            1655.0      45765.5    276.5
File Copy 4096 bufsize 8000 maxblocks          5800.0     594792.4   1025.5
Pipe Throughput                               12440.0     235027.5    188.9
Pipe-based Context Switching                   4000.0      51461.7    128.7
Process Creation                                126.0       3398.8    269.7
Shell Scripts (1 concurrent)                     42.4       3337.9    787.2
Shell Scripts (8 concurrent)                      6.0        406.7    677.8
System Call Overhead                          15000.0     150623.0    100.4
                                                                   ========
System Benchmarks Index Score                                         411.5

1 x vCPU, Memory 2 GB

> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/cpuinfo/<タスクID> \
  --query "events[].[message]" \
  --output text

processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2899.814
cache size      : 25600 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5800.18
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2899.814
cache size      : 25600 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5800.18
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:
> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/run/<タスクID> \
  --query "events[].[message]" \
  --output text

========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)
   System: ip-172-31-4-45.ap-northeast-1.compute.internal: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.2 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.2 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   04:37:33 up 2 min,  0 users,  load average: 0.80, 0.22, 0.07; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:37:33 - 05:05:38
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables       36644230.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4701.9 MWIPS (9.9 s, 7 samples)
Execl Throughput                               4435.2 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        550379.0 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          142656.9 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1690958.1 KBps  (30.0 s, 2 samples)
Pipe Throughput                              723670.9 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  30224.3 lps   (10.0 s, 7 samples)
Process Creation                               7406.0 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   7848.3 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    843.4 lpm   (60.0 s, 2 samples)
System Call Overhead                         467682.3 lps   (10.0 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   36644230.0   3140.0
Double-Precision Whetstone                       55.0       4701.9    854.9
Execl Throughput                                 43.0       4435.2   1031.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     550379.0   1389.8
File Copy 256 bufsize 500 maxblocks            1655.0     142656.9    862.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    1690958.1   2915.4
Pipe Throughput                               12440.0     723670.9    581.7
Pipe-based Context Switching                   4000.0      30224.3     75.6
Process Creation                                126.0       7406.0    587.8
Shell Scripts (1 concurrent)                     42.4       7848.3   1851.0
Shell Scripts (8 concurrent)                      6.0        843.4   1405.6
System Call Overhead                          15000.0     467682.3    311.8
                                                                   ========
System Benchmarks Index Score                                         875.5
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:05:38 - 05:35:48
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables       22685463.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     8184.1 MWIPS (9.9 s, 7 samples)
Execl Throughput                               2974.0 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        353754.2 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks           91243.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1157957.1 KBps  (30.0 s, 2 samples)
Pipe Throughput                              471235.1 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 105718.4 lps   (10.0 s, 7 samples)
Process Creation                               6833.6 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   6681.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    809.7 lpm   (60.1 s, 2 samples)
System Call Overhead                         303979.9 lps   (10.0 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   22685463.0   1943.9
Double-Precision Whetstone                       55.0       8184.1   1488.0
Execl Throughput                                 43.0       2974.0    691.6
File Copy 1024 bufsize 2000 maxblocks          3960.0     353754.2    893.3
File Copy 256 bufsize 500 maxblocks            1655.0      91243.0    551.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    1157957.1   1996.5
Pipe Throughput                               12440.0     471235.1    378.8
Pipe-based Context Switching                   4000.0     105718.4    264.3
Process Creation                                126.0       6833.6    542.3
Shell Scripts (1 concurrent)                     42.4       6681.6   1575.8
Shell Scripts (8 concurrent)                      6.0        809.7   1349.5
System Call Overhead                          15000.0     303979.9    202.7
                                                                   ========
System Benchmarks Index Score                                         773.7

2 x vCPU, Memory 4 GB

> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/cpuinfo/<タスクID> \
  --query "events[].[message]" \
  --output text

processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2900.110
cache size      : 25600 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5800.08
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2900.110
cache size      : 25600 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5800.08
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2900.110
cache size      : 25600 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5800.08
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 63
model name      : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping        : 2
microcode       : 0x43
cpu MHz         : 2900.110
cache size      : 25600 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 5800.08
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:
> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/run/<タスクID> \
  --query "events[].[message]" \
  --output text

========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)
   System: ip-172-31-0-202.ap-northeast-1.compute.internal: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.1 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.1 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.1 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.1 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   04:38:32 up 2 min,  0 users,  load average: 0.42, 0.12, 0.04; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:38:32 - 05:06:33
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables       36978609.4 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4691.7 MWIPS (9.9 s, 7 samples)
Execl Throughput                               4626.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        558868.8 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          143375.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1852404.6 KBps  (30.0 s, 2 samples)
Pipe Throughput                              719962.1 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  39919.7 lps   (10.0 s, 7 samples)
Process Creation                               8626.2 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  10751.8 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1733.6 lpm   (60.0 s, 2 samples)
System Call Overhead                         461438.7 lps   (10.0 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   36978609.4   3168.7
Double-Precision Whetstone                       55.0       4691.7    853.0
Execl Throughput                                 43.0       4626.1   1075.8
File Copy 1024 bufsize 2000 maxblocks          3960.0     558868.8   1411.3
File Copy 256 bufsize 500 maxblocks            1655.0     143375.0    866.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    1852404.6   3193.8
Pipe Throughput                               12440.0     719962.1    578.7
Pipe-based Context Switching                   4000.0      39919.7     99.8
Process Creation                                126.0       8626.2    684.6
Shell Scripts (1 concurrent)                     42.4      10751.8   2535.8
Shell Scripts (8 concurrent)                      6.0       1733.6   2889.3
System Call Overhead                          15000.0     461438.7    307.6
                                                                   ========
System Benchmarks Index Score                                        1001.0
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:06:33 - 05:36:43
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables       46414046.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    16371.1 MWIPS (9.9 s, 7 samples)
Execl Throughput                               5873.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        483990.6 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          123723.9 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1639609.9 KBps  (30.0 s, 2 samples)
Pipe Throughput                             1002851.5 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 196746.3 lps   (10.0 s, 7 samples)
Process Creation                              12666.8 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  13185.9 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1614.4 lpm   (60.1 s, 2 samples)
System Call Overhead                         576605.6 lps   (10.0 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   46414046.7   3977.2
Double-Precision Whetstone                       55.0      16371.1   2976.6
Execl Throughput                                 43.0       5873.1   1365.8
File Copy 1024 bufsize 2000 maxblocks          3960.0     483990.6   1222.2
File Copy 256 bufsize 500 maxblocks            1655.0     123723.9    747.6
File Copy 4096 bufsize 8000 maxblocks          5800.0    1639609.9   2826.9
Pipe Throughput                               12440.0    1002851.5    806.2
Pipe-based Context Switching                   4000.0     196746.3    491.9
Process Creation                                126.0      12666.8   1005.3
Shell Scripts (1 concurrent)                     42.4      13185.9   3109.9
Shell Scripts (8 concurrent)                      6.0       1614.4   2690.6
System Call Overhead                          15000.0     576605.6    384.4
                                                                   ========
System Benchmarks Index Score                                        1393.4

4 x vCPU, Memory 8 GB

> aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/cpuinfo/<タスクID> \
  --query "events[].[message]" \
  --output text

processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3100.155
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4999.99
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3099.357
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4999.99
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3099.855
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4999.99
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping        : 4
microcode       : 0x2000065
cpu MHz         : 3099.941
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4999.99
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:
? aws logs get-log-events \
  --region ap-northeast-1 \
  --log-group-name /ecs/unix-bench-fargate-task \
  --log-stream-name ecs/run/<タスクID> \
  --query "events[].[message]" \
  --output text

========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)
   System: ip-172-31-9-193.ap-northeast-1.compute.internal: GNU/Linux
   OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   04:39:18 up 5 min,  0 users,  load average: 0.46, 0.11, 0.04; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:39:18 - 05:07:19
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables       37780526.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4552.9 MWIPS (9.8 s, 7 samples)
Execl Throughput                               4787.9 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        557542.0 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          146042.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1808140.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                              757991.9 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  66039.0 lps   (10.0 s, 7 samples)
Process Creation                               9755.8 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  11173.8 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   2422.2 lpm   (60.0 s, 2 samples)
System Call Overhead                         503092.2 lps   (10.0 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   37780526.7   3237.4
Double-Precision Whetstone                       55.0       4552.9    827.8
Execl Throughput                                 43.0       4787.9   1113.5
File Copy 1024 bufsize 2000 maxblocks          3960.0     557542.0   1407.9
File Copy 256 bufsize 500 maxblocks            1655.0     146042.4    882.4
File Copy 4096 bufsize 8000 maxblocks          5800.0    1808140.2   3117.5
Pipe Throughput                               12440.0     757991.9    609.3
Pipe-based Context Switching                   4000.0      66039.0    165.1
Process Creation                                126.0       9755.8    774.3
Shell Scripts (1 concurrent)                     42.4      11173.8   2635.3
Shell Scripts (8 concurrent)                      6.0       2422.2   4037.0
System Call Overhead                          15000.0     503092.2    335.4
                                                                   ========
System Benchmarks Index Score                                        1102.1
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:07:19 - 05:35:38
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables       92820784.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    16158.3 MWIPS (9.8 s, 7 samples)
Execl Throughput                              11898.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        828620.5 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          215750.3 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2623089.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                             1963761.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 447899.3 lps   (10.0 s, 7 samples)
Process Creation                              15708.8 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  18262.2 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   2869.6 lpm   (60.0 s, 2 samples)
System Call Overhead                        1258013.5 lps   (10.0 s, 7 samples)
System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   92820784.9   7953.8
Double-Precision Whetstone                       55.0      16158.3   2937.9
Execl Throughput                                 43.0      11898.1   2767.0
File Copy 1024 bufsize 2000 maxblocks          3960.0     828620.5   2092.5
File Copy 256 bufsize 500 maxblocks            1655.0     215750.3   1303.6
File Copy 4096 bufsize 8000 maxblocks          5800.0    2623089.5   4522.6
Pipe Throughput                               12440.0    1963761.0   1578.6
Pipe-based Context Switching                   4000.0     447899.3   1119.7
Process Creation                                126.0      15708.8   1246.7
Shell Scripts (1 concurrent)                     42.4      18262.2   4307.1
Shell Scripts (8 concurrent)                      6.0       2869.6   4782.7
System Call Overhead                          15000.0    1258013.5    838.7
                                                                   ========
System Benchmarks Index Score                                        2363.4

GCP

n1-standard-1

========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 9adb72a7c5e4: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   06:18:07 up 3 min,  0 users,  load average: 0.56, 0.17, 0.05; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:18:07 - 06:46:16
1 CPU in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       32150790.5 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3941.3 MWIPS (9.8 s, 7 samples)
Execl Throughput                               3732.0 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        393675.3 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          111040.7 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1159724.1 KBps  (30.0 s, 2 samples)
Pipe Throughput                              583436.4 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 102390.5 lps   (10.0 s, 7 samples)
Process Creation                               8754.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   6989.7 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    879.8 lpm   (60.0 s, 2 samples)
System Call Overhead                         168077.2 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   32150790.5   2755.0
Double-Precision Whetstone                       55.0       3941.3    716.6
Execl Throughput                                 43.0       3732.0    867.9
File Copy 1024 bufsize 2000 maxblocks          3960.0     393675.3    994.1
File Copy 256 bufsize 500 maxblocks            1655.0     111040.7    670.9
File Copy 4096 bufsize 8000 maxblocks          5800.0    1159724.1   1999.5
Pipe Throughput                               12440.0     583436.4    469.0
Pipe-based Context Switching                   4000.0     102390.5    256.0
Process Creation                                126.0       8754.7    694.8
Shell Scripts (1 concurrent)                     42.4       6989.7   1648.5
Shell Scripts (8 concurrent)                      6.0        879.8   1466.3
System Call Overhead                          15000.0     168077.2    112.1
                                                                   ========
System Benchmarks Index Score                                         781.2

n1-highcpu-2

$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 0
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 2
 Total Memory: 1.759GiB
 Name: kai-unix-bnch
 ID: IWXY:SXXR:FVUZ:CSQQ:K6R6:OCOB:IO3A:IKJZ:6M6A:RCDH:QZ5E:QWNQ
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 79
model name      : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping        : 0
microcode       : 0x1
cpu MHz         : 2199.998
cache size      : 56320 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4399.99
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 79
model name      : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping        : 0
microcode       : 0x1
cpu MHz         : 2199.998
cache size      : 56320 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4399.99
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:



========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 98292300ba0c: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   04:06:23 up 7 min,  0 users,  load average: 0.24, 0.13, 0.06; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:06:23 - 04:34:31
2 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       27871325.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4547.7 MWIPS (10.4 s, 7 samples)
Execl Throughput                               2585.7 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        397606.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          106161.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1193155.7 KBps  (30.0 s, 2 samples)
Pipe Throughput                              541103.1 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  54532.0 lps   (10.0 s, 7 samples)
Process Creation                               4153.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   6570.1 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1103.7 lpm   (60.0 s, 2 samples)
System Call Overhead                         167687.2 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   27871325.0   2388.3
Double-Precision Whetstone                       55.0       4547.7    826.9
Execl Throughput                                 43.0       2585.7    601.3
File Copy 1024 bufsize 2000 maxblocks          3960.0     397606.1   1004.1
File Copy 256 bufsize 500 maxblocks            1655.0     106161.4    641.5
File Copy 4096 bufsize 8000 maxblocks          5800.0    1193155.7   2057.2
Pipe Throughput                               12440.0     541103.1    435.0
Pipe-based Context Switching                   4000.0      54532.0    136.3
Process Creation                                126.0       4153.7    329.7
Shell Scripts (1 concurrent)                     42.4       6570.1   1549.6
Shell Scripts (8 concurrent)                      6.0       1103.7   1839.5
System Call Overhead                          15000.0     167687.2    111.8
                                                                   ========
System Benchmarks Index Score                                         680.2

------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:34:31 - 05:02:35
2 CPUs in system; running 2 parallel copies of tests

Dhrystone 2 using register variables       34556773.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     7548.4 MWIPS (9.7 s, 7 samples)
Execl Throughput                               4310.8 lps   (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        529410.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          139554.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1635185.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                              716141.4 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  66644.7 lps   (10.0 s, 7 samples)
Process Creation                               9155.2 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   8475.8 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1119.2 lpm   (60.1 s, 2 samples)
System Call Overhead                         254269.9 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   34556773.0   2961.2
Double-Precision Whetstone                       55.0       7548.4   1372.4
Execl Throughput                                 43.0       4310.8   1002.5
File Copy 1024 bufsize 2000 maxblocks          3960.0     529410.1   1336.9
File Copy 256 bufsize 500 maxblocks            1655.0     139554.5    843.2
File Copy 4096 bufsize 8000 maxblocks          5800.0    1635185.5   2819.3
Pipe Throughput                               12440.0     716141.4    575.7
Pipe-based Context Switching                   4000.0      66644.7    166.6
Process Creation                                126.0       9155.2    726.6
Shell Scripts (1 concurrent)                     42.4       8475.8   1999.0
Shell Scripts (8 concurrent)                      6.0       1119.2   1865.3
System Call Overhead                          15000.0     254269.9    169.5
                                                                   ========
System Benchmarks Index Score                                         954.3

n1-highcpu-8

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:56:33 - 03:24:40
8 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       27236782.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3754.4 MWIPS (9.9 s, 7 samples)
Execl Throughput                               2291.8 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        386162.8 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          106128.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1111336.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                              561820.9 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  51627.6 lps   (10.0 s, 7 samples)
Process Creation                               4516.2 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   7282.4 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3035.4 lpm   (60.0 s, 2 samples)
System Call Overhead                         166550.5 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   27236782.9   2333.9
Double-Precision Whetstone                       55.0       3754.4    682.6
Execl Throughput                                 43.0       2291.8    533.0
File Copy 1024 bufsize 2000 maxblocks          3960.0     386162.8    975.2
File Copy 256 bufsize 500 maxblocks            1655.0     106128.0    641.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    1111336.5   1916.1
Pipe Throughput                               12440.0     561820.9    451.6
Pipe-based Context Switching                   4000.0      51627.6    129.1
Process Creation                                126.0       4516.2    358.4
Shell Scripts (1 concurrent)                     42.4       7282.4   1717.6
Shell Scripts (8 concurrent)                      6.0       3035.4   5058.9
System Call Overhead                          15000.0     166550.5    111.0
                                                                   ========
System Benchmarks Index Score                                         723.3

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:24:40 - 03:52:50
8 CPUs in system; running 8 parallel copies of tests

Dhrystone 2 using register variables      137271586.5 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    25563.5 MWIPS (9.9 s, 7 samples)
Execl Throughput                              16485.8 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        704057.8 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          191735.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2148953.6 KBps  (30.0 s, 2 samples)
Pipe Throughput                             3163007.9 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 282669.7 lps   (10.0 s, 7 samples)
Process Creation                              34951.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  32939.2 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   4435.6 lpm   (60.1 s, 2 samples)
System Call Overhead                        1026702.7 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  137271586.5  11762.8
Double-Precision Whetstone                       55.0      25563.5   4647.9
Execl Throughput                                 43.0      16485.8   3833.9
File Copy 1024 bufsize 2000 maxblocks          3960.0     704057.8   1777.9
File Copy 256 bufsize 500 maxblocks            1655.0     191735.4   1158.5
File Copy 4096 bufsize 8000 maxblocks          5800.0    2148953.6   3705.1
Pipe Throughput                               12440.0    3163007.9   2542.6
Pipe-based Context Switching                   4000.0     282669.7    706.7
Process Creation                                126.0      34951.7   2773.9
Shell Scripts (1 concurrent)                     42.4      32939.2   7768.7
Shell Scripts (8 concurrent)                      6.0       4435.6   7392.6
System Call Overhead                          15000.0    1026702.7    684.5
                                                                   ========
System Benchmarks Index Score                                        2870.8

c2-standard-4

$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 0
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 4
 Total Memory: 15.68GiB
 Name: kai-unix-bench
 ID: YQPG:NXOK:QEFS:L6A3:52HD:4HRG:XVDP:JJ2T:QDIS:5YVX:UMWM:NHMG
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.284
cache size      : 25344 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.56
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.284
cache size      : 25344 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.56
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.284
cache size      : 25344 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.56
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.284
cache size      : 25344 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.56
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: b0f6160842bb: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   04:22:23 up 0 min,  0 users,  load average: 0.23, 0.07, 0.02; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 04:22:23 - 04:51:02
4 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       45642794.6 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3922.9 MWIPS (14.0 s, 7 samples)
Execl Throughput                               3899.9 lps   (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        616165.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          165499.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1709600.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                              852426.8 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  56940.6 lps   (10.0 s, 7 samples)
Process Creation                               9493.1 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  12793.8 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3110.3 lpm   (60.0 s, 2 samples)
System Call Overhead                         445511.3 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   45642794.6   3911.1
Double-Precision Whetstone                       55.0       3922.9    713.3
Execl Throughput                                 43.0       3899.9    907.0
File Copy 1024 bufsize 2000 maxblocks          3960.0     616165.1   1556.0
File Copy 256 bufsize 500 maxblocks            1655.0     165499.4   1000.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    1709600.3   2947.6
Pipe Throughput                               12440.0     852426.8    685.2
Pipe-based Context Switching                   4000.0      56940.6    142.4
Process Creation                                126.0       9493.1    753.4
Shell Scripts (1 concurrent)                     42.4      12793.8   3017.4
Shell Scripts (8 concurrent)                      6.0       3110.3   5183.9
System Call Overhead                          15000.0     445511.3    297.0
                                                                   ========
System Benchmarks Index Score                                        1121.6

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 04:51:02 - 05:19:28
4 CPUs in system; running 4 parallel copies of tests

Dhrystone 2 using register variables      123198472.2 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    15944.7 MWIPS (12.2 s, 7 samples)
Execl Throughput                              11645.3 lps   (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        926814.5 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          250898.8 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2783281.6 KBps  (30.0 s, 2 samples)
Pipe Throughput                             2378260.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 370253.6 lps   (10.0 s, 7 samples)
Process Creation                              30769.9 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  27293.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3514.6 lpm   (60.0 s, 2 samples)
System Call Overhead                        1178518.1 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  123198472.2  10556.9
Double-Precision Whetstone                       55.0      15944.7   2899.0
Execl Throughput                                 43.0      11645.3   2708.2
File Copy 1024 bufsize 2000 maxblocks          3960.0     926814.5   2340.4
File Copy 256 bufsize 500 maxblocks            1655.0     250898.8   1516.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    2783281.6   4798.8
Pipe Throughput                               12440.0    2378260.0   1911.8
Pipe-based Context Switching                   4000.0     370253.6    925.6
Process Creation                                126.0      30769.9   2442.1
Shell Scripts (1 concurrent)                     42.4      27293.6   6437.2
Shell Scripts (8 concurrent)                      6.0       3514.6   5857.7
System Call Overhead                          15000.0    1178518.1    785.7
                                                                   ========
System Benchmarks Index Score                                        2742.0

c2-standard-8(vCPU x 8、メモリ 32 GB)

$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 0
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 8
 Total Memory: 31.42GiB
 Name: kai-unix-bench2
 ID: 2IWY:63XX:VINK:FBP2:PFGS:XPI5:IBSX:4MQ7:5I3T:FGHG:KGGH:PMJN
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support

$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.268
cache size      : 25344 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 4
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.53
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.268
cache size      : 25344 KB
physical id     : 0
siblings        : 8
core id         : 1
cpu cores       : 4
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.53
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.268
cache size      : 25344 KB
physical id     : 0
siblings        : 8
core id         : 2
cpu cores       : 4
apicid          : 4
initial apicid  : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.53
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.268
cache size      : 25344 KB
physical id     : 0
siblings        : 8
core id         : 3
cpu cores       : 4
apicid          : 6
initial apicid  : 6
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.53
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 4
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.268
cache size      : 25344 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 4
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.53
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 5
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.268
cache size      : 25344 KB
physical id     : 0
siblings        : 8
core id         : 1
cpu cores       : 4
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.53
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 6
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.268
cache size      : 25344 KB
physical id     : 0
siblings        : 8
core id         : 2
cpu cores       : 4
apicid          : 5
initial apicid  : 5
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.53
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 7
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.268
cache size      : 25344 KB
physical id     : 0
siblings        : 8
core id         : 3
cpu cores       : 4
apicid          : 7
initial apicid  : 7
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.53
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 4794baadc80d: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 4: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 5: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 6: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 7: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   04:22:25 up 1 min,  0 users,  load average: 0.23, 0.08, 0.03; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 04:22:25 - 04:51:05
8 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       45654345.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3924.3 MWIPS (14.0 s, 7 samples)
Execl Throughput                               3917.9 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        626664.5 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          166134.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1778053.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                              853558.6 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  55814.2 lps   (10.0 s, 7 samples)
Process Creation                               9286.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  13339.8 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   4820.5 lpm   (60.0 s, 2 samples)
System Call Overhead                         448576.8 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   45654345.7   3912.1
Double-Precision Whetstone                       55.0       3924.3    713.5
Execl Throughput                                 43.0       3917.9    911.1
File Copy 1024 bufsize 2000 maxblocks          3960.0     626664.5   1582.5
File Copy 256 bufsize 500 maxblocks            1655.0     166134.0   1003.8
File Copy 4096 bufsize 8000 maxblocks          5800.0    1778053.5   3065.6
Pipe Throughput                               12440.0     853558.6    686.1
Pipe-based Context Switching                   4000.0      55814.2    139.5
Process Creation                                126.0       9286.7    737.0
Shell Scripts (1 concurrent)                     42.4      13339.8   3146.2
Shell Scripts (8 concurrent)                      6.0       4820.5   8034.2
System Call Overhead                          15000.0     448576.8    299.1
                                                                   ========
System Benchmarks Index Score                                        1170.4

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 04:51:05 - 05:19:33
8 CPUs in system; running 8 parallel copies of tests

Dhrystone 2 using register variables      239506379.6 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    31562.1 MWIPS (12.4 s, 7 samples)
Execl Throughput                              21248.2 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        869352.0 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          245677.6 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2710699.9 KBps  (30.0 s, 2 samples)
Pipe Throughput                             4798487.2 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 694300.8 lps   (10.0 s, 7 samples)
Process Creation                              53713.1 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  49238.0 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   6601.5 lpm   (60.0 s, 2 samples)
System Call Overhead                        2329651.1 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  239506379.6  20523.3
Double-Precision Whetstone                       55.0      31562.1   5738.6
Execl Throughput                                 43.0      21248.2   4941.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     869352.0   2195.3
File Copy 256 bufsize 500 maxblocks            1655.0     245677.6   1484.5
File Copy 4096 bufsize 8000 maxblocks          5800.0    2710699.9   4673.6
Pipe Throughput                               12440.0    4798487.2   3857.3
Pipe-based Context Switching                   4000.0     694300.8   1735.8
Process Creation                                126.0      53713.1   4262.9
Shell Scripts (1 concurrent)                     42.4      49238.0  11612.7
Shell Scripts (8 concurrent)                      6.0       6601.5  11002.5
System Call Overhead                          15000.0    2329651.1   1553.1
                                                                   ========
System Benchmarks Index Score                                        4382.6

c2-standard-16(vCPU x 16、メモリ 64 GB)

$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 1
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 16
 Total Memory: 62.92GiB
 Name: kai-unix-bench
 ID: YQPG:NXOK:QEFS:L6A3:52HD:4HRG:XVDP:JJ2T:QDIS:5YVX:UMWM:NHMG
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 0
cpu cores       : 8
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 1
cpu cores       : 8
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 2
cpu cores       : 8
apicid          : 4
initial apicid  : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 3
cpu cores       : 8
apicid          : 6
initial apicid  : 6
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 4
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 4
cpu cores       : 8
apicid          : 8
initial apicid  : 8
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 5
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 5
cpu cores       : 8
apicid          : 10
initial apicid  : 10
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 6
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 6
cpu cores       : 8
apicid          : 12
initial apicid  : 12
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 7
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 7
cpu cores       : 8
apicid          : 14
initial apicid  : 14
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 8
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 0
cpu cores       : 8
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 9
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 1
cpu cores       : 8
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 10
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 2
cpu cores       : 8
apicid          : 5
initial apicid  : 5
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 11
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 3
cpu cores       : 8
apicid          : 7
initial apicid  : 7
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 12
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 4
cpu cores       : 8
apicid          : 9
initial apicid  : 9
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 13
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 5
cpu cores       : 8
apicid          : 11
initial apicid  : 11
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 14
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 6
cpu cores       : 8
apicid          : 13
initial apicid  : 13
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 15
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 3100.252
cache size      : 25344 KB
physical id     : 0
siblings        : 16
core id         : 7
cpu cores       : 8
apicid          : 15
initial apicid  : 15
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 6200.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: ca7ec7124a50: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 4: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 5: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 6: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 7: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 8: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 9: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 10: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 11: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 12: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 13: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 14: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 15: Intel(R) Xeon(R) CPU (6200.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   05:27:28 up 2 min,  0 users,  load average: 0.08, 0.10, 0.04; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 05:27:28 - 05:56:08
16 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       45616386.1 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3923.1 MWIPS (14.0 s, 7 samples)
Execl Throughput                               3801.9 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        618642.3 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          165368.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1841377.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                              849263.5 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  55483.4 lps   (10.0 s, 7 samples)
Process Creation                               9053.9 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  13001.3 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   6054.4 lpm   (60.0 s, 2 samples)
System Call Overhead                         445344.6 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   45616386.1   3908.9
Double-Precision Whetstone                       55.0       3923.1    713.3
Execl Throughput                                 43.0       3801.9    884.2
File Copy 1024 bufsize 2000 maxblocks          3960.0     618642.3   1562.2
File Copy 256 bufsize 500 maxblocks            1655.0     165368.5    999.2
File Copy 4096 bufsize 8000 maxblocks          5800.0    1841377.2   3174.8
Pipe Throughput                               12440.0     849263.5    682.7
Pipe-based Context Switching                   4000.0      55483.4    138.7
Process Creation                                126.0       9053.9    718.6
Shell Scripts (1 concurrent)                     42.4      13001.3   3066.3
Shell Scripts (8 concurrent)                      6.0       6054.4  10090.7
System Call Overhead                          15000.0     445344.6    296.9
                                                                   ========
System Benchmarks Index Score                                        1184.6

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 05:56:08 - 06:24:37
16 CPUs in system; running 16 parallel copies of tests

Dhrystone 2 using register variables      484392273.1 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    63395.2 MWIPS (12.3 s, 7 samples)
Execl Throughput                              36962.4 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        887379.8 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          237144.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2567584.0 KBps  (30.0 s, 2 samples)
Pipe Throughput                             9559977.9 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                1124154.5 lps   (10.0 s, 7 samples)
Process Creation                              78948.3 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  91028.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                  12361.8 lpm   (60.0 s, 2 samples)
System Call Overhead                        4470778.5 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  484392273.1  41507.5
Double-Precision Whetstone                       55.0      63395.2  11526.4
Execl Throughput                                 43.0      36962.4   8595.9
File Copy 1024 bufsize 2000 maxblocks          3960.0     887379.8   2240.9
File Copy 256 bufsize 500 maxblocks            1655.0     237144.5   1432.9
File Copy 4096 bufsize 8000 maxblocks          5800.0    2567584.0   4426.9
Pipe Throughput                               12440.0    9559977.9   7684.9
Pipe-based Context Switching                   4000.0    1124154.5   2810.4
Process Creation                                126.0      78948.3   6265.7
Shell Scripts (1 concurrent)                     42.4      91028.6  21469.0
Shell Scripts (8 concurrent)                      6.0      12361.8  20603.1
System Call Overhead                          15000.0    4470778.5   2980.5
                                                                   ========
System Benchmarks Index Score                                        6836.8

n2-standard-2(vCPU x 2、メモリ 8 GB)

$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 0
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 2
 Total Memory: 7.801GiB
 Name: kai-unix-bench2
 ID: CRD6:NB4R:O42M:UIDT:YYSV:HG2D:EOZJ:SJLL:DGUA:DHXA:DIAI:NCH2
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.252
cache size      : 33792 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.252
cache size      : 33792 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 1
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.50
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 03d9c1191916: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU (5600.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU (5600.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   05:36:09 up 8 min,  0 users,  load average: 0.23, 0.07, 0.02; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 05:36:09 - 06:04:28
2 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       40758735.8 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4374.7 MWIPS (11.2 s, 7 samples)
Execl Throughput                               3657.1 lps   (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        550477.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          148620.2 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1545659.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                              767733.7 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  59190.0 lps   (10.0 s, 7 samples)
Process Creation                               7733.5 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   9875.1 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1623.7 lpm   (60.0 s, 2 samples)
System Call Overhead                         401485.8 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   40758735.8   3492.6
Double-Precision Whetstone                       55.0       4374.7    795.4
Execl Throughput                                 43.0       3657.1    850.5
File Copy 1024 bufsize 2000 maxblocks          3960.0     550477.1   1390.1
File Copy 256 bufsize 500 maxblocks            1655.0     148620.2    898.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    1545659.3   2664.9
Pipe Throughput                               12440.0     767733.7    617.1
Pipe-based Context Switching                   4000.0      59190.0    148.0
Process Creation                                126.0       7733.5    613.8
Shell Scripts (1 concurrent)                     42.4       9875.1   2329.0
Shell Scripts (8 concurrent)                      6.0       1623.7   2706.1
System Call Overhead                          15000.0     401485.8    267.7
                                                                   ========
System Benchmarks Index Score                                         975.6

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 06:04:28 - 06:32:32
2 CPUs in system; running 2 parallel copies of tests

Dhrystone 2 using register variables       54978596.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     8772.1 MWIPS (9.9 s, 7 samples)
Execl Throughput                               6145.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        741159.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          201076.0 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2131663.4 KBps  (30.0 s, 2 samples)
Pipe Throughput                             1082614.4 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 167341.0 lps   (10.0 s, 7 samples)
Process Creation                              16098.9 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  12915.1 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   1679.5 lpm   (60.0 s, 2 samples)
System Call Overhead                         548059.6 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   54978596.9   4711.1
Double-Precision Whetstone                       55.0       8772.1   1594.9
Execl Throughput                                 43.0       6145.1   1429.1
File Copy 1024 bufsize 2000 maxblocks          3960.0     741159.4   1871.6
File Copy 256 bufsize 500 maxblocks            1655.0     201076.0   1215.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    2131663.4   3675.3
Pipe Throughput                               12440.0    1082614.4    870.3
Pipe-based Context Switching                   4000.0     167341.0    418.4
Process Creation                                126.0      16098.9   1277.7
Shell Scripts (1 concurrent)                     42.4      12915.1   3046.0
Shell Scripts (8 concurrent)                      6.0       1679.5   2799.2
System Call Overhead                          15000.0     548059.6    365.4
                                                                   ========
System Benchmarks Index Score                                        1500.3

n2-highcpu-4(vCPU x 4、メモリ 4 GB)

$ docker info
Client:
 Debug Mode: false

Server:
ERROR: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.40/info: dial unix /var/run/docker.sock: connect: permission denied
errors pretty printing info
kai@kai-unix-bench:~$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 0
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 4
 Total Memory: 3.863GiB
 Name: kai-unix-bench
 ID: SVB7:URB2:3L2E:U3BB:RX3H:FV4D:GEQV:DHE3:CJZP:UNXU:7EQM:LZBD
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.242
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.48
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.242
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.48
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.242
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.48
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.242
cache size      : 33792 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.48
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: a307ec71ba88: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU (5600.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU (5600.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) CPU (5600.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) CPU (5600.5 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   06:32:01 up 3 min,  0 users,  load average: 0.21, 0.11, 0.04; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 06:32:01 - 07:00:19
4 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       40815319.8 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4358.7 MWIPS (11.2 s, 7 samples)
Execl Throughput                               3328.4 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        560442.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          148636.9 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1727564.4 KBps  (30.0 s, 2 samples)
Pipe Throughput                              767128.4 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  56424.5 lps   (10.0 s, 7 samples)
Process Creation                               8138.8 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  10954.1 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   2812.7 lpm   (60.0 s, 2 samples)
System Call Overhead                         401615.0 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   40815319.8   3497.5
Double-Precision Whetstone                       55.0       4358.7    792.5
Execl Throughput                                 43.0       3328.4    774.0
File Copy 1024 bufsize 2000 maxblocks          3960.0     560442.4   1415.3
File Copy 256 bufsize 500 maxblocks            1655.0     148636.9    898.1
File Copy 4096 bufsize 8000 maxblocks          5800.0    1727564.4   2978.6
Pipe Throughput                               12440.0     767128.4    616.7
Pipe-based Context Switching                   4000.0      56424.5    141.1
Process Creation                                126.0       8138.8    645.9
Shell Scripts (1 concurrent)                     42.4      10954.1   2583.5
Shell Scripts (8 concurrent)                      6.0       2812.7   4687.8
System Call Overhead                          15000.0     401615.0    267.7
                                                                   ========
System Benchmarks Index Score                                        1033.2

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 07:00:19 - 07:28:24
4 CPUs in system; running 4 parallel copies of tests

Dhrystone 2 using register variables      109797338.8 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    17515.8 MWIPS (10.0 s, 7 samples)
Execl Throughput                              11166.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        873690.8 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          230500.1 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2673820.9 KBps  (30.0 s, 2 samples)
Pipe Throughput                             2148508.3 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 320939.9 lps   (10.0 s, 7 samples)
Process Creation                              29319.7 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  25153.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3261.7 lpm   (60.0 s, 2 samples)
System Call Overhead                        1070915.0 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  109797338.8   9408.5
Double-Precision Whetstone                       55.0      17515.8   3184.7
Execl Throughput                                 43.0      11166.1   2596.8
File Copy 1024 bufsize 2000 maxblocks          3960.0     873690.8   2206.3
File Copy 256 bufsize 500 maxblocks            1655.0     230500.1   1392.8
File Copy 4096 bufsize 8000 maxblocks          5800.0    2673820.9   4610.0
Pipe Throughput                               12440.0    2148508.3   1727.1
Pipe-based Context Switching                   4000.0     320939.9    802.3
Process Creation                                126.0      29319.7   2327.0
Shell Scripts (1 concurrent)                     42.4      25153.6   5932.4
Shell Scripts (8 concurrent)                      6.0       3261.7   5436.2
System Call Overhead                          15000.0    1070915.0    713.9
                                                                   ========
System Benchmarks Index Score                                        2566.9

n2-highcpu-8(vCPU x 8、メモリ 8 GB)

$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 0
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 8
 Total Memory: 7.8GiB
 Name: kai-unix-bench2
 ID: 2IKD:QBCD:L24X:UQRD:DMKW:IM7W:YBV5:QDM5:KTON:37VA:4DNY:4KBW
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.202
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 4
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.202
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 1
cpu cores       : 4
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.202
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 2
cpu cores       : 4
apicid          : 4
initial apicid  : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.202
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 3
cpu cores       : 4
apicid          : 6
initial apicid  : 6
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 4
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.202
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 0
cpu cores       : 4
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 5
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.202
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 1
cpu cores       : 4
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 6
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.202
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 2
cpu cores       : 4
apicid          : 5
initial apicid  : 5
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 7
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.202
cache size      : 33792 KB
physical id     : 0
siblings        : 8
core id         : 3
cpu cores       : 4
apicid          : 7
initial apicid  : 7
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: f3a6ab5f6673: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 4: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 5: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 6: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 7: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   07:15:09 up 4 min,  0 users,  load average: 0.24, 0.09, 0.02; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 07:15:09 - 07:43:28
8 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       40809259.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4366.2 MWIPS (11.2 s, 7 samples)
Execl Throughput                               3348.7 lps   (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        562935.5 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          145924.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1901698.1 KBps  (30.0 s, 2 samples)
Pipe Throughput                              764448.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  59917.8 lps   (10.0 s, 7 samples)
Process Creation                               8396.2 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  11943.3 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   4387.4 lpm   (60.0 s, 2 samples)
System Call Overhead                         400332.0 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   40809259.7   3496.9
Double-Precision Whetstone                       55.0       4366.2    793.9
Execl Throughput                                 43.0       3348.7    778.8
File Copy 1024 bufsize 2000 maxblocks          3960.0     562935.5   1421.6
File Copy 256 bufsize 500 maxblocks            1655.0     145924.5    881.7
File Copy 4096 bufsize 8000 maxblocks          5800.0    1901698.1   3278.8
Pipe Throughput                               12440.0     764448.0    614.5
Pipe-based Context Switching                   4000.0      59917.8    149.8
Process Creation                                126.0       8396.2    666.4
Shell Scripts (1 concurrent)                     42.4      11943.3   2816.8
Shell Scripts (8 concurrent)                      6.0       4387.4   7312.4
System Call Overhead                          15000.0     400332.0    266.9
                                                                   ========
System Benchmarks Index Score                                        1095.7

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 07:43:28 - 08:11:35
8 CPUs in system; running 8 parallel copies of tests

Dhrystone 2 using register variables      218227359.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    35109.3 MWIPS (10.0 s, 7 samples)
Execl Throughput                              20952.6 lps   (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        868383.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          226164.7 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2845353.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                             4321888.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 623528.4 lps   (10.0 s, 7 samples)
Process Creation                              52415.6 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  46100.3 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   6283.0 lpm   (60.0 s, 2 samples)
System Call Overhead                        2103423.3 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  218227359.0  18699.9
Double-Precision Whetstone                       55.0      35109.3   6383.5
Execl Throughput                                 43.0      20952.6   4872.7
File Copy 1024 bufsize 2000 maxblocks          3960.0     868383.1   2192.9
File Copy 256 bufsize 500 maxblocks            1655.0     226164.7   1366.6
File Copy 4096 bufsize 8000 maxblocks          5800.0    2845353.3   4905.8
Pipe Throughput                               12440.0    4321888.0   3474.2
Pipe-based Context Switching                   4000.0     623528.4   1558.8
Process Creation                                126.0      52415.6   4160.0
Shell Scripts (1 concurrent)                     42.4      46100.3  10872.7
Shell Scripts (8 concurrent)                      6.0       6283.0  10471.7
System Call Overhead                          15000.0    2103423.3   1402.3
                                                                   ========
System Benchmarks Index Score                                        4207.2

n2-highcpu-16(vCPU x 16、メモリ 16 GB)

$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 1
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 16
 Total Memory: 15.67GiB
 Name: kai-unix-bench2
 ID: 2IKD:QBCD:L24X:UQRD:DMKW:IM7W:YBV5:QDM5:KTON:37VA:4DNY:4KBW
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 0
cpu cores       : 8
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 1
cpu cores       : 8
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 2
cpu cores       : 8
apicid          : 4
initial apicid  : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 3
cpu cores       : 8
apicid          : 6
initial apicid  : 6
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 4
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 4
cpu cores       : 8
apicid          : 8
initial apicid  : 8
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 5
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 5
cpu cores       : 8
apicid          : 10
initial apicid  : 10
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 6
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 6
cpu cores       : 8
apicid          : 12
initial apicid  : 12
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 7
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 7
cpu cores       : 8
apicid          : 14
initial apicid  : 14
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 8
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 0
cpu cores       : 8
apicid          : 1
initial apicid  : 1
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 9
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 1
cpu cores       : 8
apicid          : 3
initial apicid  : 3
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 10
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 2
cpu cores       : 8
apicid          : 5
initial apicid  : 5
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 11
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 3
cpu cores       : 8
apicid          : 7
initial apicid  : 7
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 12
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 4
cpu cores       : 8
apicid          : 9
initial apicid  : 9
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 13
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 5
cpu cores       : 8
apicid          : 11
initial apicid  : 11
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 14
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 6
cpu cores       : 8
apicid          : 13
initial apicid  : 13
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

processor       : 15
vendor_id       : GenuineIntel
cpu family      : 6
model           : 85
model name      : Intel(R) Xeon(R) CPU
stepping        : 7
microcode       : 0x1
cpu MHz         : 2800.204
cache size      : 33792 KB
physical id     : 0
siblings        : 16
core id         : 7
cpu cores       : 8
apicid          : 15
initial apicid  : 15
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs            : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips        : 5600.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 1b2f98d60630: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 4: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 5: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 6: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 7: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 8: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 9: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 10: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 11: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 12: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 13: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 14: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 15: Intel(R) Xeon(R) CPU (5600.4 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   08:25:17 up 9 min,  0 users,  load average: 0.29, 0.08, 0.02; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 08:25:17 - 08:53:33
16 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       40830420.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4367.8 MWIPS (11.2 s, 7 samples)
Execl Throughput                               3167.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        566607.0 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          148615.7 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1876624.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                              765398.3 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  59809.1 lps   (10.0 s, 7 samples)
Process Creation                               7892.1 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  11276.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   5409.1 lpm   (60.0 s, 2 samples)
System Call Overhead                         402683.8 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   40830420.7   3498.8
Double-Precision Whetstone                       55.0       4367.8    794.1
Execl Throughput                                 43.0       3167.1    736.5
File Copy 1024 bufsize 2000 maxblocks          3960.0     566607.0   1430.8
File Copy 256 bufsize 500 maxblocks            1655.0     148615.7    898.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    1876624.3   3235.6
Pipe Throughput                               12440.0     765398.3    615.3
Pipe-based Context Switching                   4000.0      59809.1    149.5
Process Creation                                126.0       7892.1    626.4
Shell Scripts (1 concurrent)                     42.4      11276.5   2659.6
Shell Scripts (8 concurrent)                      6.0       5409.1   9015.1
System Call Overhead                          15000.0     402683.8    268.5
                                                                   ========
System Benchmarks Index Score                                        1100.5

------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 08:53:33 - 09:21:40
16 CPUs in system; running 16 parallel copies of tests

Dhrystone 2 using register variables      435657084.7 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    70198.5 MWIPS (10.0 s, 7 samples)
Execl Throughput                              35231.1 lps   (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        868676.9 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          230135.7 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2780796.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                             8594813.3 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                1039416.1 lps   (10.0 s, 7 samples)
Process Creation                              76808.3 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  83810.2 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                  11476.0 lpm   (60.0 s, 2 samples)
System Call Overhead                        4044239.1 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  435657084.7  37331.4
Double-Precision Whetstone                       55.0      70198.5  12763.4
Execl Throughput                                 43.0      35231.1   8193.3
File Copy 1024 bufsize 2000 maxblocks          3960.0     868676.9   2193.6
File Copy 256 bufsize 500 maxblocks            1655.0     230135.7   1390.5
File Copy 4096 bufsize 8000 maxblocks          5800.0    2780796.2   4794.5
Pipe Throughput                               12440.0    8594813.3   6909.0
Pipe-based Context Switching                   4000.0    1039416.1   2598.5
Process Creation                                126.0      76808.3   6095.9
Shell Scripts (1 concurrent)                     42.4      83810.2  19766.6
Shell Scripts (8 concurrent)                      6.0      11476.0  19126.7
System Call Overhead                          15000.0    4044239.1   2696.2
                                                                   ========
System Benchmarks Index Score                                        6561.6

Cloud Build

n1-standard-1

processor  : 0
vendor_id  : GenuineIntel
cpu family  : 6
model    : 79
model name  : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping  : 0
microcode  : 0x1
cpu MHz    : 2200.000
cache size  : 56320 KB
physical id  : 0
siblings  : 1
core id    : 0
cpu cores  : 1
apicid    : 0
initial apicid  : 0
fpu    : yes
fpu_exception  : yes
cpuid level  : 13
wp    : yes
flags    : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti ssbd ibrs ibpb stibp fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs    : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips  : 4400.00
clflush size  : 64
cache_alignment  : 64
address sizes  : 46 bits physical, 48 bits virtual
power management:


------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:49:20 - 03:17:25
1 CPU in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       32081786.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3943.8 MWIPS (9.8 s, 7 samples)
Execl Throughput                               3521.7 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        470639.3 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          134472.9 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1187058.4 KBps  (30.0 s, 2 samples)
Pipe Throughput                              730911.5 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 167807.7 lps   (10.0 s, 7 samples)
Process Creation                               8355.9 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   6915.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                    903.5 lpm   (60.0 s, 2 samples)
System Call Overhead                         542352.4 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   32081786.9   2749.1
Double-Precision Whetstone                       55.0       3943.8    717.0
Execl Throughput                                 43.0       3521.7    819.0
File Copy 1024 bufsize 2000 maxblocks          3960.0     470639.3   1188.5
File Copy 256 bufsize 500 maxblocks            1655.0     134472.9    812.5
File Copy 4096 bufsize 8000 maxblocks          5800.0    1187058.4   2046.7
Pipe Throughput                               12440.0     730911.5    587.5
Pipe-based Context Switching                   4000.0     167807.7    419.5
Process Creation                                126.0       8355.9    663.2
Shell Scripts (1 concurrent)                     42.4       6915.6   1631.0
Shell Scripts (8 concurrent)                      6.0        903.5   1505.9
System Call Overhead                          15000.0     542352.4    361.6
                                                                   ========
System Benchmarks Index Score                                         937.9

n1-highcpu-8

processor  : 0
vendor_id  : GenuineIntel
cpu family  : 6
model    : 79
model name  : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping  : 0
microcode  : 0x1
cpu MHz    : 2200.000
cache size  : 56320 KB
physical id  : 0
siblings  : 8
core id    : 0
cpu cores  : 4
apicid    : 0
initial apicid  : 0
fpu    : yes
fpu_exception  : yes
cpuid level  : 13
wp    : yes
flags    : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti ssbd ibrs ibpb stibp fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs    : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips  : 4400.00
clflush size  : 64
cache_alignment  : 64
address sizes  : 46 bits physical, 48 bits virtual
power management:


------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:59:25 - 03:27:30
8 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       32051363.0 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3939.0 MWIPS (9.8 s, 7 samples)
Execl Throughput                               3287.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        478043.4 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          130190.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1190306.6 KBps  (30.0 s, 2 samples)
Pipe Throughput                              713234.1 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  56767.3 lps   (10.0 s, 7 samples)
Process Creation                               5384.2 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   8539.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3202.3 lpm   (60.0 s, 2 samples)
System Call Overhead                         537622.7 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   32051363.0   2746.5
Double-Precision Whetstone                       55.0       3939.0    716.2
Execl Throughput                                 43.0       3287.1    764.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     478043.4   1207.2
File Copy 256 bufsize 500 maxblocks            1655.0     130190.5    786.6
File Copy 4096 bufsize 8000 maxblocks          5800.0    1190306.6   2052.3
Pipe Throughput                               12440.0     713234.1    573.3
Pipe-based Context Switching                   4000.0      56767.3    141.9
Process Creation                                126.0       5384.2    427.3
Shell Scripts (1 concurrent)                     42.4       8539.5   2014.0
Shell Scripts (8 concurrent)                      6.0       3202.3   5337.2
System Call Overhead                          15000.0     537622.7    358.4
                                                                   ========
System Benchmarks Index Score                                         925.0

------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:27:30 - 03:55:38
8 CPUs in system; running 8 parallel copies of tests

Dhrystone 2 using register variables      163756790.9 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    27400.8 MWIPS (9.9 s, 7 samples)
Execl Throughput                              17300.5 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        689169.5 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          187183.9 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1983710.9 KBps  (30.0 s, 2 samples)
Pipe Throughput                             3723610.3 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 796010.0 lps   (10.0 s, 7 samples)
Process Creation                              30477.5 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  31650.3 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   4783.8 lpm   (60.0 s, 2 samples)
System Call Overhead                        2649811.3 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  163756790.9  14032.3
Double-Precision Whetstone                       55.0      27400.8   4982.0
Execl Throughput                                 43.0      17300.5   4023.4
File Copy 1024 bufsize 2000 maxblocks          3960.0     689169.5   1740.3
File Copy 256 bufsize 500 maxblocks            1655.0     187183.9   1131.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    1983710.9   3420.2
Pipe Throughput                               12440.0    3723610.3   2993.3
Pipe-based Context Switching                   4000.0     796010.0   1990.0
Process Creation                                126.0      30477.5   2418.8
Shell Scripts (1 concurrent)                     42.4      31650.3   7464.7
Shell Scripts (8 concurrent)                      6.0       4783.8   7972.9
System Call Overhead                          15000.0    2649811.3   1766.5
                                                                   ========
System Benchmarks Index Score                                        3452.5

n1-highcpu-16

$ sudo docker info
Client:
 Debug Mode: false

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 1
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.0-11-amd64
 Operating System: Debian GNU/Linux 9 (stretch)
 OSType: linux
 Architecture: x86_64
 CPUs: 16
 Total Memory: 14.1GiB
 Name: kai-unix-bnch
 ID: IWXY:SXXR:FVUZ:CSQQ:K6R6:OCOB:IO3A:IKJZ:6M6A:RCDH:QZ5E:QWNQ
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

WARNING: No swap limit support


$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 79
model name      : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping        : 0
microcode       : 0x1
cpu MHz         : 2200.000
cache size      : 56320 KB
physical id     : 0
siblings        : 16
core id         : 0
cpu cores       : 8
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs            : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips        : 4400.00
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:


========================================================================
   BYTE UNIX Benchmarks (Version 5.1.3)

   System: 60c5caaade1e: GNU/Linux
   OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
   Machine: x86_64 (x86_64)
   Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
   CPU 0: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 1: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 2: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 3: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 4: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 5: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 6: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 7: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 8: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 9: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 10: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 11: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 12: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 13: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 14: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   CPU 15: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
          Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
   05:24:54 up 11 min,  0 users,  load average: 0.09, 0.02, 0.01; runlevel unknown

------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:24:54 - 05:53:02
16 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       28020460.6 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     4498.8 MWIPS (10.5 s, 7 samples)
Execl Throughput                               2378.6 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        398337.1 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          105516.4 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1162185.5 KBps  (30.0 s, 2 samples)
Pipe Throughput                              547333.2 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  59927.4 lps   (10.0 s, 7 samples)
Process Creation                               5199.5 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   7343.6 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   3639.1 lpm   (60.0 s, 2 samples)
System Call Overhead                         168727.5 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   28020460.6   2401.1
Double-Precision Whetstone                       55.0       4498.8    818.0
Execl Throughput                                 43.0       2378.6    553.2
File Copy 1024 bufsize 2000 maxblocks          3960.0     398337.1   1005.9
File Copy 256 bufsize 500 maxblocks            1655.0     105516.4    637.6
File Copy 4096 bufsize 8000 maxblocks          5800.0    1162185.5   2003.8
Pipe Throughput                               12440.0     547333.2    440.0
Pipe-based Context Switching                   4000.0      59927.4    149.8
Process Creation                                126.0       5199.5    412.7
Shell Scripts (1 concurrent)                     42.4       7343.6   1732.0
Shell Scripts (8 concurrent)                      6.0       3639.1   6065.2
System Call Overhead                          15000.0     168727.5    112.5
                                                                   ========
System Benchmarks Index Score                                         772.1

------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:53:02 - 06:21:07
16 CPUs in system; running 16 parallel copies of tests

Dhrystone 2 using register variables      273725677.1 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    59866.6 MWIPS (9.7 s, 7 samples)
Execl Throughput                              25456.7 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        673943.6 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          167978.3 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1826337.3 KBps  (30.0 s, 2 samples)
Pipe Throughput                             5637617.7 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 485065.1 lps   (10.0 s, 7 samples)
Process Creation                              45260.4 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  57704.9 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   7852.9 lpm   (60.1 s, 2 samples)
System Call Overhead                        1959521.6 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  273725677.1  23455.5
Double-Precision Whetstone                       55.0      59866.6  10884.8
Execl Throughput                                 43.0      25456.7   5920.2
File Copy 1024 bufsize 2000 maxblocks          3960.0     673943.6   1701.9
File Copy 256 bufsize 500 maxblocks            1655.0     167978.3   1015.0
File Copy 4096 bufsize 8000 maxblocks          5800.0    1826337.3   3148.9
Pipe Throughput                               12440.0    5637617.7   4531.8
Pipe-based Context Switching                   4000.0     485065.1   1212.7
Process Creation                                126.0      45260.4   3592.1
Shell Scripts (1 concurrent)                     42.4      57704.9  13609.6
Shell Scripts (8 concurrent)                      6.0       7852.9  13088.2
System Call Overhead                          15000.0    1959521.6   1306.3
                                                                   ========
System Benchmarks Index Score                                        4279.8

n1-highcpu-32

processor  : 0
vendor_id  : GenuineIntel
cpu family  : 6
model    : 79
model name  : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping  : 0
microcode  : 0x1
cpu MHz    : 2200.000
cache size  : 56320 KB
physical id  : 0
siblings  : 32
core id    : 0
cpu cores  : 16
apicid    : 0
initial apicid  : 0
fpu    : yes
fpu_exception  : yes
cpuid level  : 13
wp    : yes
flags    : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti ssbd ibrs ibpb stibp fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs    : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips  : 4400.00
clflush size  : 64
cache_alignment  : 64
address sizes  : 46 bits physical, 48 bits virtual
power management:


------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:59:45 - 03:27:50
32 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       32204148.1 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3951.6 MWIPS (9.8 s, 7 samples)
Execl Throughput                               3350.1 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        516372.0 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          136907.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       1350650.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                              732752.3 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                  59827.3 lps   (10.0 s, 7 samples)
Process Creation                               5072.4 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                   8947.5 lpm   (60.0 s, 2 samples)
Shell Scripts (8 concurrent)                   4480.1 lpm   (60.0 s, 2 samples)
System Call Overhead                         542458.1 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   32204148.1   2759.6
Double-Precision Whetstone                       55.0       3951.6    718.5
Execl Throughput                                 43.0       3350.1    779.1
File Copy 1024 bufsize 2000 maxblocks          3960.0     516372.0   1304.0
File Copy 256 bufsize 500 maxblocks            1655.0     136907.5    827.2
File Copy 4096 bufsize 8000 maxblocks          5800.0    1350650.2   2328.7
Pipe Throughput                               12440.0     732752.3    589.0
Pipe-based Context Switching                   4000.0      59827.3    149.6
Process Creation                                126.0       5072.4    402.6
Shell Scripts (1 concurrent)                     42.4       8947.5   2110.3
Shell Scripts (8 concurrent)                      6.0       4480.1   7466.8
System Call Overhead                          15000.0     542458.1    361.6
                                                                   ========
System Benchmarks Index Score                                         979.9

Local

手元のMacBookProでも計測していたのでおまけ。

> system_profiler SPHardwareDataType
Hardware:

    Hardware Overview:

      Model Name: MacBook Pro
      Model Identifier: MacBookPro15,1
      Processor Name: Intel Core i9
      Processor Speed: 2.4 GHz
      Number of Processors: 1
      Total Number of Cores: 8
      L2 Cache (per Core): 256 KB
      L3 Cache: 16 MB
      Hyper-Threading Technology: Enabled
      Memory: 32 GB
      Boot ROM Version: 1037.0.78.0.0 (iBridge: 17.16.10572.0.0,0)


> docker info
Client:
 Debug Mode: false

Server:
 Containers: 1
  Running: 0
  Paused: 0
  Stopped: 1
 Images: 23
 Server Version: 19.03.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.184-linuxkit
 Operating System: Docker Desktop
 OSType: linux
 Architecture: x86_64
 CPUs: 12
 Total Memory: 7.785GiB
 Name: docker-desktop
 ID: 2V3A:WWTT:Y3KR:XDDZ:JXI7:O54C:KCSB:WRWD:RZX3:37VK:B7S5:WQCN
 Docker Root Dir: /var/lib/docker
 Debug Mode: true
  File Descriptors: 30
  Goroutines: 46
  System Time: 2019-10-30T05:17:34.5791598Z
  EventsListeners: 2
 HTTP Proxy: gateway.docker.internal:3128
 HTTPS Proxy: gateway.docker.internal:3129
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false
 Product License: Community Engine



------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:11:49 - 06:40:40
12 CPUs in system; running 1 parallel copy of tests

Dhrystone 2 using register variables       50057880.5 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                     3902.0 MWIPS (14.9 s, 7 samples)
Execl Throughput                               2776.5 lps   (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks        832721.5 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          210569.7 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       2128921.2 KBps  (30.0 s, 2 samples)
Pipe Throughput                             1279789.0 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 138260.2 lps   (10.0 s, 7 samples)
Process Creation                               5447.1 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  10225.7 lpm   (59.9 s, 2 samples)
Shell Scripts (8 concurrent)                   3606.8 lpm   (59.9 s, 2 samples)
System Call Overhead                        1030707.5 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0   50057880.5   4289.4
Double-Precision Whetstone                       55.0       3902.0    709.5
Execl Throughput                                 43.0       2776.5    645.7
File Copy 1024 bufsize 2000 maxblocks          3960.0     832721.5   2102.8
File Copy 256 bufsize 500 maxblocks            1655.0     210569.7   1272.3
File Copy 4096 bufsize 8000 maxblocks          5800.0    2128921.2   3670.6
Pipe Throughput                               12440.0    1279789.0   1028.8
Pipe-based Context Switching                   4000.0     138260.2    345.7
Process Creation                                126.0       5447.1    432.3
Shell Scripts (1 concurrent)                     42.4      10225.7   2411.7
Shell Scripts (8 concurrent)                      6.0       3606.8   6011.3
System Call Overhead                          15000.0    1030707.5    687.1
                                                                   ========
System Benchmarks Index Score                                        1326.0

------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:40:40 - 07:09:20
12 CPUs in system; running 12 parallel copies of tests

Dhrystone 2 using register variables      331115657.8 lps   (10.0 s, 7 samples)
Double-Precision Whetstone                    44449.0 MWIPS (12.6 s, 7 samples)
Execl Throughput                              26264.0 lps   (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks       1032922.9 KBps  (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks          257109.5 KBps  (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks       3568358.6 KBps  (30.0 s, 2 samples)
Pipe Throughput                             9677677.9 lps   (10.0 s, 7 samples)
Pipe-based Context Switching                 531561.9 lps   (10.0 s, 7 samples)
Process Creation                              27864.0 lps   (30.0 s, 2 samples)
Shell Scripts (1 concurrent)                  50654.8 lpm   (59.9 s, 2 samples)
Shell Scripts (8 concurrent)                   6502.9 lpm   (60.0 s, 2 samples)
System Call Overhead                        8085787.7 lps   (10.0 s, 7 samples)

System Benchmarks Index Values               BASELINE       RESULT    INDEX
Dhrystone 2 using register variables         116700.0  331115657.8  28373.2
Double-Precision Whetstone                       55.0      44449.0   8081.6
Execl Throughput                                 43.0      26264.0   6107.9
File Copy 1024 bufsize 2000 maxblocks          3960.0    1032922.9   2608.4
File Copy 256 bufsize 500 maxblocks            1655.0     257109.5   1553.5
File Copy 4096 bufsize 8000 maxblocks          5800.0    3568358.6   6152.3
Pipe Throughput                               12440.0    9677677.9   7779.5
Pipe-based Context Switching                   4000.0     531561.9   1328.9
Process Creation                                126.0      27864.0   2211.4
Shell Scripts (1 concurrent)                     42.4      50654.8  11946.9
Shell Scripts (8 concurrent)                      6.0       6502.9  10838.1
System Call Overhead                          15000.0    8085787.7   5390.5
                                                                   ========
System Benchmarks Index Score                                        5355.9

  • このエントリーをはてなブックマークに追加
  • Qiitaで続きを読む