This is an example of working with very large data. There are about 700,000 unduplicated donors in this database of Illinois political campaign contributions.
With such a large set of input data, we cannot store all the comparisons we need to make in memory. Instead, we will read the pairs on demand from the PostgresSQL database.
Note: You will need to run python pgsql_big_dedupe_example_init_db.py
before running this script.
For smaller datasets (<10,000), see our csv_example
import csv
import io
import itertools
import locale
import logging
import optparse
import os
import time
import dedupe
import dj_database_url
import numpy
import psycopg2
import psycopg2.extras
from psycopg2.extensions import AsIs, register_adapter
register_adapter(numpy.int32, AsIs)
register_adapter(numpy.int64, AsIs)
register_adapter(numpy.float32, AsIs)
register_adapter(numpy.float64, AsIs)
class Readable:
def __init__(self, iterator):
self.output = io.StringIO()
self.writer = csv.writer(self.output)
self.iterator = iterator
def read(self, size):
self.writer.writerows(itertools.islice(self.iterator, size))
chunk = self.output.getvalue()
self.output.seek(0)
self.output.truncate(0)
return chunk
def record_pairs(result_set):
for i, row in enumerate(result_set):
a_record_id, a_record, b_record_id, b_record = row
record_a = (a_record_id, a_record)
record_b = (b_record_id, b_record)
yield record_a, record_b
if i % 10000 == 0:
print(i)
def cluster_ids(clustered_dupes):
for cluster, scores in clustered_dupes:
cluster_id = cluster[0]
for donor_id, score in zip(cluster, scores):
yield donor_id, cluster_id, score
if __name__ == "__main__":
Dedupe uses Python logging to show or suppress verbose output. Added
for convenience. To enable verbose output, run python
pgsql_big_dedupe_example.py -v
optp = optparse.OptionParser()
optp.add_option(
"-v",
"--verbose",
dest="verbose",
action="count",
help="Increase verbosity (specify multiple times for more)",
)
(opts, args) = optp.parse_args()
log_level = logging.WARNING
if opts.verbose:
if opts.verbose == 1:
log_level = logging.INFO
elif opts.verbose >= 2:
log_level = logging.DEBUG
logging.getLogger().setLevel(log_level)
settings_file = "pgsql_big_dedupe_example_settings"
training_file = "pgsql_big_dedupe_example_training.json"
start_time = time.time()
Set the database connection from environment variable using dj_database_url For example: export DATABASE_URL=postgres://user:password@host/mydatabase
db_conf = dj_database_url.config()
if not db_conf:
raise Exception(
"set DATABASE_URL environment variable with your connection, e.g. "
"export DATABASE_URL=postgres://user:password@host/mydatabase"
)
read_con = psycopg2.connect(
database=db_conf["NAME"],
user=db_conf["USER"],
password=db_conf["PASSWORD"],
host=db_conf["HOST"],
cursor_factory=psycopg2.extras.RealDictCursor,
)
write_con = psycopg2.connect(
database=db_conf["NAME"],
user=db_conf["USER"],
password=db_conf["PASSWORD"],
host=db_conf["HOST"],
)
We’ll be using variations on this following select statement to pull in campaign donor info.
We did a fair amount of preprocessing of the fields in
pgsql_big_dedupe_example_init_db.py
DONOR_SELECT = (
"SELECT donor_id, city, name, zip, state, address " "from processed_donors"
)
if os.path.exists(settings_file):
print("reading from ", settings_file)
with open(settings_file, "rb") as sf:
deduper = dedupe.StaticDedupe(sf, num_cores=4)
else:
Define the fields dedupe will pay attention to
The address, city, and zip fields are often missing, so we’ll tell dedupe that, and we’ll learn a model that take that into account
fields = [
dedupe.variables.String("name"),
dedupe.variables.String("address", has_missing=True),
dedupe.variables.ShortString("city", has_missing=True),
dedupe.variables.ShortString("state", has_missing=True),
dedupe.variables.ShortString("zip", has_missing=True),
]
Create a new deduper object and pass our data model to it.
deduper = dedupe.Dedupe(fields, num_cores=4)
Named cursor runs server side with psycopg2
with read_con.cursor("donor_select") as cur:
cur.execute(DONOR_SELECT)
temp_d = {i: row for i, row in enumerate(cur)}
If we have training data saved from a previous run of dedupe, look for it an load it in.
Note: if you want to train from scratch, delete the training_file
if os.path.exists(training_file):
print("reading labeled examples from ", training_file)
with open(training_file) as tf:
deduper.prepare_training(temp_d, tf)
else:
deduper.prepare_training(temp_d)
del temp_d
print("starting active labeling...")
Starts the training loop. Dedupe will find the next pair of records it is least certain about and ask you to label them as duplicates or not.
use ‘y’, ‘n’ and ‘u’ keys to flag duplicates press ‘f’ when you are finished
dedupe.console_label(deduper)
When finished, save our labeled, training pairs to disk
with open(training_file, "w") as tf:
deduper.write_training(tf)
Notice our argument here
recall
is the proportion of true dupes pairs that the learned
rules must cover. You may want to reduce this if your are making
too many blocks and too many comparisons.
deduper.train(recall=0.90)
with open(settings_file, "wb") as sf:
deduper.write_settings(sf)
We can now remove some of the memory hogging objects we used for training
deduper.cleanup_training()
print("blocking...")
To run blocking on such a large set of data, we create a separate table that contains blocking keys and record ids
print("creating blocking_map database")
with write_con:
with write_con.cursor() as cur:
cur.execute("DROP TABLE IF EXISTS blocking_map")
cur.execute(
"CREATE TABLE blocking_map " "(block_key text, donor_id INTEGER)"
)
If dedupe learned a Index Predicate, we have to take a pass through the data and create indices.
print("creating inverted index")
for field in deduper.fingerprinter.index_fields:
with read_con.cursor("field_values") as cur:
cur.execute("SELECT DISTINCT %s FROM processed_donors" % field)
field_data = (row[field] for row in cur)
deduper.fingerprinter.index(field_data, field)
Now we are ready to write our blocking map table by creating a
generator that yields unique (block_key, donor_id)
tuples.
print("writing blocking map")
with read_con.cursor("donor_select") as read_cur:
read_cur.execute(DONOR_SELECT)
full_data = ((row["donor_id"], row) for row in read_cur)
b_data = deduper.fingerprinter(full_data)
with write_con:
with write_con.cursor() as write_cur:
write_cur.copy_expert(
"COPY blocking_map FROM STDIN WITH CSV",
Readable(b_data),
size=10000,
)
free up memory by removing indices
deduper.fingerprinter.reset_indices()
logging.info("indexing block_key")
with write_con:
with write_con.cursor() as cur:
cur.execute(
"CREATE UNIQUE INDEX ON blocking_map "
"(block_key text_pattern_ops, donor_id)"
)
with write_con:
with write_con.cursor() as cur:
cur.execute("DROP TABLE IF EXISTS entity_map")
print("creating entity_map database")
cur.execute(
"CREATE TABLE entity_map "
"(donor_id INTEGER, canon_id INTEGER, "
" cluster_score FLOAT, PRIMARY KEY(donor_id))"
)
with read_con.cursor(
"pairs", cursor_factory=psycopg2.extensions.cursor
) as read_cur:
read_cur.execute(
select a.donor_id, row_to_json((select d from (select a.city, a.name, a.zip, a.state, a.address) d)), b.donor_id, row_to_json((select d from (select b.city, b.name, b.zip, b.state, b.address) d)) from (select DISTINCT l.donor_id as east, r.donor_id as west from blocking_map as l INNER JOIN blocking_map as r using (block_key) where l.donor_id < r.donor_id) ids INNER JOIN processed_donors a on ids.east=a.donor_id
INNER JOIN processed_donors b on ids.west=b.donor_id"""
)
print("clustering...")
clustered_dupes = deduper.cluster(
deduper.score(record_pairs(read_cur)), threshold=0.5
)
#DIVIDER
#DIVIDER
print("writing results")
with write_con:
with write_con.cursor() as write_cur:
write_cur.copy_expert(
"COPY entity_map FROM STDIN WITH CSV",
Readable(cluster_ids(clustered_dupes)),
size=10000,
)
with write_con:
with write_con.cursor() as cur:
cur.execute("CREATE INDEX head_index ON entity_map (canon_id)")
#DIVIDER
#DIVIDER
#DIVIDER
locale.setlocale(locale.LC_ALL, "") # for pretty printing numbers
#DIVIDER
with read_con.cursor() as cur:
cur.execute(
"CREATE TEMPORARY TABLE e_map "
"AS SELECT COALESCE(canon_id, donor_id) AS canon_id, donor_id "
"FROM entity_map "
"RIGHT JOIN donors USING(donor_id)"
)
cur.execute(
"SELECT CONCAT_WS(' ', donors.first_name, donors.last_name) AS name, "
"donation_totals.totals AS totals "
"FROM donors INNER JOIN "
"(SELECT canon_id, SUM(CAST(amount AS FLOAT)) AS totals "
" FROM contributions INNER JOIN e_map "
" USING (donor_id) "
" GROUP BY (canon_id) "
" ORDER BY totals "
" DESC LIMIT 10) "
"AS donation_totals ON donors.donor_id=donation_totals.canon_id "
"WHERE donors.donor_id = donation_totals.canon_id"
)
print("Top Donors (deduped)")
for row in cur:
row["totals"] = locale.currency(row["totals"], grouping=True)
print("%(totals)20s: %(name)s" % row)
#DIVIDER
cur.execute(
"SELECT CONCAT_WS(' ', donors.first_name, donors.last_name) as name, "
"SUM(CAST(contributions.amount AS FLOAT)) AS totals "
"FROM donors INNER JOIN contributions "
"USING (donor_id) "
"GROUP BY (donor_id) "
"ORDER BY totals DESC "
"LIMIT 10"
)
print("Top Donors (raw)")
for row in cur:
row["totals"] = locale.currency(row["totals"], grouping=True)
print("%(totals)20s: %(name)s" % row)
read_con.close()
write_con.close()
print("ran in", time.time() - start_time, "seconds")
We now have a sequence of tuples of donor ids that dedupe believes all refer to the same entity. We write this out onto an entity map table
Print out the number of duplicates found
With all this done, we can now begin to ask interesting questions of the data
For example, let’s see who the top 10 donors are.
Create a temporary table so each group and unmatched record has a unique id
Compare this to what we would have gotten if we hadn’t done any deduplication