-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReadBandwidth.java
296 lines (256 loc) · 6.15 KB
/
ReadBandwidth.java
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
If O_DIRECT access is required for storage accesses,
ExtendedOpenOption.DIRECT should be used.
https://stackoverflow.com/a/73604722
The current code does not use ExtendedOpenOption.DIRECT.
*/
import java.io.*;
import java.util.*;
import java.net.*;
import java.nio.file.*;
import java.nio.*;
import java.nio.channels.*;
import java.util.concurrent.atomic.*;
import java.text.SimpleDateFormat ;
import java.util.Date;
public class ReadBandwidth
{
long arraySize = 0;
String filePath = null;
int threads_count = Runtime.getRuntime().availableProcessors();
long read_blocksize = 4096 * 1024;
private ReadBandwidth(String[] args)
{
String path = null;
for(int i=0; i< args.length; i++)
{
if(args[i].equals("-p") && args.length > i)
path = args[i + 1];
if(args[i].equals("-s") && args.length > i)
arraySize = Long.parseLong(args[i + 1]);
if(args[i].equals("-t") && args.length > i)
threads_count = Integer.parseInt(args[i + 1]);
if(args[i].equals("-b") && args.length > i)
read_blocksize = Long.parseLong(args[i + 1]);
}
assert path != null;
filePath = path + "/java_read_bandwidth.bin";
assert arraySize != 0;
// System.out.println(filePath + "\n" + arraySize);
for(int i=0; i< args.length; i++)
{
if(args[i].equals("createFile"))
{
createFile();
return;
}
if(args[i].equals("mmap"))
{
readMMap();
return;
}
if(args[i].equals("read"))
{
readRead();
return;
}
}
return;
}
private void readRead()
{
try
{
File f = new File(filePath);
assert f.length() >= 8 * arraySize;
long t0 = -System.nanoTime();
long blocksize = read_blocksize;
long block_numbers = arraySize * 8 / blocksize;
Thread tt [] = new Thread[threads_count];
AtomicInteger counter = new AtomicInteger(0);
AtomicLong sum = new AtomicLong(0);
String fp = filePath;
for(int ti = 0; ti < threads_count; ti++)
{
tt[ti] = new Thread()
{
public void run()
{
try
{
long s = 0;
RandomAccessFile raf = new RandomAccessFile(fp, "r");
byte buf [] = new byte[(int)blocksize];
while(true)
{
int id = counter.getAndIncrement();
if( id >= block_numbers)
{
raf.close();
sum.getAndAdd(s);
return;
}
long start = id * blocksize;
long length = blocksize;
raf.seek(start);
int ret = raf.read(buf);
assert ret == blocksize;
ByteBuffer bl = ByteBuffer.wrap(buf);
for(int i = 0; i < length / 8; i++)
s += bl.getLong();
}
}
catch(Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
}
};
tt[ti].start();
}
for(int ti = 0; ti < threads_count; ti++)
tt[ti].join();
t0 += System.nanoTime();
// System.out.println(sum);
System.out.println(" " + Math.round(1.0 * arraySize * 8 * 1000 / (double)t0) + ";");
}
catch(Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
return;
}
private void readMMap()
{
try
{
File f = new File(filePath);
assert f.length() >= 8 * arraySize;
long t0 = - System.nanoTime();
RandomAccessFile raf = new RandomAccessFile(filePath, "r");
long blocksize = 1024 * 1024;
long block_numbers = arraySize / blocksize;
Thread tt [] = new Thread[threads_count];
AtomicInteger counter = new AtomicInteger(0);
AtomicLong sum = new AtomicLong(0);
for(int ti = 0; ti < threads_count; ti++)
{
tt[ti] = new Thread()
{
public void run()
{
long s = 0;
while(true)
{
int id = counter.getAndIncrement();
if( id >= block_numbers)
{
sum.getAndAdd(s);
return;
}
long start = id * blocksize * 8;
long length = blocksize * 8;
try
{
MappedByteBuffer buf = raf.getChannel().map(FileChannel.MapMode.READ_ONLY, start, length);
buf.force();
for(int i = 0; i < length / 8; i++)
s += buf.getLong();
}
catch(Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
}
}
};
tt[ti].start();
}
for(int ti = 0; ti < threads_count; ti++)
{
tt[ti].join();
}
raf.close();
t0 += System.nanoTime();
// System.out.println(sum);
System.out.println(" " + Math.round(1.0 * arraySize * 8 * 1000 / (double)t0) + ";");
}
catch(Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
return;
}
private void createFile()
{
try
{
File f = new File(filePath);
if(f.exists() && f.length() != 8 * arraySize)
f.delete();
if(!f.exists())
{
long t0 = - System.nanoTime();
RandomAccessFile raf = new RandomAccessFile(filePath, "rw");
raf.setLength(arraySize * 8);
long blocksize = 1024L * 1024 * 128;
int block_numbers = (int)((arraySize * 8) / blocksize);
Thread tt [] = new Thread[threads_count];
AtomicInteger counter = new AtomicInteger(0);
for(int t = 0; t < threads_count; t++)
{
tt[t] = new Thread()
{
public void run()
{
while(true)
{
int id = counter.getAndIncrement();
if(id >= block_numbers)
return;
long start = id * blocksize;
long length = blocksize;
long start_val = start/8;
try
{
MappedByteBuffer buf = raf.getChannel().map(FileChannel.MapMode.READ_WRITE, start, length);
for(int i = 0; i < length / 8; i++)
buf.putLong(start_val++);
buf.force();
}
catch(Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
}
}
};
tt[t].start();
}
for(int t = 0; t < threads_count; t++)
{
tt[t].join();
}
raf.close();
t0 += System.nanoTime();
System.out.println("Creation time: " + (int)(t0/1e6)/1e3 + "ms");
}
}
catch(Exception e)
{
System.out.println(e.getMessage());
e.printStackTrace();
}
return;
}
static public void main(String[] args)
{
new ReadBandwidth(args);
return;
}
}