- Webサービスにおけるインフラアーキテクチャの体系化とインフラアーキテクチャの選択自動化の研究課題についての考察 by masayoshi
- TimeFuzeアーキテクチャ構想 - 処理とデータとタイマーを一体化したデータパイプライン by y_uuki
- 実行環境の変化に素早く適応できる恒常性を持つシステムアーキテクチャと今後の課題 by matsumotory
- 分散アプリケーションにおける複数端末利用を考慮したプライベートデータの管理 by monochromegane
- Linuxのトレースツールの体系化 by takumakume
- 旅行者支援のためのユーザコンテクスト収集とレコメンドシステム by Lyre_Reis
- 道をつくる - 個と組織のあり方について「道」の概念を使って考える (縁側トーク) by tomomii
- マイクロサービスアーキテクチャのための餅的実行基盤構想 by 61503891
- Jubatusよもやま話〜OSSのミドルウェア開発~ by suma90h
- [再利用性の高いTest Drive Intrastructure実行環境に関する取り組み](http://syucream.hatenablog.jp/entry/2017/12/22/082042
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ubuntu@xtsdb-01:~$ redis-cli --cluster create 10.0.0.21{0,1,2}:6379 | |
>>> Performing hash slots allocation on 3 nodes... | |
Master[0] -> Slots 0 - 5460 | |
Master[1] -> Slots 5461 - 10922 | |
Master[2] -> Slots 10923 - 16383 | |
M: 01808c924272decdda8efdcc025c2ab34b17c049 10.0.0.210:6379 | |
slots:[0-16383] (5461 slots) master | |
M: aa7c1f537643f99c68f0cd4e4fe9d8cfff8f14d6 10.0.0.211:6379 | |
slots:[5461-10922] (5462 slots) master | |
M: 44d48a123e5cecb5f62027cc74eaa6c356d352d5 10.0.0.212:6379 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To display the perf.data header info, please use --header/--header-only options. | |
# | |
# | |
# Total Lost Samples: 0 | |
# | |
# Samples: 16K of event 'cycles' | |
# Event count (approx.): 5563049817 | |
# | |
# Children Self Command Shared Object Symbol | |
# ........ ........ ........ ................ ......................................................................................... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To display the perf.data header info, please use --header/--header-only options. | |
# | |
# | |
# Total Lost Samples: 0 | |
# | |
# Samples: 35K of event 'cycles' | |
# Event count (approx.): 11614617130 | |
# | |
# Children Self Command Shared Object Symbol | |
# ........ ........ ........ ................ ......................................................................................... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-10-03T05:38:21.773Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# vim: fileencoding=utf-8 | |
import base64 | |
import json | |
import os.path | |
import subprocess | |
import sys | |
import urllib.request | |
import urllib.error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
mackerel "github.com/mackerelio/mackerel-client-go" | |
) | |
func main() { | |
mkr := mackerel.NewClient("your api key") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"log" | |
"net" | |
"os" | |
"strings" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e -o pipefail | |
DEPLOY_TO='operationserver' | |
CMD="$@" | |
if [ -z "${CMD}" ]; then | |
echo "CMD required" 1>&2 | |
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 310ms user time, 10ms system time, 30.65M rss, 98.40M vsz | |
# Current date: Sun Sep 27 15:37:00 2015 | |
# Hostname: isucon01 | |
# Files: /var/lib/mysql/mysqld-slow.log | |
# Overall: 334 total, 17 unique, 0.48 QPS, 0.16x concurrency _____________ | |
# Time range: 2015-09-27 15:23:56 to 15:35:33 | |
# Attribute total min max avg 95% stddev median | |
# ============ ======= ======= ======= ======= ======= ======= ======= | |
# Exec time 114s 55ms 4s 343ms 945ms 354ms 253ms | |
# Lock time 295ms 30us 98ms 883us 159us 7ms 49us |