-
Notifications
You must be signed in to change notification settings - Fork 104
/
importToDb.py
90 lines (71 loc) · 2.65 KB
/
importToDb.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
89
90
import glob
import os
import pickle
import pandas as pd
import psycopg2
import pytz
import concurrent.futures
base_path = "/Users/sche/db/csv/"
csv_files = glob.glob(base_path + "**/*.csv.gz")
csv_files.sort()
SAVE_FILE = "progress.bin"
jobs = []
first_time = True
if os.path.exists(SAVE_FILE):
last_imported_file = pickle.load(open(SAVE_FILE, "rb"))
resume = False
else:
last_imported_file = None
resume = True
for csv_file in csv_files:
if not resume:
if csv_file == last_imported_file:
resume = True
continue
if first_time:
first_time = False
with psycopg2.connect(database='postgres', user='sche', password='', host='localhost') as cnx:
try:
print("Drop index")
with cnx.cursor() as c:
c.execute("DROP INDEX public.mobike_bikeid_index;")
c.execute("DROP INDEX public.mobike_time_index;")
except Exception as ex:
print(ex)
cnx.commit()
pass
print("Done drop index")
jobs.append(csv_file)
def run(csv_file):
with psycopg2.connect(database='postgres', user='sche', password='', host='localhost') as cnx:
temp_file = "/tmp/" + os.path.basename(csv_file)
tz = pytz.timezone("Asia/Shanghai")
try:
print("Importing " + csv_file)
df = pd.read_csv(csv_file, index_col=0,
names=["bikeid", "biketype", 'distid', 'distnum', 'type', "lon", "lat"],
parse_dates=True)
df.drop_duplicates(subset=['distid', 'lon', 'lat'], inplace=True)
df = df[["biketype", 'distid', "lon", "lat"]]
df.tz_localize(tz)
cursor = cnx.cursor()
df.to_csv(temp_file, header=False, date_format="%Y-%m-%d %H:%M:%S")
sql = "COPY mobike FROM '%s' DELIMITER ',' CSV; " % (temp_file)
cursor.execute(sql)
except Exception as ex:
print(ex)
finally:
cnx.commit()
last_imported_file = csv_file
pickle.dump(last_imported_file, open(SAVE_FILE, "wb"))
os.remove(temp_file)
with concurrent.futures.ProcessPoolExecutor(max_workers=6) as executor:
executor.map(run, jobs)
if not first_time:
with psycopg2.connect(database='postgres', user='sche', password='', host='localhost') as cnx:
with cnx.cursor() as c:
print("Creating index")
c.execute("CREATE INDEX mobike_bikeid_index ON mobike (distid);")
c.execute("CREATE INDEX mobike_time_index ON mobike (time);")
cnx.commit()
print("Done")