-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication.properties
More file actions
49 lines (37 loc) · 1.73 KB
/
application.properties
File metadata and controls
49 lines (37 loc) · 1.73 KB
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
#---------------------------------------------------------------
# -------------- GENERATION PROPERTIES -----------------------
#---------------------------------------------------------------
#This is the user defined way of generating synthetic data.
DATA_GENERATION=MotifDataGeneration
#Size of the chunk to generate data
GENERATION_CHUNK_SIZE=32768
#---------------------------------------------------------------
# ----------------- SCAN PROPERTIES ---------------------------
#---------------------------------------------------------------
#Chunk level scanners for the user mimicking method
CHUNK_SCANNERS=DataCompressibilityScanner,AlphabetScanner
CHUNK_CHARACTERIZATION=MotifChunkCharacterization
#Data will be scanned in chunks of this size
SCAN_CHUNK_SIZE=32768
#Compression algorithm used to for the scan process
SCAN_COMP_ALG=Zlib
#Available compressors to scan the performance with original/synthetic data
TEST_COMPRESSORS=ZlibCompression,LZ4Compression,BzipCompression,LZMACompression
#This property defines if the scan of a file will be done sequentially or using
#sampling.
SAMPLING=true
#In case of using sampling, these parameters define the number of samples. For
#a better explanation of these parameters see "To Zip or not to Zip: Effective
#Resource Usage for Real-Time Compression" (FAST'13)
ACCURACY=0.05
CONFIDENCE=0.01
#---------------------------------------------------------------
# ------------ DEDUPLICATION SCAN PROPERTIES ------------------
#---------------------------------------------------------------
#Enable deduplication for scan and generation
ENABLE_DEDUP=false
#Parameters of the Two Threshold Two Divisors (TTTD) algorithm to
#split a file in content-based chunks
T_MIN=460
T_MAX=2800
RABIN_WINDOW_SIZE=48