-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmp.py
89 lines (78 loc) · 3.04 KB
/
tmp.py
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
from motor import motor_asyncio
import orjson
import asyncio
from rich import print
import os
from pymongo import IndexModel, UpdateMany
from itertools import batched
MONGOURL = 'mongodb://smops:bazending@192.168.2.153:27017/'
db = motor_asyncio.AsyncIOMotorClient(MONGOURL).library_overview
async def get_data(path):
with open(path, 'r', encoding='utf-8') as f:
while True:
data = f.readline() # Read a line
if not data:
break # Break if there's no more data
yield orjson.loads(data) # Decode the line with orjson
async def run():
print('starting run()')
batch_size = 1000
files = ['data_export_rich.json', 'data_refs.json', 'data_publishers.json']
count = 0
for file in files:
print(f'\n Now processing file {file}')
colname = file.split('.')[0]
# read and parse the json file as a stream
# when batch_size items are parsed, insert them into the database
updates = []
async for item in get_data(file):
del(item['_id'])
updates.append(UpdateMany({'openalex_id':item['openalex_id']}, {'$set':item}, upsert=True))
if len(updates) == batch_size:
res = await db[colname].bulk_write(updates)
print(res.bulk_api_result)
count = count + batch_size
if len(updates) == batch_size:
print(f'inserted {count} (+{batch_size})', end='->')
updates = []
res = await db[colname].bulk_write(updates)
print(res.bulk_api_result)
count = count + batch_size
print(f'inserted {count} (+{len(updates)}), done with {file}!')
updates = []
async def create_indexes():
print('creating indexes')
for colname in ['data_export_rich', 'data_refs']:
await db[colname].create_indexes([
IndexModel('open_access_type'),
IndexModel('is_oa'),
IndexModel('year'),
IndexModel('type'),
IndexModel('doi'),
IndexModel('title'),
IndexModel('journal'),
IndexModel('publisher'),
IndexModel('EEMCS'),
IndexModel('BMS'),
IndexModel('TNW'),
IndexModel('ET'),
IndexModel('ITC'),
IndexModel('pure_id'),
IndexModel('openalex_id'),
IndexModel('num_authors'),
IndexModel('primary_topic'),
IndexModel('subfield'),
IndexModel('field'),
IndexModel('domain'),
IndexModel('issn'),
IndexModel('publisher_lineage'),
IndexModel('in_collection'),
IndexModel('in_doaj'),
IndexModel('oclc_number'),
IndexModel('issns'),
IndexModel('also_green')
])
if __name__ == '__main__':
print('starting script')
asyncio.run(create_indexes())
#asyncio.run(run())