-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScheduleSyncTwoSolrs.py
79 lines (59 loc) · 2.38 KB
/
ScheduleSyncTwoSolrs.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
__author__ = 'chuqiao'
from apscheduler.schedulers.blocking import BlockingScheduler
import logging
import SyncSolr
import sys
def logger():
"""
Function that initialises logging system
"""
global logger
# create logger with 'syncsolr'
logger = logging.getLogger('updatesolr')
logger.setLevel(logging.DEBUG)
# specifies the lowest severity that will be dispatched to the appropriate destination
# create file handler which logs even debug messages
fh = logging.FileHandler('ScheduleSyncTwoSolrs.log')
# fh.setLevel(logging.WARN)
# create console handler and set level to debug
ch = logging.StreamHandler()
# StreamHandler instances send messages to streams
# ch.setLevel(logging.DEBUG)
# create formatter and add it to the handlers
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
fh.setFormatter(formatter)
ch.setFormatter(formatter)
# add the handlers to the logger
logger.addHandler(ch)
logger.addHandler(fh)
def scheduleUpdateSolr(csvUrl,iannSolrUrl):
"""
"""
logger()
logger.info('***Start updating every 12 hours***')
sched = BlockingScheduler()
sched.add_job(SyncSolr.init, 'interval', hours = 12, args=[csvUrl,iannSolrUrl])
sched.start()
# never goes there
logger.info('***Finished updating every 12 hours***')
try:
# Keeps the main thread alive.
while True:
time.sleep(20)
except (KeyboardInterrupt, SystemExit):
pass
# if len(sys.argv) == 3:
# args = sys.argv
# scheduleUpdateSolr(args[1],args[2])
# else:
# scheduleUpdateSolr(
#
# 'http://139.162.217.53:8983/solr/eventsportal/select?q=*:*&fl=eventId,name,alternateName,startDate,endDate,hostInstitution,description,eventType,keywords,topic,locationName,locationCity,locationCountry,locationPostcode,latitude,longitude,url,&rows=2147483647&wt=csv',
#
# 'http://localhost:8982/solr/iann'
# )
if __name__ == '__main__':
scheduleUpdateSolr("http://139.162.217.53:8983/solr/eventsportal/select?q=*:*&fl=eventId,name,alternateName,startDate,endDate,hostInstitution,description,eventType,keywords,topic,locationName,locationCity,locationCountry,locationPostcode,latitude,longitude,url,&rows=2147483647&wt=csv",
"http://iann.pro/solr/iann"
)
# scheduleUpdateSolr(sys.argv[1],sys.argv[2])