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
|
import os
import sys
import json
import argparse
import datetime
from typing import List, Any
import requests
import elasticsearch
import elasticsearch.helpers
import fatcat_openapi_client
from fatcat_openapi_client import ReleaseEntity
from fatcat_scholar.config import settings
from fatcat_scholar.issue_db import IssueDB
from fatcat_scholar.sandcrawler import (
SandcrawlerPostgrestClient,
SandcrawlerMinioClient,
)
from fatcat_scholar.schema import (
DocType,
IntermediateBundle,
)
from fatcat_scholar.transform import transform_heavy
from fatcat_scholar.api_entities import entity_from_json
from fatcat_scholar.work_pipeline import WorkPipeline
from fatcat_scholar.sim_pipeline import SimPipeline
from fatcat_scholar.kafka import KafkaWorker
class FetchDocsWorker(KafkaWorker):
def __init__(
self,
work_pipeline: WorkPipeline,
sim_pipeline: SimPipeline,
produce_docs_topic: str,
**kwargs: Any,
):
super().__init__(**kwargs)
self.sim_pipeline = sim_pipeline
self.work_pipeline = work_pipeline
api_conf = fatcat_openapi_client.Configuration()
api_conf.host = kwargs.get("fatcat_api_host", "https://api.fatcat.wiki/v0")
self.fatcat_api = fatcat_openapi_client.DefaultApi(
fatcat_openapi_client.ApiClient(api_conf)
)
self.producer = self.create_kafka_producer(self.kafka_brokers)
self.produce_topic = produce_docs_topic
print(f"Will produce bundles to: {self.produce_topic}", file=sys.stderr)
def process_msg(self, msg: dict) -> None:
key = msg["key"]
if key.startswith("work_") and msg.get("work_ident"):
stubs = self.fatcat_api.get_work_releases(
ident=msg["work_ident"], hide="abstracts,references",
)
full_releases = []
for r in stubs:
full = self.fatcat_api.get_release(
r.ident,
expand="container,files,filesets,webcaptures",
hide="references",
)
full_releases.append(full)
if not full_releases:
return
bundle = self.work_pipeline.process_release_list(full_releases)
bundle.fetched = datetime.datetime.utcnow()
self.producer.produce(
self.produce_topic,
bundle.json(exclude_none=True).encode("UTF-8"),
key=key,
on_delivery=self._fail_fast_produce,
)
self.counts["works-produced"] += 1
# check for errors etc
self.producer.poll(0)
elif key.startswith("sim_"):
# filter out "contents" and "index" items (again)
if msg["issue_item"].endswith("_contents") or msg["issue_item"].endswith(
"_index"
):
return
try:
full_issue = self.sim_pipeline.fetch_sim_issue(
msg["issue_item"], msg["pub_collection"]
)
except requests.exceptions.ConnectionError as e:
print(str(e), file=sys.stderr)
raise e
except requests.exceptions.ReadTimeout as e:
print(str(e), file=sys.stderr)
raise e
if not full_issue:
return
pages = self.sim_pipeline.full_issue_to_pages(full_issue)
for bundle in pages:
bundle.fetched = datetime.datetime.utcnow()
self.producer.produce(
self.produce_topic,
bundle.json(exclude_none=True).encode("UTF-8"),
# NOTE: this isn't going to be the document key, but it will sort by issue
key=key,
on_delivery=self._fail_fast_produce,
)
self.counts["pages-produced"] += 1
# check for errors etc
self.producer.poll(0)
else:
raise NotImplementedError(f"can't process updated for key={key}")
class IndexDocsWorker(KafkaWorker):
def __init__(self, es_client: Any, es_index: str, **kwargs: Any):
super().__init__(**kwargs)
self.es_client = es_client
self.es_index = es_index
def process_batch(self, batch: List[dict]) -> None:
bulk_actions = []
for obj in batch:
bundle = IntermediateBundle(
doc_type=DocType(obj["doc_type"]),
releases=[
entity_from_json(json.dumps(re), ReleaseEntity)
for re in obj["releases"]
],
biblio_release_ident=obj.get("biblio_release_ident"),
grobid_fulltext=obj.get("grobid_fulltext"),
pdftotext_fulltext=obj.get("pdftotext_fulltext"),
pdf_meta=obj.get("pdf_meta"),
html_fulltext=obj.get("html_fulltext"),
sim_fulltext=obj.get("sim_fulltext"),
)
es_doc = transform_heavy(bundle)
if not es_doc:
continue
else:
bulk_actions.append(
{
"_index": self.es_index,
"_op_type": "index",
"_id": es_doc.key,
"_source": es_doc.json(exclude_none=True, sort_keys=True),
}
)
self.counts["docs-indexed"] += 1
if not bulk_actions:
return
elasticsearch.helpers.bulk(self.es_client, bulk_actions, timeout="30s")
self.counts["batches-indexed"] += 1
def main() -> None:
"""
Run this command like:
python -m fatcat_scholar.work_pipeline
"""
parser = argparse.ArgumentParser(
formatter_class=argparse.ArgumentDefaultsHelpFormatter
)
subparsers = parser.add_subparsers()
parser.add_argument(
"--issue-db-file",
help="sqlite3 database file to open",
default=settings.SCHOLAR_ISSUEDB_PATH,
type=str,
)
parser.add_argument(
"--sandcrawler-db-api",
help="Sandcrawler Postgrest API endpoint",
default=settings.SANDCRAWLER_DB_API,
type=str,
)
parser.add_argument(
"--sandcrawler-s3-api",
help="Sandcrawler S3 (minio/seaweedfs) API endpoint",
default=settings.SANDCRAWLER_S3_API,
type=str,
)
sub = subparsers.add_parser("fetch-docs-worker",)
sub.set_defaults(worker="fetch-docs-worker")
sub = subparsers.add_parser("index-docs-worker",)
sub.set_defaults(worker="index-docs-worker")
args = parser.parse_args()
if not args.__dict__.get("worker"):
parser.print_help(file=sys.stderr)
sys.exit(-1)
if args.worker == "fetch-docs-worker":
issue_db = IssueDB(args.issue_db_file)
wp = WorkPipeline(
issue_db=issue_db,
sandcrawler_db_client=SandcrawlerPostgrestClient(
api_url=args.sandcrawler_db_api
),
sandcrawler_s3_client=SandcrawlerMinioClient(
host_url=args.sandcrawler_s3_api,
access_key=os.environ.get("MINIO_ACCESS_KEY"),
secret_key=os.environ.get("MINIO_SECRET_KEY"),
),
)
sp = SimPipeline(issue_db=issue_db)
fdw = FetchDocsWorker(
kafka_brokers=settings.KAFKA_BROKERS,
consume_topics=[
f"fatcat-{settings.SCHOLAR_ENV}.work-ident-updates",
# TODO: f"scholar-{settings.SCHOLAR_ENV}.sim-updates",
],
consumer_group=f"scholar-{settings.SCHOLAR_ENV}-fetch-workers",
work_pipeline=wp,
sim_pipeline=sp,
produce_docs_topic=f"scholar-{settings.SCHOLAR_ENV}.update-docs",
fatcat_api_host=settings.FATCAT_API_HOST,
)
fdw.run()
elif args.worker == "index-docs-worker":
es_client = elasticsearch.Elasticsearch(
settings.ELASTICSEARCH_BACKEND, timeout=25.0
)
idw = IndexDocsWorker(
kafka_brokers=settings.KAFKA_BROKERS,
batch_size=settings.INDEX_WORKER_BATCH_SIZE,
consume_topics=[f"scholar-{settings.SCHOLAR_ENV}.update-docs"],
consumer_group=f"scholar-{settings.SCHOLAR_ENV}-index-workers",
es_client=es_client,
es_index=settings.ELASTICSEARCH_FULLTEXT_INDEX,
)
idw.run()
if __name__ == "__main__":
main()
|