Resolver
The resolver records judgements about whether pairs of entities are the same, and derives a canonical identifier for each cluster of merged entities.
Deduplication in nomenklatura is non-destructive: instead of rewriting entity records, every decision — "these two are the same", "these are different", "not sure yet" — is stored as an edge between two entity IDs. The Judgement on each edge can be POSITIVE, NEGATIVE, or UNSURE; candidate pairs produced by nk xref are stored as NO_JUDGEMENT edges until a human decides them. Positive judgements are transitive: if A is B and B is C, then A, B, and C form one cluster, and the resolver assigns the whole cluster one canonical ID. Source data stays untouched, and any decision can be revisited later.
The Resolver is backed by a SQL database via SQLAlchemy — by default a SQLite file named nomenklatura.db in the working directory. Set NOMENKLATURA_DB_URL to use a different database, e.g. PostgreSQL for a shared, long-running installation.
The Linker is the read-only view of the same information: a plain mapping from entity IDs to canonical IDs, holding only the positive merges. Loading a Linker (via Resolver.get_linker()) takes much less memory than the full resolver, so prefer it when applying decisions in bulk — for example when streaming statements through nk apply-statements.
To decide entity pairs programmatically rather than through the nk dedupe interface:
from nomenklatura import Resolver, Judgement
from nomenklatura.db import make_session
with make_session() as session:
resolver = Resolver(session, create=True)
resolver.load_into_memory()
canonical = resolver.decide(
"source-a-entity-17",
"source-b-entity-233",
Judgement.POSITIVE,
)
# Exiting the session block commits the decision to the database.
Interface
nomenklatura.resolver.Resolver
Bases: Linker[SE]
Store judgements about which entities are the same and derive a canonical identifier for each cluster of merged entities.
Positive judgements are transitive: clusters are the connected components of
the judgement graph. Decisions persist in a SQL table, so they survive
re-runs and can be shared between processes. For read-only bulk application
of the decisions, use the leaner Linker returned by get_linker().
Source code in nomenklatura/resolver/resolver.py
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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 | |
apply_statement(stmt)
Canonicalise Statement Entity IDs and ID values
Source code in nomenklatura/resolver/resolver.py
canonicals()
check_candidate(left, right)
Check if the two IDs could be merged, i.e. if there's no existing judgement.
Source code in nomenklatura/resolver/resolver.py
dump(path)
Store the resolver adjacency list to a plain text JSON list.
Source code in nomenklatura/resolver/resolver.py
explode(node_id)
Dissolve all edges linked to the cluster to which the node belongs. This is the hard way to make sure we re-do context once we realise there's been a mistake.
Source code in nomenklatura/resolver/resolver.py
get_canonical(entity_id)
Return the canonical identifier for the given entity ID.
Source code in nomenklatura/resolver/resolver.py
get_judgement(entity_id, other_id)
Get the existing decision between two entities with dedupe factored in.
Source code in nomenklatura/resolver/resolver.py
get_judgements(limit=None)
Get most recently updated edges other than NO_JUDGEMENT.
Source code in nomenklatura/resolver/resolver.py
get_linker()
Return a linker object that can be used to resolve entities. This is less memory-consuming than the full resolver object.
Source code in nomenklatura/resolver/resolver.py
get_referents(canonical_id, canonicals=True)
Get all the non-canonical entity identifiers which refer to a given canonical identifier.
Source code in nomenklatura/resolver/resolver.py
get_resolved_edge(left_id, right_id)
Return some edge that connects the two entities, if it exists.
Source code in nomenklatura/resolver/resolver.py
load(path)
Load edges directly into the database
Source code in nomenklatura/resolver/resolver.py
load_into_memory()
Load the in-memory indexes from the database.
Call this to pick up database writes made by another session. A full rebuild is required because commit order can differ from write order.
Source code in nomenklatura/resolver/resolver.py
prune(cleanup_after=timedelta(days=(6 * 30)), user=None)
Drop suggestions and simplify the merge graph.
Rewrites preserve cluster membership, allowing one refresh after all pruning passes complete.
Source code in nomenklatura/resolver/resolver.py
remove(node_id)
Remove all edges linking to the given node from the graph.
rename_node(old_id, new_id)
Rewrite every live edge touching an identifier to its replacement.
Use this when an external identifier has been merged upstream, for example when Wikidata redirects one QID to another and downstream resolver state should pretend the old QID never existed.
Source code in nomenklatura/resolver/resolver.py
suggest(left_id, right_id, score, user=None)
Make a NO_JUDGEMENT link between two identifiers to suggest that a user should make a decision about whether they are the same or not.
Source code in nomenklatura/resolver/resolver.py
nomenklatura.resolver.Linker
Bases: Generic[SE]
A class to manage the canonicalisation of entities. This stores only the positive merges of entities and is used as a lightweight way to apply the harmonisation post de-duplication.
Internally stores a dict[str, tuple[str, ...]] where each cluster is a sorted tuple with the canonical ID at index 0 and referents following. Every node in a cluster maps to the same shared tuple object.
Source code in nomenklatura/resolver/linker.py
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 | |
add(left, right)
Merge two identifier clusters and return their canonical.
Idempotence lets the resolver replay database updates without tracking which edges it has already applied.
Source code in nomenklatura/resolver/linker.py
apply(proxy)
Replace all entity references in a given proxy with their canonical identifiers. This is essentially the harmonisation post de-dupe.
Source code in nomenklatura/resolver/linker.py
canonicals()
Return all the canonical cluster identifiers.
Source code in nomenklatura/resolver/linker.py
connected(node)
Return all entities connected to the given node. Constructs Identifier objects on the fly from the internal string representation.
Source code in nomenklatura/resolver/linker.py
connected_ids(entity_id)
get_canonical(entity_id)
Return the canonical identifier for the given entity ID.
Source code in nomenklatura/resolver/linker.py
get_referents(canonical_id, canonicals=True)
Get all the non-canonical entity identifiers which refer to a given canonical identifier.
Source code in nomenklatura/resolver/linker.py
nomenklatura.judgement.Judgement
Bases: Enum
A judgement of whether two entities are the same.
Source code in nomenklatura/judgement.py
nomenklatura.resolver.Identifier
Bases: object
Source code in nomenklatura/resolver/identifier.py
nomenklatura.resolver.Edge
Bases: object
Source code in nomenklatura/resolver/edge.py
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 | |