Question about blockEntityLinkage
See original GitHub issueI have a question about the following line :
val linkedResults = LuceneRDD.blockEntityLinkage(a, b,
linker,
Array("blocker"),
Array("blocker"),
500
)
How will it link a and b?
a ) Search for all the entries of a in b , b) All the entries of b in a c) combine a and b and search both?
Ideally , I’d like to archive the option b) , where I have a small table “b” that I’d like to link with a larger table “a”
Thank you.
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
org.apache.spark.SparkConf Scala Example
blockEntityLinkage" should "deduplicate elements on unique elements" in { val spark = SparkSession.builder().getOrCreate() import spark.implicits.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can do:
The semantics of the block linkage is as follows:
You could use blocking on any column where you know that a and b have common values and you can assume that you can condition on such a column.
See Slide 15 here: http://helios.mi.parisdescartes.fr/~themisp/publications/PapadakisPalpanas-TutorialWWW2018.pdf