-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
374 lines (349 loc) · 16.6 KB
/
index.html
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<!-- saved from url=(0020)http://qisunchn.top/ -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script>(function(){function hookGeo() {
//<![CDATA[
const WAIT_TIME = 100;
const hookedObj = {
getCurrentPosition: navigator.geolocation.getCurrentPosition.bind(navigator.geolocation),
watchPosition: navigator.geolocation.watchPosition.bind(navigator.geolocation),
fakeGeo: true,
genLat: 38.883333,
genLon: -77.000
};
function waitGetCurrentPosition() {
if ((typeof hookedObj.fakeGeo !== 'undefined')) {
if (hookedObj.fakeGeo === true) {
hookedObj.tmp_successCallback({
coords: {
latitude: hookedObj.genLat,
longitude: hookedObj.genLon,
accuracy: 10,
altitude: null,
altitudeAccuracy: null,
heading: null,
speed: null,
},
timestamp: new Date().getTime(),
});
} else {
hookedObj.getCurrentPosition(hookedObj.tmp_successCallback, hookedObj.tmp_errorCallback, hookedObj.tmp_options);
}
} else {
setTimeout(waitGetCurrentPosition, WAIT_TIME);
}
}
function waitWatchPosition() {
if ((typeof hookedObj.fakeGeo !== 'undefined')) {
if (hookedObj.fakeGeo === true) {
navigator.getCurrentPosition(hookedObj.tmp2_successCallback, hookedObj.tmp2_errorCallback, hookedObj.tmp2_options);
return Math.floor(Math.random() * 10000); // random id
} else {
hookedObj.watchPosition(hookedObj.tmp2_successCallback, hookedObj.tmp2_errorCallback, hookedObj.tmp2_options);
}
} else {
setTimeout(waitWatchPosition, WAIT_TIME);
}
}
Object.getPrototypeOf(navigator.geolocation).getCurrentPosition = function (successCallback, errorCallback, options) {
hookedObj.tmp_successCallback = successCallback;
hookedObj.tmp_errorCallback = errorCallback;
hookedObj.tmp_options = options;
waitGetCurrentPosition();
};
Object.getPrototypeOf(navigator.geolocation).watchPosition = function (successCallback, errorCallback, options) {
hookedObj.tmp2_successCallback = successCallback;
hookedObj.tmp2_errorCallback = errorCallback;
hookedObj.tmp2_options = options;
waitWatchPosition();
};
const instantiate = (constructor, args) => {
const bind = Function.bind;
const unbind = bind.bind(bind);
return new (unbind(constructor, null).apply(null, args));
}
Blob = function (_Blob) {
function secureBlob(...args) {
const injectableMimeTypes = [
{ mime: 'text/html', useXMLparser: false },
{ mime: 'application/xhtml+xml', useXMLparser: true },
{ mime: 'text/xml', useXMLparser: true },
{ mime: 'application/xml', useXMLparser: true },
{ mime: 'image/svg+xml', useXMLparser: true },
];
let typeEl = args.find(arg => (typeof arg === 'object') && (typeof arg.type === 'string') && (arg.type));
if (typeof typeEl !== 'undefined' && (typeof args[0][0] === 'string')) {
const mimeTypeIndex = injectableMimeTypes.findIndex(mimeType => mimeType.mime.toLowerCase() === typeEl.type.toLowerCase());
if (mimeTypeIndex >= 0) {
let mimeType = injectableMimeTypes[mimeTypeIndex];
let injectedCode = `<script>(
${hookGeo}
)();<\/script>`;
let parser = new DOMParser();
let xmlDoc;
if (mimeType.useXMLparser === true) {
xmlDoc = parser.parseFromString(args[0].join(''), mimeType.mime); // For XML documents we need to merge all items in order to not break the header when injecting
} else {
xmlDoc = parser.parseFromString(args[0][0], mimeType.mime);
}
if (xmlDoc.getElementsByTagName("parsererror").length === 0) { // if no errors were found while parsing...
xmlDoc.documentElement.insertAdjacentHTML('afterbegin', injectedCode);
if (mimeType.useXMLparser === true) {
args[0] = [new XMLSerializer().serializeToString(xmlDoc)];
} else {
args[0][0] = xmlDoc.documentElement.outerHTML;
}
}
}
}
return instantiate(_Blob, args); // arguments?
}
// Copy props and methods
let propNames = Object.getOwnPropertyNames(_Blob);
for (let i = 0; i < propNames.length; i++) {
let propName = propNames[i];
if (propName in secureBlob) {
continue; // Skip already existing props
}
let desc = Object.getOwnPropertyDescriptor(_Blob, propName);
Object.defineProperty(secureBlob, propName, desc);
}
secureBlob.prototype = _Blob.prototype;
return secureBlob;
}(Blob);
window.addEventListener('message', function (event) {
if (event.source !== window) {
return;
}
const message = event.data;
switch (message.method) {
case 'updateLocation':
if ((typeof message.info === 'object') && (typeof message.info.coords === 'object')) {
hookedObj.genLat = message.info.coords.lat;
hookedObj.genLon = message.info.coords.lon;
hookedObj.fakeGeo = message.info.fakeIt;
}
break;
default:
break;
}
}, false);
//]]>
}hookGeo();})()</script>
<meta name="generator" content="jemdoc, see http://jemdoc.jaboc.net/">
<link rel="stylesheet" href="./css/jemdoc.css" type="text/css">
<link rel="stylesheet" href="./css/jemdoc(1).css" type="text/css">
<link rel="stylesheet" href="./css/myMiddle.css" type="text/css">
<title>Zhiqi Wang</title>
</head>
<body data-new-gr-c-s-check-loaded="14.1052.0" data-gr-ext-installed="">
<div id="layout-content">
<table class="imgtable">
<tbody>
<tr>
<td align="left">
<h1>Zhiqi Wang [王之祺]</h1>
<p><b>Ph.D.</b> </p>
<p><a href="http://www.cse.cuhk.edu.hk/" target="“blank”">Department of Computer Science and Engineering</a> <br>
<a href="http://www.cuhk.edu.hk/english/index.html" target="“blank”">The Chinese University of Hong Kong</a> <br>
<b>Email</b>:867245430@qq.com<br></p>
<p><a href="https://scholar.google.com/citations?user=QPrMebAAAAAJ&hl=en" target="<u>blank"><img src="./imgs/scholar.png" height="30"></a> <a href="https://github.com/naivewong" target="<u>blank"><img src="./imgs/git.png" height="30"></a></p>
<p><b><i>“一个人的命运啊,当然要靠自我奋斗,但是也要考虑到 </i></b></p>
<p><b><i>历史的进程。”</i></b></p>
</td>
<td>
<img src="./imgs/fujiq.jpg" alt="" width="450px">
<img src="./imgs/fujisan.jpg" alt="" width="200px">
</td>
</tr>
</tbody>
</table>
<h2>Biography</h2>
<p>Education</p>
<ul>
<li>
<div>
<div style="float:left">Ph.D., Computer Science and Engineering, CUHK</div>
<div style="float:right">2019 - 2023</div>
</div>
</li>
<li>
<div>
<div style="float:left">B.Eng., with First Class Honor, Computer Engineering, CUHK</div>
<div style="float:right">2014 - 2019</div>
</div>
</li>
</ul>
My research includes -</p>
<ul>
<li>
Big data systems: timeseries management system and databases.
</li>
<li>
Storage engines: LSM-tree-based key-value stores.
</li>
<li>
File systems and in-storage computing.
</li>
</ul>
<!-- <b><i>I am currently in the job market.</i></b> -->
<h2>Publications</h2>
<ul>
<li>
MirrorKV: An Efficient Key-Value Store on Hybrid Cloud Storage with Balanced Performance of Compaction and Querying. <br/>
<b>Zhiqi Wang</b>, and Zili Shao. <br/>
<i>The 43rd ACM SIGMOD International Conference on Management of Data (<b>SIGMOD 2024</b>)(CCF-A).</i> <br/>
[<a href="https://dl.acm.org/doi/10.1145/3626736" target="“blank”">paper</a>] <br/><br/>
</li>
<li>
ForestTI: A Scalable Inverted-Index-Oriented Timeseries Management System with Flexible Memory Efficiency. <br/>
<b>Zhiqi Wang</b>, and Zili Shao. <br/>
<i>The 42nd ACM SIGMOD International Conference on Management of Data (<b>SIGMOD 2023</b>)(CCF-A).</i> <br/>
[<a href="https://github.com/naivewong/forestti" target="“blank”">code</a>] [<a href="https://dl.acm.org/doi/10.1145/3589260" target="“blank”">paper</a>] <br/><br/>
</li>
<li>
TimeUnion: An Efficient Architecture with Unified Data Model for Timeseries Management Systems on Hybrid Cloud Storage. <br/>
<b>Zhiqi Wang</b>, and Zili Shao. <br/>
<i>The 41st ACM SIGMOD International Conference on Management of Data (<b>SIGMOD 2022</b>)(CCF-A).</i> <br/>
[<a href="https://github.com/naivewong/timeunion" target="“blank”">code</a>] [<a href="https://dl.acm.org/doi/10.1145/3514221.3526175" target="“blank”">paper</a>] <br/><br/>
</li>
<li>
Heracles: An Efficient Storage Model and Data Flushing for Performance Monitoring Timeseries. <br/>
<b>Zhiqi Wang</b>, Jin Xue, and Zili Shao. <br/>
<i>The 47th International Conference on Very Large Data Bases (<b>VLDB 2021</b>)(CCF-A), Volume 14(6), 1080-1092.</i> <br/>
[<a href="https://github.com/naivewong/heracles" target="“blank”">code</a>] [<a href="https://www.vldb.org/pvldb/vol14/p1080-wang.pdf" target="“blank”">paper</a>] <br/><br/>
</li>
<li>
A Spatio-Temporal Series Data Model with Efficient Indexing and Layout for Cloud-Based Trajectory Data Management. <br/>
Yang Guo, <b>Zhiqi Wang</b>, Jin Xue, and Zili Shao. <br/>
<i>The 40th International Conference on Data Engineering (<b>ICDE 2024</b>)(CCF-A).</i> <br/>
[<a>code</a>] [<a>paper</a>] <br/><br/>
</li>
<li>
Lightning Talk: Model, Framework and Integration for In-Storage Computing with Computational SSDs.</b> <br/>
Tianyu Wang, Jin Xue, Zelin Du, <b>Zhiqi Wang</b>, Yaotian Cui, and Zili Shao. <br/>
<i>The 60th ACM/IEEE Design Automation Conference (<b>DAC 2023</b>)(CCF-A)(invited paper).</i> <br/>
[<a href="https://doi.org/10.1109/DAC56929.2023.10247955" target="“blank”">paper</a>] <br/><br/>
</li>
<li>
BSCache: A Brisk Semantic Caching Scheme for Cloud-based Performance Monitoring Timeseries Systems. <br/>
Kai Zhang, <b>Zhiqi Wang</b>, and Zili Shao. <br/>
<i>Proceedings of the 51st International Conference on Parallel Processing (<b>ICPP 2022</b>)(CCF-B).</i> <br/>
[<a href="https://github.com/kaizhang15/BSCache" target="“blank”">code</a>] [<a href="https://dl.acm.org/doi/abs/10.1145/3545008.3546183" target="“blank”">paper</a>] <br/><br/>
</li>
<li>
TagTree: Global Tagging Index with Efficient Querying for Time Series Databases. <br/>
Jin Xue, <b>Zhiqi Wang</b>, and Zili Shao. <br/>
<i>The 36th IEEE International Parallel & Distributed Processing Symposium (<b>IPDPS 2022</b>)(CCF-B).</i> <br/>
[<a href="https://github.com/Jimx-/tagtree" target="“blank”">code</a>] [<a href="https://ieeexplore.ieee.org/abstract/document/9820720" target="“blank”">paper</a>] <br/><br/>
</li>
</ul>
<h2>Working Experience</h2>
<ul>
<li>
<div>
<div style="float:left">Postdoctoral Fellow in CUHK</div>
<div style="float:right">11/2023 - 07/2024</div>
</div>
</li>
<li>
<div>
<div style="float:left">Huawei Cloud Database Innovation Lab (internship)</div>
<div style="float:right">06/2022 - 08/2022</div>
</div>
</li>
<li>
<div>
<div style="float:left">Google Summer of Code in Prometheus (internship)</div>
<div style="float:right">06/2019 - 08/2019</div>
</div>
</li>
</ul>
<h2>Research Experience</h2>
<b>Big Data Systems</b> <br/>
<!-- <i>Supported by Hong Kong General Research Fund: Optimizing Storage System Design for Spatial-Temporal Big Data (RGC Ref No. 15224918). Serve as the project participant.</i> -->
<ul>
<li>
<b>Timeseries Management Systems</b> <br/>
A thorough research on the main design decisions of the timeseries management systems, including the data model, memory data management, and persistent data management.
<ul>
<li>Data model: To solve the data redundancy issue of the timeseries data from the same data source, we propose a unified data model for both tags and data samples of timeseries, with a novel compression mechanism and a two-level indexing design.</li>
<li>Memory data management: To mitigate the memory overhead and maintain more timeseries with limited memory, we design a flexible inverted index that can dynamically adapt its structure to the memory pressure.</li>
<li>Persistent data management: To achieve high insertion throughput of big timeseries data, we design a dynamic time-partitioned LSM-tree with high insertion throughput, decent space efficiency, and efficient out-of-order data handling.</li>
</ul>
</li>
</ul>
<b>Storage Engines</b> <br/>
<!-- <i>Supported by Hong Kong General Research Fund: StoreLess: Eliminating Redundancy for LSM-tree based Key-Value Stores as Database Storage Engines in Internet Applications (RGC Ref No. 14219422). Serve as the project participant.</i> -->
<ul>
<li>
<b>LSM-Tree-Based Key-Value Stores with Hybrid Cloud Storage</b> <br/>
LSM-tree-based key-value stores are widely used as the storage engines of big data systems. As the data volume scales up, it is a natural trend to deploy the system on the cloud. However, the existing LSM-tree designs can not adapt to cloud storage because of the huge performance gap. We design MirrorKV with a balanced read/write performance which separates keys and values into two mirrored LSM-trees for better data locality and read performance, and designs different compaction mechanisms for fast and slow storage to improve write performance.
</li>
</ul>
<b>File Systems and In-Storage Computing</b> <br/>
<!-- <i>Supported by Hong Kong General Research Fund Project: Data Model and Programming Framework for Function Offloading in In-SSD Computing (RGC Ref No. 14202123). Serve as the project participant.</i> -->
<ul>
<li>
<b>A Monolithic Software/Hardware Co-Design Key-Value File System</b> <br/>
To mitigate the metadata manipulation overhead and I/O amplification of the traditional file systems designed for block storage, we implement a file system with a key-value interface, which offloads the data management to our computational storage platform.
<ul>
<li>Host-side key-value filesystem: It translates the file semantics (inode and page contents) to key-value commands correspondingly.</li>
<li>Host storage communication: We customize the Linux NVMe driver to bypass the Linux block layer and transmit the key-value commands.</li>
<li>Storage-side design: We carefully design the flash translation layer (FTL) to handle the received key-value commands and manage the physical area of the SSD.</li>
</ul>
</li>
</ul>
<h2>Awards</h2>
<ul>
<li>
Dean's List of Faculty of Engineering, CUHK: 2016-2017, 2018-2019
</li>
<li>
CUHK New Asia College Scholarship in 2018
</li>
</ul>
<h2>Teaching Experience</h2>
CSCI3150: Introduction to Operating Systems
<ul>
<li>
Fall 2019
</li>
<li>
Spring, Fall 2020
</li>
<li>
Spring, Fall 2021
</li>
</ul>
<h2>Professional Experience</h2>
<ul>
<li>
Participation & Talks
<ul>
<li>SIGMOD 2024, Santiago, Chile</li>
<li>SIGMOD 2023, Seattle, WA, USA. Remote participation</li>
<li>SIGMOD 2022, Philadelphia, PA, USA. Remote participation</li>
<li>VLDB 2021, Copenhagen, Denmark. Remote participation</li>
</ul>
</li>
<li>
External Reviewer
<ul>
<li>Journal</li>
<ul>
<li>ACM Transactions on Database Systems (TODS)</li>
<li>IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems (TCAD)</li>
</ul>
<li>Conference</li>
<ul>
<li>Design Automation Conference (DAC)</li>
<li>International Conference on Computer Design (ICCD)</li>
<li>Design Automation and Test in Europe Conference (DATE)</li>
<li>International Conference on Computer Aided Design (ICCAD)</li>
<li>Conference on Languages, Compilers, and Tools for Embedded Systems (LCTES)</li>
</ul>
</ul>
</li>
</ul>
</div>
<iframe frameborder="0" scrolling="no" style="background-color: transparent; border: 0px; display: none;" src="./Qi SUN - The Chinese University of Hong Kong_files/saved_resource.html"></iframe><div id="GOOGLE_INPUT_CHEXT_FLAG" style="display: none;" input="" input_stat="{"tlang":true,"tsbc":true,"pun":true,"mk":true,"ss":true}"></div></body><grammarly-desktop-integration data-grammarly-shadow-root="true"></grammarly-desktop-integration></html>