-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
391 lines (340 loc) · 9.95 KB
/
main.go
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
package main
import (
"bufio"
"fmt"
"main/SSTable"
"main/kompakcije"
"os"
"strconv"
"strings"
)
//Strukture koje se nalaze u memoriji i konfiguracioni objekat sa iscitanom konfiguracijom
type System struct {
memtable *Memtable
cache *Cache
config *ConfigObj
}
var (
system *System
)
//Objekat koji ima sva podesavanja za projekat
type ConfigObj struct {
//WAL
batch_size int
segment_size int
low_w_mark int
//Token Bucket
tokens int
minutes float64
//LRU Cache
cache_limit int
//Memtable
mem_max_size int
threshold float64 //procenentualno broj nakon kojeg se Flush-uje
//Bloom filter
bloom_precision float64
//LSM stabla i kompakcije
max_height int //max visina lsm stabla (BEZ Memtabele)
compaction_size int //broj tabela koje se spajaju
}
func (sys *System) put(user string, key string, value []byte) bool {
if user != "" {
if !CheckTokenBucket(user) { // korisnik nema vise tokena
return false
}
}
err, wal_in := log.WritePutBuffer(key, value)
if err != nil {
fmt.Println(err)
return false
}
var full_percent float64
full_percent = 0
if sys.memtable.curr_size != 0 {
full_percent = (float64(sys.memtable.curr_size) / float64(sys.memtable.max_size)) * 100
}
if full_percent >= sys.memtable.threshold {
println("puno")
data, err := sys.memtable.Flush()
if err == nil {
SSTable.MakeTable(data, 1, sys.config.bloom_precision)
} else {
fmt.Println(err)
return false
}
}
_, err = sys.memtable.PutElement(wal_in)
if err != nil {
fmt.Println(err)
return false
}
return true
}
func (sys *System) get(user string, key string) []byte {
if user != "" {
if !CheckTokenBucket(user) { // korisnik nema vise tokena
return nil
}
}
//Ako nije pronadjeno u kesu i mem tabili
mem_val := sys.memtable.GetElement(key)
if mem_val == nil {
cache_val := sys.cache.Search(key) //ukoliko je podatak u cache-u,on ga automatski propagira na prvo mesto
if cache_val == nil {
value, found := SSTable.Find(key, sys.config.max_height)
if found {
//print("iz ss-a je.")
sys.cache.Insert(key, value)
return value
} else {
return nil
}
} else {
//print("iz kesa je.")
return cache_val.Value.(KV).value
}
} else {
//print("iz mema je.")
sys.cache.Insert(key, mem_val)
return mem_val
}
return nil
}
func (sys *System) Delete(user string, key string) bool {
if user != "" {
if !CheckTokenBucket(user) { // korisnik nema vise tokena
return false
}
}
err := log.WriteDeleteBuffer(key)
if err != nil {
fmt.Println(err)
return false
}
sys.cache.DeleteKey(key)
if sys.memtable.DeleteElement(key) == false {
if SSTable.Delete(key, sys.config.max_height) {
return true
} else {
return false
}
}
return true
}
//Incijalizacija memtabele, cache-a i konfiguracionog objekta
func CreateSystem() *System {
config_obj := Default()
config_obj.ReadConfig("config.txt")
return &System{
memtable: NewMemtable(config_obj.mem_max_size, config_obj.threshold),
cache: createCache(config_obj.cache_limit),
config: config_obj,
}
}
//Kreira objekat sa podrazumevanim vrednostima
func Default() *ConfigObj {
return &ConfigObj{
batch_size: 3,
segment_size: 6,
low_w_mark: 3,
tokens: 50,
minutes: 1,
cache_limit: 3,
mem_max_size: 5,
threshold: 80,
bloom_precision: 0.1,
max_height: 3,
compaction_size: 2,
}
}
//Funkcija proverava ispravnost vrednosti u eksternoj konfiguraciji za CELE BROJEVE
//min i max su opsezi u kojima se vrednost moze naci
//Vraca indikator - true = ispravno, false = neispravno i konvertovanu vrednost ukoliko je tacno, -1 ukoliko je netacno
func CheckValInt(val string, min int, max int) (bool, int) {
value, err := strconv.Atoi(val)
if err != nil { //podatak nije celobrojnog tipa
return false, -1
} else {
if value < min || value > max { //van opsega
return false, -1
} else {
return true, value //sve je uredu
}
}
}
//Funkcija proverava ispravnost vrednosti u eksternoj konfiguraciji za REALNE BROJEVE
//min i max su opsezi u kojima se vrednost moze naci
//Vraca indikator - true = ispravno, false = neispravno i konvertovanu vrednost ukoliko je tacno, -1 ukoliko je netacno
func CheckValFloat(val string, min float64, max float64) (bool, float64) {
value, err := strconv.ParseFloat(val, 64)
if err != nil { //podatak nije realnog tipa
return false, -1
} else {
if value < min || value > max { //van opsega
return false, -1
} else {
return true, value //sve je uredu
}
}
}
//Funkcija iscitava eksterni konfiguracioni fajl na osnovu prosledjene putanje i proverava valjanost vrednosti
//Menja konfiguracioni objekat (atribute) ukoliko je ispravna vrednost
func (config *ConfigObj) ReadConfig(path string) {
file, err := os.Open(path)
if err != nil {
panic(err)
}
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := scanner.Text()
pair := strings.Split(line, "=")
switch pair[0] {
case "batchSize":
correct, val := CheckValInt(pair[1], 1, 15)
if correct {
config.batch_size = val
} else {
println("batch size neispravan. Koristi se default.")
}
case "segmentSize":
correct, val := CheckValInt(pair[1], 2, 10)
if correct {
config.segment_size = val
} else {
println("segment size neispravan. Koristi se default.")
}
case "lowWaterMark":
correct, val := CheckValInt(pair[1], 1, 10)
if correct {
config.low_w_mark = val
} else {
println("low water mark neispravan. Koristi se default.")
}
case "tokens":
correct, val := CheckValInt(pair[1], 1, 10000)
if correct {
config.tokens = val
} else {
println("tokens neispravan. Koristi se default.")
}
case "minutes":
correct, val := CheckValFloat(pair[1], 1, 10)
if correct {
config.minutes = val
} else {
println("minutes neispravan. Koristi se default.")
}
case "memMaxSize":
correct, val := CheckValInt(pair[1], 1, 100000)
if correct {
config.mem_max_size = val
} else {
println("mem max size size neispravan. Koristi se default.")
}
case "memThreshold":
correct, val := CheckValFloat(pair[1], 0.1, 100)
if correct {
config.threshold = val
} else {
println("memtable threshold neispravan. Koristi se default.")
}
case "bloomPrecision":
correct, val := CheckValFloat(pair[1], 0.000001, 0.9)
if correct {
config.bloom_precision = val
} else {
println("bloom precision neispravan. Koristi se default.")
}
case "maxHeightLSM":
correct, val := CheckValInt(pair[1], 1, 10)
if correct {
config.max_height = val
} else {
println("LSM max height neispravan. Koristi se default.")
}
case "compactionSize":
correct, val := CheckValInt(pair[1], 2, 10)
if correct {
config.compaction_size = val
} else {
println("compaction size neispravan. Koristi se default.")
}
default:
println("Parametar ne postoji!")
}
}
if err := scanner.Err(); err != nil {
panic(err)
}
}
func (config *ConfigObj) PrintConfig() {
println("Batch size:" + strconv.Itoa(config.batch_size))
println("Segment size:" + strconv.Itoa(config.segment_size))
println("Low water mark:" + strconv.Itoa(config.low_w_mark))
println("Tokens:" + strconv.Itoa(config.tokens))
println("Minutes:", config.minutes)
println("Memtable max size:" + strconv.Itoa(config.mem_max_size))
println("Memtable threshold:", config.threshold)
println("Bloom filter precision:", config.bloom_precision)
println("LSM tree max height:" + strconv.Itoa(config.max_height))
println("Compaction size:" + strconv.Itoa(config.compaction_size))
}
func main() {
err := InitWAL()
if err != nil {
fmt.Println(err)
return
}
system = CreateSystem()
InitializeTokenBucketConfigs(uint32(system.config.tokens), uint32(system.config.minutes))
InitializeWALConfigs(system.config.batch_size, system.config.segment_size, system.config.low_w_mark)
println(system.put("test", "2", []byte("izmena")))
println(system.put("test", "1", []byte("prvi testt")))
println(system.put("test", "3", []byte("treci testt")))
println(system.put("test", "4", []byte("cetvrti testt")))
println(system.put("test", "22", []byte("izmena")))
println(system.put("test", "11", []byte("prvi testt")))
println(system.put("test", "33", []byte("treci testt")))
println(system.put("test", "44", []byte("cetvrti testt")))
println(system.put("test", "222", []byte("izmena")))
println(system.put("test", "111", []byte("prvi testt")))
println(system.put("test", "333", []byte("treci testt")))
println(system.put("test", "444", []byte("cetvrti testt")))
//println(system.Delete("test", "2"))
//println(string(system.get("test", "2")))
kompakcije.Kompakcija(system.config.compaction_size, system.config.max_height, system.config.bloom_precision)
//println(string(system.get("test", "2")))
//println(string(system.get("test", "2")))
//println(system.put("test", "", []byte("cetvrti test")))
/*println(string(system.get("test", "2")))
println(system.put("test", "67", []byte("prvi testt")))
println(string(system.get("test", "67")))
println(system.put("test", "67", []byte("izmena")))
println(string(system.get("test", "67")))*/
/*system.cache.printCache()
println(string(system.get("test", "2")))
/*println(system.put("test", "5", []byte("peti test")))
println(string(system.get("test", "5")))
println(system.Delete("test", "5"))
println(string(system.get("test", "5")))
/*system.Delete("test", "2")
system.put("test", "2", []byte("drugi test"))
system.put("test", "1", []byte("prvi test"))
system.put("test", "2", []byte("drugi test"))
system.put("test", "1", []byte("prvi test"))
system.put("test", "2", []byte("drugi test"))
system.put("test", "1", []byte("prvi test"))
system.put("test", "2", []byte("drugi test"))
system.put("test", "1", []byte("prvi test"))
system.put("test", "2", []byte("drugi test"))
fmt.Println(system.get("test", "2"))
system.Delete("test", "2")
system.put("test3", "2", []byte("drugi test"))
fmt.Println(system.get("test3", "2"))
system.Delete("test3", "2")*/
err = log.Close()
if err != nil {
fmt.Println(err)
return
}
}