-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
53 lines (53 loc) · 1.46 KB
/
config.json
File metadata and controls
53 lines (53 loc) · 1.46 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
50
51
52
53
{
"scrapers": {
"enabled": [
"dblp",
"arxiv",
"zbmath"
],
"dblp": {
"base_url": "https://dblp.org/search/publ/api",
"page_size": 1000,
"delay_ms": 500,
"long_pause_frequency": 5,
"long_pause_ms": 2000,
"max_retries": 5,
"retry_delay_ms": 10000
},
"arxiv": {
"base_url": "https://export.arxiv.org/api/query",
"page_size": 2000,
"channel_size": 8,
"delay_ms": 200
},
"zbmath": {
"base_url": "https://oai.zbmath.org/v1/",
"delay_between_pages_ms": 100
}
},
"ingestion": {
"chunk_size_days": 28,
"initial_start_date": "1930-01-01T00:00:00Z",
"weekly_days": 7,
"write_buffer_capacity": 5000,
"estimated_edges_per_paper": 50,
"mega_paper_threshold": 50,
"max_edges_per_author": 5000,
"max_authors_to_prefetch": 500,
"prefetch_skip_bloom_threshold": 0.95,
"bloom_sample_size": 100
},
"deduplication": {
"title_similarity_threshold": 0.9,
"author_similarity_threshold": 0.5,
"bloom_filter_size": 5000000
},
"edge_cache": {
"hot_size": 1000000,
"warm_size": 5000000,
"bloom_size": 100000000
},
"heartbeat_timeout_s": 30,
"polling_interval_ms": 100,
"log_level": "info"
}