-
Notifications
You must be signed in to change notification settings - Fork 25
/
remotetrace.py
executable file
·144 lines (118 loc) · 5.04 KB
/
remotetrace.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#! /usr/bin/env python
# Copyright (c) 2016 Aishwarya Ganesan and Ramnatthan Alagappan.
# All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import os
import sys
import math
from collections import defaultdict
import subprocess
import argparse
remote_user_name = 'aishwarya'
def invoke_remote_cmd(machine_ip, command):
cmd = 'ssh {0}@{1} \'{2}\''.format(remote_user_name, machine_ip, command)
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()
return (out, err)
def copy_file_from_remote(machine_ip, from_file_path, to_file_path):
cmd = 'scp {0}@{1}:{2} {3}'.format(remote_user_name, machine_ip, from_file_path, to_file_path)
os.system(cmd)
ERRFS_HOME = os.path.dirname(os.path.realpath(__file__))
fuse_command_trace = 'nohup ' + ERRFS_HOME + "/errfs -f -omodules=subdir,subdir=%s %s trace %s > /dev/null 2>&1 &"
parser = argparse.ArgumentParser()
parser.add_argument('--trace_files', nargs='+', required = True, help = 'Trace file paths')
parser.add_argument('--machines', nargs='+', required = True, help = 'Machine ips')
parser.add_argument('--data_dirs', nargs='+', required = True, help = 'Location of data directories')
parser.add_argument('--workload_command', required = True, type = str)
parser.add_argument('--ignore_file', type = str, default = None)
args = parser.parse_args()
for i in range(0, len(args.trace_files)):
args.trace_files[i] = os.path.abspath(args.trace_files[i])
for i in range(0, len(args.data_dirs)):
args.data_dirs[i] = os.path.abspath(args.data_dirs[i])
trace_files = args.trace_files
data_dirs = args.data_dirs
ignore_file = args.ignore_file
machines = args.machines
assert len(trace_files) == len(data_dirs)
machine_count = len(trace_files)
workload_command = args.workload_command
uppath = lambda _path, n: os.sep.join(_path.split(os.sep)[:-n])
data_dir_snapshots = []
data_dir_mount_points = []
for i in range(0, machine_count):
data_dir_snapshots.append(os.path.join(uppath(data_dirs[i], 1), os.path.basename(os.path.normpath(data_dirs[i]))+ ".snapshot"))
data_dir_mount_points.append(os.path.join(uppath(data_dirs[i], 1), os.path.basename(os.path.normpath(data_dirs[i]))+ ".mp"))
command = "rm -rf " + data_dir_snapshots[i] + ";"
command += "rm -rf " + data_dir_mount_points[i] + ";"
command += "mkdir " + data_dir_mount_points[i] + ";"
invoke_remote_cmd(machines[i], command)
for i in range(0, machine_count):
command = "cp -R " + data_dirs[i] + " " + data_dir_snapshots[i] + ";"
command += "rm -rf " + trace_files[i]
invoke_remote_cmd(machines[i], command)
for i in range(0, machine_count):
command = fuse_command_trace%(data_dirs[i], data_dir_mount_points[i], trace_files[i])
invoke_remote_cmd(machines[i], command)
os.system('sleep 1')
workload_command += " trace "
for i in range(0, machine_count):
workload_command += data_dir_mount_points[i] + " "
for i in range(0, machine_count):
workload_command += machines[i] + " "
os.system(workload_command)
i = 0
for mp in data_dir_mount_points:
invoke_remote_cmd(machines[i], 'fusermount -u ' + mp + '; sleep 1' + '; killall errfs >/dev/null 2>&1')
i += 1
to_ignore_files = []
if ignore_file is not None:
with open(ignore_file, 'r') as f:
for line in f:
line = line.strip().replace('\n','')
to_ignore_files.append(line)
def should_ignore(filename):
for ig in to_ignore_files:
if ig in filename:
return True
return False
i = 0
for trace_file in trace_files:
os.system('scp ra@' + machines[i] + ':' + trace_file + ' ' + trace_file)
i += 1
for trace_file in trace_files:
assert os.path.exists(trace_file)
assert os.stat(trace_file).st_size > 0
if ignore_file is not None:
to_write_final = ''
with open(trace_file, 'r') as f:
for line in f:
parts = line.split('\t')
if parts[0] in ['rename', 'unlink', 'link', 'symlink']:
to_write_final += line
else:
assert len(parts) == 4
filename = parts[0]
if not should_ignore(filename):
to_write_final += line
os.remove(trace_file)
with open(trace_file, 'w') as f:
f.write(to_write_final)
print 'Tracing completed...'