-
Notifications
You must be signed in to change notification settings - Fork 0
/
ScheduleUpdateData.py
76 lines (49 loc) · 1.84 KB
/
ScheduleUpdateData.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
__author__ = 'chuqiao'
from apscheduler.schedulers.blocking import BlockingScheduler
import EventsPortal
import sys
import logging
def logger():
"""
Function that initialises logging system
"""
global logger
# create logger with 'syncsolr'
logger = logging.getLogger('scheduleAddData')
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('scheduleUpdateData.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(sourceUrl,patternUrl,solrUrl):
"""
"""
logger()
logger.info('***Start updating every 12 hours***')
sched = BlockingScheduler()
sched.add_job(EventsPortal.addDataToSolrFromUrl, 'interval', hours=12, args=[sourceUrl,patternUrl,solrUrl])
sched.start()
try:
# Keeps the main thread alive.
while True:
time.sleep(20)
except (KeyboardInterrupt, SystemExit):
logger.error('Can not schedule add data to solr \n%s' % str(sys.exc_info()))
if __name__ == '__main__':
scheduleUpdateSolr(
"http://bioevents.pro/dailyevents",
"http://bioevents.pro/events",
"139.162.217.53:8983/solr/eventsportal/"
)
# scheduleUpdateSolr(sys.argv[1],sys.argv[2])