SlideShare a Scribd company logo
1 of 43
Building a Real-time, Solr-powered
         Recommendation Engine

                  Trey Grainger
         Manager, Search Technology Development
                                @



Lucene Revolution 2012 - Boston
Overview
• Overview of Search & Matching Concepts
• Recommendation Approaches in Solr:
   • Attribute-based
   • Hierarchical Classification
   • Concept-based
   • More-like-this
   • Collaborative Filtering
   • Hybrid Approaches
• Important Considerations & Advanced Capabilities
  @ CareerBuilder
My Background
Trey Grainger
   • Manager, Search Technology Development
      @ CareerBuilder.com

Relevant Background
   • Search & Recommendations
   • High-volume, N-tier Architectures
   • NLP, Relevancy Tuning, user group testing, & machine learning

Fun Side Projects
   • Founder and Chief Engineer @               .com


   • Currently co-authoring Solr in Action book… keep your eyes out for
     the early access release from Manning Publications
About Search @CareerBuilder
• Over 1 million new jobs each month
• Over 45 million actively searchable resumes
• ~250 globally distributed search servers (in
  the U.S., Europe, & Asia)
• Thousands of unique, dynamically generated
  indexes
• Hundreds of millions of search documents
• Over 1 million searches an hour
Search Products @
Redefining “Search Engine”
• “Lucene is a high-performance, full-featured
  text search engine library…”
 Yes, but really…

• Lucene is a high-performance, fully-featured
  token matching and scoring library… which
  can perform full-text searching.
Redefining “Search Engine”

 or, in machine learning speak:

• A Lucene index is a multi-dimensional
  sparse matrix… with very fast and powerful
  lookup capabilities.

• Think of each field as a matrix containing each
  term mapped to each document
The Lucene Inverted Index
              (traditional text example)
                                            How the content is INDEXED into
What you SEND to Lucene/Solr:               Lucene/Solr (conceptually):

Document      Content Field                 Term            Documents
doc1          once upon a time, in a land   a               doc1 [2x]
              far, far away                 brown           doc3 [1x] , doc5 [1x]
doc2          the cow jumped over the       cat             doc4 [1x]
              moon.
                                            cow             doc2 [1x] , doc5 [1x]
doc3          the quick brown fox
              jumped over the lazy dog.     …               ...


doc4          the cat in the hat            once            doc1 [1x], doc5 [1x]

doc5          The brown cow said “moo”      over            doc2 [1x], doc3 [1x]
              once.                         the             doc2 [2x], doc3 [2x],
…             …                                             doc4[2x], doc5 [1x]
                                            …               …
Match Text Queries to Text Fields

       /solr/select/?q=jobcontent: (software engineer)

Job Content Field Documents            engineer
…               …                     doc5
engineer        doc1, doc3, doc4,
                doc5
                                    software engineer
…
                                      doc1 doc3
mechanical      doc2, doc4, doc6         doc4
…               …
software        doc1, doc3, doc4,
                doc7, doc8             software
…               …                      doc7   doc8
Beyond Text Searching
• Lucene/Solr is a text search matching engine

• When Lucene/Solr search text, they are matching
  tokens in the query with tokens in index

• Anything that can be searched upon can form the
  basis of matching and scoring:
  – text, attributes, locations, results of functions, user
    behavior, classifications, etc.
Business Case for Recommendations

• For companies like CareerBuilder, recommendations
  can provide as much or even greater business value
  (i.e. views, sales, job applications) than user-driven
  search capabilities.

• Recommendations create stickiness to pull users
  back to your company’s website, app, etc.

• What are recommendations?
    … searches of relevant content for a user
Approaches to Recommendations
• Content-based
   – Attribute based
       • i.e. income level, hobbies, location, experience
   – Hierarchical
       • i.e. “medical//nursing//oncology”, “animal//dog//terrier”
   – Textual Similarity
       • i.e. Solr’s MoreLikeThis Request Handler & Search Handler
   – Concept Based
       • i.e. Solr => “software engineer”, “java”, “search”, “open source”


• Behavioral Based
       • Collaborative Filtering: “Users who liked that also liked this…”

• Hybrid Approaches
Content-based Recommendation Approaches
Attribute-based Recommendations
• Example: Match User Attributes to Item Attribute Fields
   Janes_Profile:{
       Industry:”healthcare”,
       Locations:”Boston, MA”,
       JobTitle:”Nurse Educator”,
       Salary:{ min:40000, max:60000 },
   }


   /solr/select/?q=(jobtitle:”nurse educator”^25 OR
   jobtitle:(nurse educator)^10) AND ((city:”Boston” AND
   state:”MA”)^15 OR state:”MA”) AND
   _val_:”map(salary,40000,60000,10,0)”

   //by mapping the importance of each attribute to weights based upon
   your business domain, you can easily find results which match your
   customer’s profile without the user having to initiate a search.
Hierarchical Recommendations
• Example: Match User Attributes to Item Attribute Fields
   Janes_Profile:{
       MostLikelyCategory:”healthcare//nursing//oncology”,
       2ndMostLikelyCategory:”healthcare//nursing//transplant”,
       3rdMostLikelyCategory:”educator//postsecondary//nursing”, …
   }

   /solr/select/?q=(category:(
               (”healthcare.nursing.oncology”^40
               OR ”healthcare.nursing”^20
               OR “healthcare”^10))
                        OR
               (”healthcare.nursing.transplant”^20
               OR ”healthcare.nursing”^10
               OR “healthcare”^5))
                        OR
               (”educator.postsecondary.nursing”^10
               OR ”educator.postsecondary”^5
               OR “educator”)                       ))
Textual Similarity-based Recommendations
• Solr’s More Like This Request Handler / Search Handler are a good
  example of this.

• Essentially, “important keywords” are extracted from one or more
  documents and turned into a search.

• This results in secondary search results which demonstrate
  textual similarity to the original document(s)

• See http://wiki.apache.org/solr/MoreLikeThis for example usage

• Currently no distributed search support (but a patch is available)
Concept Based Recommendations
Approaches:
1) Create a Taxonomy/Dictionary to define your
    concepts and then either:
       a) manually tag documents as they come in
           //Very hard to scale… see Amazon Mechanical Turk if you must do this
  or
       b) create a classification system which automatically tags
          content as it comes in (supervised machine learning)
           //See Apache Mahout


2) Use an unsupervised machine learning algorithm to
   cluster documents and dynamically discover concepts
   (no dictionary required).
    //This is already built into Solr using Carrot2!
How Clustering Works
Setting Up Clustering in SolrConfig.xml
<searchComponent name="clustering" enable=“true“
class="solr.clustering.ClusteringComponent">
  <lst name="engine">
    <str name="name">default</str>
    <str name="carrot.algorithm">
         org.carrot2.clustering.lingo.LingoClusteringAlgorithm</str>
    <str name="MultilingualClustering.defaultLanguage">ENGLISH</str>
  </lst>
</searchComponent>

<requestHandler name="/clustering" enable=“true" class="solr.SearchHandler">
  <lst name="defaults">
    <str name="clustering.engine">default</str>
    <bool name="clustering.results">true</bool>
    <str name="fl">*,score</str>
  </lst>
  <arr name="last-components">
    <str>clustering</str>
  </arr>
</requestHandler>
Clustering Search in Solr
• /solr/clustering/?q=content:nursing
    &rows=100
    &carrot.title=titlefield
    &carrot.snippet=titlefield
    &LingoClusteringAlgorithm.desiredClusterCountBase=25
    &group=false //clustering & grouping don’t currently play nicely

• Allows you to dynamically identify “concepts” and their
  prevalence within a user’s top search results
Search:   Nursing
Search:   .Net
Example Concept-based Recommendation
   Stage 1: Identify Concepts
 Original Query: q=(solr or lucene)                               Clusters Identifier:
                                                                  Developer (22)
  // can be a user’s search, their job title, a list of skills,   Java Developer (13)
 // or any other keyword rich data source
                                                                  Software (10)
                                                                  Senior Java Developer (9)
                                                                  Architect (6)
                                                                  Software Engineer (6)
                                                                  Web Developer (5)
                                                                  Search (3)
                                                                  Software Developer (3)
                                                                  Systems (3)
                                                                  Administrator (2)
Facets Identified (occupation):                                   Hadoop Engineer (2)
                                                                  Java J2EE (2)
Computer Software Engineers                                       Search Development (2)
Web Developers                                                    Software Architect (2)
...                                                               Solutions Architect (2)
Example Concept-based Recommendation
 Stage 2: Run Recommendations Search
q=content:(“Developer”^22 or “Java Developer”^13 or “Software
”^10 or “Senior Java Developer”^9 or “Architect ”^6 or “Software
Engineer”^6 or “Web Developer ”^5 or “Search”^3 or “Software
Developer”^3 or “Systems”^3 or “Administrator”^2 or “Hadoop
Engineer”^2 or “Java J2EE”^2 or “Search Development”^2 or
“Software Architect”^2 or “Solutions Architect”^2) and
occupation: (“Computer Software Engineers” or “Web
Developers”)

// Your can also add the user’s location or the original keywords to the
// recommendations search if it helps results quality for your use-case.
Example Concept-based Recommendation
Stage 3: Returning the Recommendations




                                         …
Important Side-bar: Geography
Geography and Recommendations
• Filtering or boosting results based upon geographical area or
  distance can help greatly for certain use cases:
   – Jobs/Resumes, Tickets/Concerts, Restaurants


• For other use cases, location sensitivity is nearly worthless:
   – Books, Songs, Movies

   /solr/select/?q=(Standard Recommendation Query) AND
   _val_:”(recip(geodist(location, 40.7142, 74.0064),1,1,0))”


   // there are dozens of well-documented ways to search/filter/sort/boost
   // on geography in Solr.. This is just one example.
Behavior-based Recommendation Approaches
          (Collaborative Filtering)
The Lucene Inverted Index
               (user behavior example)
                                       How the content is INDEXED into
What you SEND to Lucene/Solr:          Lucene/Solr (conceptually):

Document      “Users who bought this   Term            Documents
              product” Field
                                       user1           doc1, doc5
doc1          user1, user4, user5
                                       user2           doc2
doc2          user2, user3             user3           doc2
                                       user4           doc1, doc3,
doc3          user4                                    doc4, doc5
                                       user5           doc1, doc4
doc4          user4, user5
                                       …               …
doc5          user4, user1
…             …
Collaborative Filtering
• Step 1: Find similar users who like the same documents
                q=documentid: (“doc1” OR “doc4”)
 Document   “Users who bought this
            product “Field
                                         doc1                  doc4
 doc1       user1, user4, user5
                                      user1    user4         user4    user5
 doc2       user2, user3
                                           user5
 doc3       user4

 doc4       user4, user5             Top Scoring Results (Most Similar Users):
                                     1) user5 (2 shared likes)
 doc5       user4, user1             2) user4 (2 shared likes)
 …          …                        3) user 1 (1 shared like)
Collaborative Filtering
• Step 2: Search for docs “liked” by those similar users
Most Similar Users:
1) user5 (2 shared likes)
                            /solr/select/?q=userlikes: (“user5”^2
2) user4 (2 shared likes)                 OR “user4”^2 OR “user1”^1)
3) user 1 (1 shared like)


Term          Documents
                                        Top Recommended Documents:
user1         doc1, doc5                1) doc1 (matches user4, user5, user1)
user2         doc2                      2) doc4 (matches user4, user5)
                                        3) doc5 (matches user4, user1)
user3         doc2
                                        4) doc3 (matches user4)
user4         doc1, doc3,
              doc4, doc5                //Doc 2 does not match
user5         doc1, doc4                //above example ignores idf calculations
…             …
Lot’s of Variations
•   Users –> Item(s)
•   User –> Item(s) –> Users
•   Item –> Users –> Item(s)
•   etc.
                     User 1   User 2   User 3   User 4   …
            Item 1   X        X        X                 …
            Item 2            X                 X        …
            Item 3            X        X                 …
            Item 4                              X        …
            …        …        …        …        …        …

Note: Just because this example tags with “users” doesn’t mean you have to.
You can map any entity to any other related entity and achieve a similar result.
Comparison with Mahout
•   Recommendations are much easier for us to perform in Solr:
     –   Data is already present and up-to-date
     –   Doesn’t require writing significant code to make changes (just changing queries)
     –   Recommendations are real-time as opposed to asynchronously processed off-line.
     –   Allows easy utilization of any content and available functions to boost results

•   Our initial tests show our collaborative filtering approach in Solr significantly
    outperforms our Mahout tests in terms of results quality
     – Note: We believe that some portion of the quality issues we have with the Mahout
       implementation have to do with staleness of data due to the frequency with which our data is
       updated.

•   Our general take away:
     –   We believe that Mahout might be able to return better matches than Solr with a lot of custom
         work, but it does not perform better for us out of the box.

•   Because we already scale…
     – Since we already have all of data indexed in Solr (tens to hundreds of millions of documents),
       there’s no need for us to rebuild a sparse matrix in Hadoop (your needs may be different).
Hybrid Recommendation Approaches
Hybrid Approaches
• Not much to say here, I think you get the point.

• /solr/select/?q=category:(”healthcare.nursing.oncology”^10
  ”healthcare.nursing”^5 OR “healthcare”) OR title:”Nurse
  Educator”^15 AND _val_:”map(salary,40000,60000,10,0)”^5
  AND _val_:”(recip(geodist(location, 40.7142,
  74.0064),1,1,0))”)

• Combining multiple approaches generally yields better overall
  results if done intelligently. Experimentation is key here.
Important Considerations &
Advanced Capabilities @ CareerBuilder
Important Considerations @
            CareerBuilder

• Payload Scoring
• Measuring Results Quality
• Understanding our Users
Custom Scoring with Payloads
•   In addition to boosting search terms and fields, content within the same field can also
    be boosted differently using Payloads (requires a custom scoring implementation):

•   Content Field:
         design [1] / engineer [1] / really [ ] / great [ ] / job [ ] / ten[3] / years[3] /
         experience[3] / careerbuilder [2] / design *2+, …

     Payload Bucket Mappings:
     jobtitle: bucket=[1] boost=10; company: bucket=[2] boost=4;
        jobdescription: bucket=[] weight=1; experience: bucket=[3] weight=1.5

     We can pass in a parameter to solr at query time specifying the boost to apply to each
     bucket i.e. …&bucketWeights=1:10;2:4;3:1.5;default:1;

•   This allows us to map many relevancy buckets to search terms at index time and adjust
    the weighting at query time without having to search across hundreds of fields.

•   By making all scoring parameters overridable at query time, we are able to do A / B
    testing to consistently improve our relevancy model
Measuring Results Quality
• A/B Testing is key to understanding our search results quality.

• Users are randomly divided between equal groups

• Each group experiences a different algorithm for the duration of the
  test

• We can measure “performance” of the algorithm based upon
  changes in user behavior:
    – For us, more job applications = more relevant results
    – For other companies, that might translate into products purchased, additional
      friends requested, or non-search pages viewed

• We use this to test both keyword search results and also
  recommendations quality
Understanding our Users
(given limited information)
Understanding Our Users
• Machine learning algorithms can help us understand what
  matters most to different groups of users.

         Example: Willingness to relocate for a job (miles per percentile)
 2,500

 2,000
            Title Examiners, Abstractors, and Searchers
 1,500

 1,000
            Software Developers, Systems Software
  500
            Food Preparation Workers
    0
          1% 5% 10% 20% 25% 30% 40% 50% 60% 70% 75% 80% 90% 95%
Key Takeaways
• Recommendations can be as valuable or more
  than keyword search.

• If your data fits in Solr then you have everything
  you need to build an industry-leading
  recommendation system

• Even a single keyword can be enough to begin
  making meaningful recommendations. Build up
  intelligently from there.
Contact Info
   Trey Grainger
                trey.grainger@careerbuilder.com
                http://www.careerbuilder.com
                @treygrainger




And yes, we are hiring – come chat with me if you are interested.

More Related Content

What's hot

Hydra: A Vocabulary for Hypermedia-Driven Web APIs
Hydra: A Vocabulary for Hypermedia-Driven Web APIsHydra: A Vocabulary for Hypermedia-Driven Web APIs
Hydra: A Vocabulary for Hypermedia-Driven Web APIsMarkus Lanthaler
 
Model Your Application Domain, Not Your JSON Structures
Model Your Application Domain, Not Your JSON StructuresModel Your Application Domain, Not Your JSON Structures
Model Your Application Domain, Not Your JSON StructuresMarkus Lanthaler
 
Optimizing Apache Spark SQL Joins
Optimizing Apache Spark SQL JoinsOptimizing Apache Spark SQL Joins
Optimizing Apache Spark SQL JoinsDatabricks
 
Spring boot
Spring bootSpring boot
Spring bootsdeeg
 
Best Practice of Compression/Decompression Codes in Apache Spark with Sophia...
 Best Practice of Compression/Decompression Codes in Apache Spark with Sophia... Best Practice of Compression/Decompression Codes in Apache Spark with Sophia...
Best Practice of Compression/Decompression Codes in Apache Spark with Sophia...Databricks
 
Hive Bucketing in Apache Spark with Tejas Patil
Hive Bucketing in Apache Spark with Tejas PatilHive Bucketing in Apache Spark with Tejas Patil
Hive Bucketing in Apache Spark with Tejas PatilDatabricks
 
What is REST API? REST API Concepts and Examples | Edureka
What is REST API? REST API Concepts and Examples | EdurekaWhat is REST API? REST API Concepts and Examples | Edureka
What is REST API? REST API Concepts and Examples | EdurekaEdureka!
 
ElasticSearch Basic Introduction
ElasticSearch Basic IntroductionElasticSearch Basic Introduction
ElasticSearch Basic IntroductionMayur Rathod
 
Introduction to Storm
Introduction to Storm Introduction to Storm
Introduction to Storm Chandler Huang
 
JSON-LD: JSON for Linked Data
JSON-LD: JSON for Linked DataJSON-LD: JSON for Linked Data
JSON-LD: JSON for Linked DataGregg Kellogg
 
Closures in Javascript
Closures in JavascriptClosures in Javascript
Closures in JavascriptDavid Semeria
 
Introduction to Elasticsearch
Introduction to ElasticsearchIntroduction to Elasticsearch
Introduction to ElasticsearchIsmaeel Enjreny
 
gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20
gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20
gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20Phil Wilkins
 
What is Ajax technology?
What is Ajax technology?What is Ajax technology?
What is Ajax technology?JavaTpoint.Com
 
React Js Simplified
React Js SimplifiedReact Js Simplified
React Js SimplifiedSunil Yadav
 
Introduction to Apache solr
Introduction to Apache solrIntroduction to Apache solr
Introduction to Apache solrKnoldus Inc.
 

What's hot (20)

Hydra: A Vocabulary for Hypermedia-Driven Web APIs
Hydra: A Vocabulary for Hypermedia-Driven Web APIsHydra: A Vocabulary for Hypermedia-Driven Web APIs
Hydra: A Vocabulary for Hypermedia-Driven Web APIs
 
Model Your Application Domain, Not Your JSON Structures
Model Your Application Domain, Not Your JSON StructuresModel Your Application Domain, Not Your JSON Structures
Model Your Application Domain, Not Your JSON Structures
 
Optimizing Apache Spark SQL Joins
Optimizing Apache Spark SQL JoinsOptimizing Apache Spark SQL Joins
Optimizing Apache Spark SQL Joins
 
Spring boot
Spring bootSpring boot
Spring boot
 
Pro Postgres 9
Pro Postgres 9Pro Postgres 9
Pro Postgres 9
 
Best Practice of Compression/Decompression Codes in Apache Spark with Sophia...
 Best Practice of Compression/Decompression Codes in Apache Spark with Sophia... Best Practice of Compression/Decompression Codes in Apache Spark with Sophia...
Best Practice of Compression/Decompression Codes in Apache Spark with Sophia...
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
Hive Bucketing in Apache Spark with Tejas Patil
Hive Bucketing in Apache Spark with Tejas PatilHive Bucketing in Apache Spark with Tejas Patil
Hive Bucketing in Apache Spark with Tejas Patil
 
What is REST API? REST API Concepts and Examples | Edureka
What is REST API? REST API Concepts and Examples | EdurekaWhat is REST API? REST API Concepts and Examples | Edureka
What is REST API? REST API Concepts and Examples | Edureka
 
ElasticSearch Basic Introduction
ElasticSearch Basic IntroductionElasticSearch Basic Introduction
ElasticSearch Basic Introduction
 
Introduction to Storm
Introduction to Storm Introduction to Storm
Introduction to Storm
 
Basics of JavaScript
Basics of JavaScriptBasics of JavaScript
Basics of JavaScript
 
JSON-LD: JSON for Linked Data
JSON-LD: JSON for Linked DataJSON-LD: JSON for Linked Data
JSON-LD: JSON for Linked Data
 
Postgresql
PostgresqlPostgresql
Postgresql
 
Closures in Javascript
Closures in JavascriptClosures in Javascript
Closures in Javascript
 
Introduction to Elasticsearch
Introduction to ElasticsearchIntroduction to Elasticsearch
Introduction to Elasticsearch
 
gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20
gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20
gRPC, GraphQL, REST - Which API Tech to use - API Conference Berlin oct 20
 
What is Ajax technology?
What is Ajax technology?What is Ajax technology?
What is Ajax technology?
 
React Js Simplified
React Js SimplifiedReact Js Simplified
React Js Simplified
 
Introduction to Apache solr
Introduction to Apache solrIntroduction to Apache solr
Introduction to Apache solr
 

Viewers also liked

Anyone Can Build A Recommendation Engine With Solr: Presented by Doug Turnbul...
Anyone Can Build A Recommendation Engine With Solr: Presented by Doug Turnbul...Anyone Can Build A Recommendation Engine With Solr: Presented by Doug Turnbul...
Anyone Can Build A Recommendation Engine With Solr: Presented by Doug Turnbul...Lucidworks
 
Near Real Time Indexing: Presented by Umesh Prasad & Thejus V M, Flipkart
Near Real Time Indexing: Presented by Umesh Prasad & Thejus V M, FlipkartNear Real Time Indexing: Presented by Umesh Prasad & Thejus V M, Flipkart
Near Real Time Indexing: Presented by Umesh Prasad & Thejus V M, FlipkartLucidworks
 
State-of-the-Art Drupal Search with Apache Solr
State-of-the-Art Drupal Search with Apache SolrState-of-the-Art Drupal Search with Apache Solr
State-of-the-Art Drupal Search with Apache SolrRobert Douglass
 
Netflix Global Search - Lucene Revolution
Netflix Global Search - Lucene RevolutionNetflix Global Search - Lucene Revolution
Netflix Global Search - Lucene Revolutionivan provalov
 
Collaborative filtering for recommendation systems in Python, Nicolas Hug
Collaborative filtering for recommendation systems in Python, Nicolas HugCollaborative filtering for recommendation systems in Python, Nicolas Hug
Collaborative filtering for recommendation systems in Python, Nicolas HugPôle Systematic Paris-Region
 
Building a Recommendation Engine - An example of a product recommendation engine
Building a Recommendation Engine - An example of a product recommendation engineBuilding a Recommendation Engine - An example of a product recommendation engine
Building a Recommendation Engine - An example of a product recommendation engineNYC Predictive Analytics
 

Viewers also liked (6)

Anyone Can Build A Recommendation Engine With Solr: Presented by Doug Turnbul...
Anyone Can Build A Recommendation Engine With Solr: Presented by Doug Turnbul...Anyone Can Build A Recommendation Engine With Solr: Presented by Doug Turnbul...
Anyone Can Build A Recommendation Engine With Solr: Presented by Doug Turnbul...
 
Near Real Time Indexing: Presented by Umesh Prasad & Thejus V M, Flipkart
Near Real Time Indexing: Presented by Umesh Prasad & Thejus V M, FlipkartNear Real Time Indexing: Presented by Umesh Prasad & Thejus V M, Flipkart
Near Real Time Indexing: Presented by Umesh Prasad & Thejus V M, Flipkart
 
State-of-the-Art Drupal Search with Apache Solr
State-of-the-Art Drupal Search with Apache SolrState-of-the-Art Drupal Search with Apache Solr
State-of-the-Art Drupal Search with Apache Solr
 
Netflix Global Search - Lucene Revolution
Netflix Global Search - Lucene RevolutionNetflix Global Search - Lucene Revolution
Netflix Global Search - Lucene Revolution
 
Collaborative filtering for recommendation systems in Python, Nicolas Hug
Collaborative filtering for recommendation systems in Python, Nicolas HugCollaborative filtering for recommendation systems in Python, Nicolas Hug
Collaborative filtering for recommendation systems in Python, Nicolas Hug
 
Building a Recommendation Engine - An example of a product recommendation engine
Building a Recommendation Engine - An example of a product recommendation engineBuilding a Recommendation Engine - An example of a product recommendation engine
Building a Recommendation Engine - An example of a product recommendation engine
 

Similar to Building a real time, solr-powered recommendation engine

Building a Real-time Solr-powered Recommendation Engine
Building a Real-time Solr-powered Recommendation EngineBuilding a Real-time Solr-powered Recommendation Engine
Building a Real-time Solr-powered Recommendation Enginelucenerevolution
 
Scaling Recommendations, Semantic Search, & Data Analytics with solr
Scaling Recommendations, Semantic Search, & Data Analytics with solrScaling Recommendations, Semantic Search, & Data Analytics with solr
Scaling Recommendations, Semantic Search, & Data Analytics with solrTrey Grainger
 
From keyword-based search to language-agnostic semantic search
From keyword-based search to language-agnostic semantic searchFrom keyword-based search to language-agnostic semantic search
From keyword-based search to language-agnostic semantic searchCareerBuilder.com
 
Reflected intelligence evolving self-learning data systems
Reflected intelligence  evolving self-learning data systemsReflected intelligence  evolving self-learning data systems
Reflected intelligence evolving self-learning data systemsTrey Grainger
 
The Semantic Knowledge Graph
The Semantic Knowledge GraphThe Semantic Knowledge Graph
The Semantic Knowledge GraphTrey Grainger
 
Introduction to Lucene & Solr and Usecases
Introduction to Lucene & Solr and UsecasesIntroduction to Lucene & Solr and Usecases
Introduction to Lucene & Solr and UsecasesRahul Jain
 
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine
Leveraging Lucene/Solr as a Knowledge Graph and Intent EngineLeveraging Lucene/Solr as a Knowledge Graph and Intent Engine
Leveraging Lucene/Solr as a Knowledge Graph and Intent EngineTrey Grainger
 
How to Build a Semantic Search System
How to Build a Semantic Search SystemHow to Build a Semantic Search System
How to Build a Semantic Search SystemTrey Grainger
 
The Apache Solr Smart Data Ecosystem
The Apache Solr Smart Data EcosystemThe Apache Solr Smart Data Ecosystem
The Apache Solr Smart Data EcosystemTrey Grainger
 
Self-learned Relevancy with Apache Solr
Self-learned Relevancy with Apache SolrSelf-learned Relevancy with Apache Solr
Self-learned Relevancy with Apache SolrTrey Grainger
 
Building Search & Recommendation Engines
Building Search & Recommendation EnginesBuilding Search & Recommendation Engines
Building Search & Recommendation EnginesTrey Grainger
 
SDSC18 and DSATL Meetup March 2018
SDSC18 and DSATL Meetup March 2018 SDSC18 and DSATL Meetup March 2018
SDSC18 and DSATL Meetup March 2018 CareerBuilder.com
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine LearningRahul Jain
 
Learning to Rank Presentation (v2) at LexisNexis Search Guild
Learning to Rank Presentation (v2) at LexisNexis Search GuildLearning to Rank Presentation (v2) at LexisNexis Search Guild
Learning to Rank Presentation (v2) at LexisNexis Search GuildSujit Pal
 
The Relevance of the Apache Solr Semantic Knowledge Graph
The Relevance of the Apache Solr Semantic Knowledge GraphThe Relevance of the Apache Solr Semantic Knowledge Graph
The Relevance of the Apache Solr Semantic Knowledge GraphTrey Grainger
 
Leveraging NLP and Deep Learning for Document Recommendations in the Cloud
Leveraging NLP and Deep Learning for Document Recommendations in the CloudLeveraging NLP and Deep Learning for Document Recommendations in the Cloud
Leveraging NLP and Deep Learning for Document Recommendations in the CloudDatabricks
 
Advanced full text searching techniques using Lucene
Advanced full text searching techniques using LuceneAdvanced full text searching techniques using Lucene
Advanced full text searching techniques using LuceneAsad Abbas
 
Solr search engine with multiple table relation
Solr search engine with multiple table relationSolr search engine with multiple table relation
Solr search engine with multiple table relationJay Bharat
 
Reflected Intelligence: Lucene/Solr as a self-learning data system
Reflected Intelligence: Lucene/Solr as a self-learning data systemReflected Intelligence: Lucene/Solr as a self-learning data system
Reflected Intelligence: Lucene/Solr as a self-learning data systemTrey Grainger
 
Vital AI MetaQL: Queries Across NoSQL, SQL, Sparql, and Spark
Vital AI MetaQL: Queries Across NoSQL, SQL, Sparql, and SparkVital AI MetaQL: Queries Across NoSQL, SQL, Sparql, and Spark
Vital AI MetaQL: Queries Across NoSQL, SQL, Sparql, and SparkVital.AI
 

Similar to Building a real time, solr-powered recommendation engine (20)

Building a Real-time Solr-powered Recommendation Engine
Building a Real-time Solr-powered Recommendation EngineBuilding a Real-time Solr-powered Recommendation Engine
Building a Real-time Solr-powered Recommendation Engine
 
Scaling Recommendations, Semantic Search, & Data Analytics with solr
Scaling Recommendations, Semantic Search, & Data Analytics with solrScaling Recommendations, Semantic Search, & Data Analytics with solr
Scaling Recommendations, Semantic Search, & Data Analytics with solr
 
From keyword-based search to language-agnostic semantic search
From keyword-based search to language-agnostic semantic searchFrom keyword-based search to language-agnostic semantic search
From keyword-based search to language-agnostic semantic search
 
Reflected intelligence evolving self-learning data systems
Reflected intelligence  evolving self-learning data systemsReflected intelligence  evolving self-learning data systems
Reflected intelligence evolving self-learning data systems
 
The Semantic Knowledge Graph
The Semantic Knowledge GraphThe Semantic Knowledge Graph
The Semantic Knowledge Graph
 
Introduction to Lucene & Solr and Usecases
Introduction to Lucene & Solr and UsecasesIntroduction to Lucene & Solr and Usecases
Introduction to Lucene & Solr and Usecases
 
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine
Leveraging Lucene/Solr as a Knowledge Graph and Intent EngineLeveraging Lucene/Solr as a Knowledge Graph and Intent Engine
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine
 
How to Build a Semantic Search System
How to Build a Semantic Search SystemHow to Build a Semantic Search System
How to Build a Semantic Search System
 
The Apache Solr Smart Data Ecosystem
The Apache Solr Smart Data EcosystemThe Apache Solr Smart Data Ecosystem
The Apache Solr Smart Data Ecosystem
 
Self-learned Relevancy with Apache Solr
Self-learned Relevancy with Apache SolrSelf-learned Relevancy with Apache Solr
Self-learned Relevancy with Apache Solr
 
Building Search & Recommendation Engines
Building Search & Recommendation EnginesBuilding Search & Recommendation Engines
Building Search & Recommendation Engines
 
SDSC18 and DSATL Meetup March 2018
SDSC18 and DSATL Meetup March 2018 SDSC18 and DSATL Meetup March 2018
SDSC18 and DSATL Meetup March 2018
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 
Learning to Rank Presentation (v2) at LexisNexis Search Guild
Learning to Rank Presentation (v2) at LexisNexis Search GuildLearning to Rank Presentation (v2) at LexisNexis Search Guild
Learning to Rank Presentation (v2) at LexisNexis Search Guild
 
The Relevance of the Apache Solr Semantic Knowledge Graph
The Relevance of the Apache Solr Semantic Knowledge GraphThe Relevance of the Apache Solr Semantic Knowledge Graph
The Relevance of the Apache Solr Semantic Knowledge Graph
 
Leveraging NLP and Deep Learning for Document Recommendations in the Cloud
Leveraging NLP and Deep Learning for Document Recommendations in the CloudLeveraging NLP and Deep Learning for Document Recommendations in the Cloud
Leveraging NLP and Deep Learning for Document Recommendations in the Cloud
 
Advanced full text searching techniques using Lucene
Advanced full text searching techniques using LuceneAdvanced full text searching techniques using Lucene
Advanced full text searching techniques using Lucene
 
Solr search engine with multiple table relation
Solr search engine with multiple table relationSolr search engine with multiple table relation
Solr search engine with multiple table relation
 
Reflected Intelligence: Lucene/Solr as a self-learning data system
Reflected Intelligence: Lucene/Solr as a self-learning data systemReflected Intelligence: Lucene/Solr as a self-learning data system
Reflected Intelligence: Lucene/Solr as a self-learning data system
 
Vital AI MetaQL: Queries Across NoSQL, SQL, Sparql, and Spark
Vital AI MetaQL: Queries Across NoSQL, SQL, Sparql, and SparkVital AI MetaQL: Queries Across NoSQL, SQL, Sparql, and Spark
Vital AI MetaQL: Queries Across NoSQL, SQL, Sparql, and Spark
 

More from Trey Grainger

Balancing the Dimensions of User Intent
Balancing the Dimensions of User IntentBalancing the Dimensions of User Intent
Balancing the Dimensions of User IntentTrey Grainger
 
Reflected Intelligence: Real world AI in Digital Transformation
Reflected Intelligence: Real world AI in Digital TransformationReflected Intelligence: Real world AI in Digital Transformation
Reflected Intelligence: Real world AI in Digital TransformationTrey Grainger
 
Thought Vectors and Knowledge Graphs in AI-powered Search
Thought Vectors and Knowledge Graphs in AI-powered SearchThought Vectors and Knowledge Graphs in AI-powered Search
Thought Vectors and Knowledge Graphs in AI-powered SearchTrey Grainger
 
Natural Language Search with Knowledge Graphs (Chicago Meetup)
Natural Language Search with Knowledge Graphs (Chicago Meetup)Natural Language Search with Knowledge Graphs (Chicago Meetup)
Natural Language Search with Knowledge Graphs (Chicago Meetup)Trey Grainger
 
The Next Generation of AI-powered Search
The Next Generation of AI-powered SearchThe Next Generation of AI-powered Search
The Next Generation of AI-powered SearchTrey Grainger
 
Natural Language Search with Knowledge Graphs (Activate 2019)
Natural Language Search with Knowledge Graphs (Activate 2019)Natural Language Search with Knowledge Graphs (Activate 2019)
Natural Language Search with Knowledge Graphs (Activate 2019)Trey Grainger
 
AI, Search, and the Disruption of Knowledge Management
AI, Search, and the Disruption of Knowledge ManagementAI, Search, and the Disruption of Knowledge Management
AI, Search, and the Disruption of Knowledge ManagementTrey Grainger
 
Measuring Relevance in the Negative Space
Measuring Relevance in the Negative SpaceMeasuring Relevance in the Negative Space
Measuring Relevance in the Negative SpaceTrey Grainger
 
Natural Language Search with Knowledge Graphs (Haystack 2019)
Natural Language Search with Knowledge Graphs (Haystack 2019)Natural Language Search with Knowledge Graphs (Haystack 2019)
Natural Language Search with Knowledge Graphs (Haystack 2019)Trey Grainger
 
The Future of Search and AI
The Future of Search and AIThe Future of Search and AI
The Future of Search and AITrey Grainger
 
Searching for Meaning
Searching for MeaningSearching for Meaning
Searching for MeaningTrey Grainger
 
The Intent Algorithms of Search & Recommendation Engines
The Intent Algorithms of Search & Recommendation EnginesThe Intent Algorithms of Search & Recommendation Engines
The Intent Algorithms of Search & Recommendation EnginesTrey Grainger
 
The Apache Solr Semantic Knowledge Graph
The Apache Solr Semantic Knowledge GraphThe Apache Solr Semantic Knowledge Graph
The Apache Solr Semantic Knowledge GraphTrey Grainger
 
Intent Algorithms: The Data Science of Smart Information Retrieval Systems
Intent Algorithms: The Data Science of Smart Information Retrieval SystemsIntent Algorithms: The Data Science of Smart Information Retrieval Systems
Intent Algorithms: The Data Science of Smart Information Retrieval SystemsTrey Grainger
 
South Big Data Hub: Text Data Analysis Panel
South Big Data Hub: Text Data Analysis PanelSouth Big Data Hub: Text Data Analysis Panel
South Big Data Hub: Text Data Analysis PanelTrey Grainger
 
Searching on Intent: Knowledge Graphs, Personalization, and Contextual Disamb...
Searching on Intent: Knowledge Graphs, Personalization, and Contextual Disamb...Searching on Intent: Knowledge Graphs, Personalization, and Contextual Disamb...
Searching on Intent: Knowledge Graphs, Personalization, and Contextual Disamb...Trey Grainger
 
Semantic & Multilingual Strategies in Lucene/Solr
Semantic & Multilingual Strategies in Lucene/SolrSemantic & Multilingual Strategies in Lucene/Solr
Semantic & Multilingual Strategies in Lucene/SolrTrey Grainger
 
Crowdsourced query augmentation through the semantic discovery of domain spec...
Crowdsourced query augmentation through the semantic discovery of domain spec...Crowdsourced query augmentation through the semantic discovery of domain spec...
Crowdsourced query augmentation through the semantic discovery of domain spec...Trey Grainger
 
Enhancing relevancy through personalization & semantic search
Enhancing relevancy through personalization & semantic searchEnhancing relevancy through personalization & semantic search
Enhancing relevancy through personalization & semantic searchTrey Grainger
 
Building a real time big data analytics platform with solr
Building a real time big data analytics platform with solrBuilding a real time big data analytics platform with solr
Building a real time big data analytics platform with solrTrey Grainger
 

More from Trey Grainger (20)

Balancing the Dimensions of User Intent
Balancing the Dimensions of User IntentBalancing the Dimensions of User Intent
Balancing the Dimensions of User Intent
 
Reflected Intelligence: Real world AI in Digital Transformation
Reflected Intelligence: Real world AI in Digital TransformationReflected Intelligence: Real world AI in Digital Transformation
Reflected Intelligence: Real world AI in Digital Transformation
 
Thought Vectors and Knowledge Graphs in AI-powered Search
Thought Vectors and Knowledge Graphs in AI-powered SearchThought Vectors and Knowledge Graphs in AI-powered Search
Thought Vectors and Knowledge Graphs in AI-powered Search
 
Natural Language Search with Knowledge Graphs (Chicago Meetup)
Natural Language Search with Knowledge Graphs (Chicago Meetup)Natural Language Search with Knowledge Graphs (Chicago Meetup)
Natural Language Search with Knowledge Graphs (Chicago Meetup)
 
The Next Generation of AI-powered Search
The Next Generation of AI-powered SearchThe Next Generation of AI-powered Search
The Next Generation of AI-powered Search
 
Natural Language Search with Knowledge Graphs (Activate 2019)
Natural Language Search with Knowledge Graphs (Activate 2019)Natural Language Search with Knowledge Graphs (Activate 2019)
Natural Language Search with Knowledge Graphs (Activate 2019)
 
AI, Search, and the Disruption of Knowledge Management
AI, Search, and the Disruption of Knowledge ManagementAI, Search, and the Disruption of Knowledge Management
AI, Search, and the Disruption of Knowledge Management
 
Measuring Relevance in the Negative Space
Measuring Relevance in the Negative SpaceMeasuring Relevance in the Negative Space
Measuring Relevance in the Negative Space
 
Natural Language Search with Knowledge Graphs (Haystack 2019)
Natural Language Search with Knowledge Graphs (Haystack 2019)Natural Language Search with Knowledge Graphs (Haystack 2019)
Natural Language Search with Knowledge Graphs (Haystack 2019)
 
The Future of Search and AI
The Future of Search and AIThe Future of Search and AI
The Future of Search and AI
 
Searching for Meaning
Searching for MeaningSearching for Meaning
Searching for Meaning
 
The Intent Algorithms of Search & Recommendation Engines
The Intent Algorithms of Search & Recommendation EnginesThe Intent Algorithms of Search & Recommendation Engines
The Intent Algorithms of Search & Recommendation Engines
 
The Apache Solr Semantic Knowledge Graph
The Apache Solr Semantic Knowledge GraphThe Apache Solr Semantic Knowledge Graph
The Apache Solr Semantic Knowledge Graph
 
Intent Algorithms: The Data Science of Smart Information Retrieval Systems
Intent Algorithms: The Data Science of Smart Information Retrieval SystemsIntent Algorithms: The Data Science of Smart Information Retrieval Systems
Intent Algorithms: The Data Science of Smart Information Retrieval Systems
 
South Big Data Hub: Text Data Analysis Panel
South Big Data Hub: Text Data Analysis PanelSouth Big Data Hub: Text Data Analysis Panel
South Big Data Hub: Text Data Analysis Panel
 
Searching on Intent: Knowledge Graphs, Personalization, and Contextual Disamb...
Searching on Intent: Knowledge Graphs, Personalization, and Contextual Disamb...Searching on Intent: Knowledge Graphs, Personalization, and Contextual Disamb...
Searching on Intent: Knowledge Graphs, Personalization, and Contextual Disamb...
 
Semantic & Multilingual Strategies in Lucene/Solr
Semantic & Multilingual Strategies in Lucene/SolrSemantic & Multilingual Strategies in Lucene/Solr
Semantic & Multilingual Strategies in Lucene/Solr
 
Crowdsourced query augmentation through the semantic discovery of domain spec...
Crowdsourced query augmentation through the semantic discovery of domain spec...Crowdsourced query augmentation through the semantic discovery of domain spec...
Crowdsourced query augmentation through the semantic discovery of domain spec...
 
Enhancing relevancy through personalization & semantic search
Enhancing relevancy through personalization & semantic searchEnhancing relevancy through personalization & semantic search
Enhancing relevancy through personalization & semantic search
 
Building a real time big data analytics platform with solr
Building a real time big data analytics platform with solrBuilding a real time big data analytics platform with solr
Building a real time big data analytics platform with solr
 

Recently uploaded

Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 

Recently uploaded (20)

Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 

Building a real time, solr-powered recommendation engine

  • 1. Building a Real-time, Solr-powered Recommendation Engine Trey Grainger Manager, Search Technology Development @ Lucene Revolution 2012 - Boston
  • 2. Overview • Overview of Search & Matching Concepts • Recommendation Approaches in Solr: • Attribute-based • Hierarchical Classification • Concept-based • More-like-this • Collaborative Filtering • Hybrid Approaches • Important Considerations & Advanced Capabilities @ CareerBuilder
  • 3. My Background Trey Grainger • Manager, Search Technology Development @ CareerBuilder.com Relevant Background • Search & Recommendations • High-volume, N-tier Architectures • NLP, Relevancy Tuning, user group testing, & machine learning Fun Side Projects • Founder and Chief Engineer @ .com • Currently co-authoring Solr in Action book… keep your eyes out for the early access release from Manning Publications
  • 4. About Search @CareerBuilder • Over 1 million new jobs each month • Over 45 million actively searchable resumes • ~250 globally distributed search servers (in the U.S., Europe, & Asia) • Thousands of unique, dynamically generated indexes • Hundreds of millions of search documents • Over 1 million searches an hour
  • 6. Redefining “Search Engine” • “Lucene is a high-performance, full-featured text search engine library…” Yes, but really… • Lucene is a high-performance, fully-featured token matching and scoring library… which can perform full-text searching.
  • 7. Redefining “Search Engine” or, in machine learning speak: • A Lucene index is a multi-dimensional sparse matrix… with very fast and powerful lookup capabilities. • Think of each field as a matrix containing each term mapped to each document
  • 8. The Lucene Inverted Index (traditional text example) How the content is INDEXED into What you SEND to Lucene/Solr: Lucene/Solr (conceptually): Document Content Field Term Documents doc1 once upon a time, in a land a doc1 [2x] far, far away brown doc3 [1x] , doc5 [1x] doc2 the cow jumped over the cat doc4 [1x] moon. cow doc2 [1x] , doc5 [1x] doc3 the quick brown fox jumped over the lazy dog. … ... doc4 the cat in the hat once doc1 [1x], doc5 [1x] doc5 The brown cow said “moo” over doc2 [1x], doc3 [1x] once. the doc2 [2x], doc3 [2x], … … doc4[2x], doc5 [1x] … …
  • 9. Match Text Queries to Text Fields /solr/select/?q=jobcontent: (software engineer) Job Content Field Documents engineer … … doc5 engineer doc1, doc3, doc4, doc5 software engineer … doc1 doc3 mechanical doc2, doc4, doc6 doc4 … … software doc1, doc3, doc4, doc7, doc8 software … … doc7 doc8
  • 10. Beyond Text Searching • Lucene/Solr is a text search matching engine • When Lucene/Solr search text, they are matching tokens in the query with tokens in index • Anything that can be searched upon can form the basis of matching and scoring: – text, attributes, locations, results of functions, user behavior, classifications, etc.
  • 11. Business Case for Recommendations • For companies like CareerBuilder, recommendations can provide as much or even greater business value (i.e. views, sales, job applications) than user-driven search capabilities. • Recommendations create stickiness to pull users back to your company’s website, app, etc. • What are recommendations? … searches of relevant content for a user
  • 12. Approaches to Recommendations • Content-based – Attribute based • i.e. income level, hobbies, location, experience – Hierarchical • i.e. “medical//nursing//oncology”, “animal//dog//terrier” – Textual Similarity • i.e. Solr’s MoreLikeThis Request Handler & Search Handler – Concept Based • i.e. Solr => “software engineer”, “java”, “search”, “open source” • Behavioral Based • Collaborative Filtering: “Users who liked that also liked this…” • Hybrid Approaches
  • 14. Attribute-based Recommendations • Example: Match User Attributes to Item Attribute Fields Janes_Profile:{ Industry:”healthcare”, Locations:”Boston, MA”, JobTitle:”Nurse Educator”, Salary:{ min:40000, max:60000 }, } /solr/select/?q=(jobtitle:”nurse educator”^25 OR jobtitle:(nurse educator)^10) AND ((city:”Boston” AND state:”MA”)^15 OR state:”MA”) AND _val_:”map(salary,40000,60000,10,0)” //by mapping the importance of each attribute to weights based upon your business domain, you can easily find results which match your customer’s profile without the user having to initiate a search.
  • 15. Hierarchical Recommendations • Example: Match User Attributes to Item Attribute Fields Janes_Profile:{ MostLikelyCategory:”healthcare//nursing//oncology”, 2ndMostLikelyCategory:”healthcare//nursing//transplant”, 3rdMostLikelyCategory:”educator//postsecondary//nursing”, … } /solr/select/?q=(category:( (”healthcare.nursing.oncology”^40 OR ”healthcare.nursing”^20 OR “healthcare”^10)) OR (”healthcare.nursing.transplant”^20 OR ”healthcare.nursing”^10 OR “healthcare”^5)) OR (”educator.postsecondary.nursing”^10 OR ”educator.postsecondary”^5 OR “educator”) ))
  • 16. Textual Similarity-based Recommendations • Solr’s More Like This Request Handler / Search Handler are a good example of this. • Essentially, “important keywords” are extracted from one or more documents and turned into a search. • This results in secondary search results which demonstrate textual similarity to the original document(s) • See http://wiki.apache.org/solr/MoreLikeThis for example usage • Currently no distributed search support (but a patch is available)
  • 17. Concept Based Recommendations Approaches: 1) Create a Taxonomy/Dictionary to define your concepts and then either: a) manually tag documents as they come in //Very hard to scale… see Amazon Mechanical Turk if you must do this or b) create a classification system which automatically tags content as it comes in (supervised machine learning) //See Apache Mahout 2) Use an unsupervised machine learning algorithm to cluster documents and dynamically discover concepts (no dictionary required). //This is already built into Solr using Carrot2!
  • 19. Setting Up Clustering in SolrConfig.xml <searchComponent name="clustering" enable=“true“ class="solr.clustering.ClusteringComponent"> <lst name="engine"> <str name="name">default</str> <str name="carrot.algorithm"> org.carrot2.clustering.lingo.LingoClusteringAlgorithm</str> <str name="MultilingualClustering.defaultLanguage">ENGLISH</str> </lst> </searchComponent> <requestHandler name="/clustering" enable=“true" class="solr.SearchHandler"> <lst name="defaults"> <str name="clustering.engine">default</str> <bool name="clustering.results">true</bool> <str name="fl">*,score</str> </lst> <arr name="last-components"> <str>clustering</str> </arr> </requestHandler>
  • 20. Clustering Search in Solr • /solr/clustering/?q=content:nursing &rows=100 &carrot.title=titlefield &carrot.snippet=titlefield &LingoClusteringAlgorithm.desiredClusterCountBase=25 &group=false //clustering & grouping don’t currently play nicely • Allows you to dynamically identify “concepts” and their prevalence within a user’s top search results
  • 21. Search: Nursing
  • 22. Search: .Net
  • 23. Example Concept-based Recommendation Stage 1: Identify Concepts Original Query: q=(solr or lucene) Clusters Identifier: Developer (22) // can be a user’s search, their job title, a list of skills, Java Developer (13) // or any other keyword rich data source Software (10) Senior Java Developer (9) Architect (6) Software Engineer (6) Web Developer (5) Search (3) Software Developer (3) Systems (3) Administrator (2) Facets Identified (occupation): Hadoop Engineer (2) Java J2EE (2) Computer Software Engineers Search Development (2) Web Developers Software Architect (2) ... Solutions Architect (2)
  • 24. Example Concept-based Recommendation Stage 2: Run Recommendations Search q=content:(“Developer”^22 or “Java Developer”^13 or “Software ”^10 or “Senior Java Developer”^9 or “Architect ”^6 or “Software Engineer”^6 or “Web Developer ”^5 or “Search”^3 or “Software Developer”^3 or “Systems”^3 or “Administrator”^2 or “Hadoop Engineer”^2 or “Java J2EE”^2 or “Search Development”^2 or “Software Architect”^2 or “Solutions Architect”^2) and occupation: (“Computer Software Engineers” or “Web Developers”) // Your can also add the user’s location or the original keywords to the // recommendations search if it helps results quality for your use-case.
  • 25. Example Concept-based Recommendation Stage 3: Returning the Recommendations …
  • 27. Geography and Recommendations • Filtering or boosting results based upon geographical area or distance can help greatly for certain use cases: – Jobs/Resumes, Tickets/Concerts, Restaurants • For other use cases, location sensitivity is nearly worthless: – Books, Songs, Movies /solr/select/?q=(Standard Recommendation Query) AND _val_:”(recip(geodist(location, 40.7142, 74.0064),1,1,0))” // there are dozens of well-documented ways to search/filter/sort/boost // on geography in Solr.. This is just one example.
  • 28. Behavior-based Recommendation Approaches (Collaborative Filtering)
  • 29. The Lucene Inverted Index (user behavior example) How the content is INDEXED into What you SEND to Lucene/Solr: Lucene/Solr (conceptually): Document “Users who bought this Term Documents product” Field user1 doc1, doc5 doc1 user1, user4, user5 user2 doc2 doc2 user2, user3 user3 doc2 user4 doc1, doc3, doc3 user4 doc4, doc5 user5 doc1, doc4 doc4 user4, user5 … … doc5 user4, user1 … …
  • 30. Collaborative Filtering • Step 1: Find similar users who like the same documents q=documentid: (“doc1” OR “doc4”) Document “Users who bought this product “Field doc1 doc4 doc1 user1, user4, user5 user1 user4 user4 user5 doc2 user2, user3 user5 doc3 user4 doc4 user4, user5 Top Scoring Results (Most Similar Users): 1) user5 (2 shared likes) doc5 user4, user1 2) user4 (2 shared likes) … … 3) user 1 (1 shared like)
  • 31. Collaborative Filtering • Step 2: Search for docs “liked” by those similar users Most Similar Users: 1) user5 (2 shared likes) /solr/select/?q=userlikes: (“user5”^2 2) user4 (2 shared likes) OR “user4”^2 OR “user1”^1) 3) user 1 (1 shared like) Term Documents Top Recommended Documents: user1 doc1, doc5 1) doc1 (matches user4, user5, user1) user2 doc2 2) doc4 (matches user4, user5) 3) doc5 (matches user4, user1) user3 doc2 4) doc3 (matches user4) user4 doc1, doc3, doc4, doc5 //Doc 2 does not match user5 doc1, doc4 //above example ignores idf calculations … …
  • 32. Lot’s of Variations • Users –> Item(s) • User –> Item(s) –> Users • Item –> Users –> Item(s) • etc. User 1 User 2 User 3 User 4 … Item 1 X X X … Item 2 X X … Item 3 X X … Item 4 X … … … … … … … Note: Just because this example tags with “users” doesn’t mean you have to. You can map any entity to any other related entity and achieve a similar result.
  • 33. Comparison with Mahout • Recommendations are much easier for us to perform in Solr: – Data is already present and up-to-date – Doesn’t require writing significant code to make changes (just changing queries) – Recommendations are real-time as opposed to asynchronously processed off-line. – Allows easy utilization of any content and available functions to boost results • Our initial tests show our collaborative filtering approach in Solr significantly outperforms our Mahout tests in terms of results quality – Note: We believe that some portion of the quality issues we have with the Mahout implementation have to do with staleness of data due to the frequency with which our data is updated. • Our general take away: – We believe that Mahout might be able to return better matches than Solr with a lot of custom work, but it does not perform better for us out of the box. • Because we already scale… – Since we already have all of data indexed in Solr (tens to hundreds of millions of documents), there’s no need for us to rebuild a sparse matrix in Hadoop (your needs may be different).
  • 35. Hybrid Approaches • Not much to say here, I think you get the point. • /solr/select/?q=category:(”healthcare.nursing.oncology”^10 ”healthcare.nursing”^5 OR “healthcare”) OR title:”Nurse Educator”^15 AND _val_:”map(salary,40000,60000,10,0)”^5 AND _val_:”(recip(geodist(location, 40.7142, 74.0064),1,1,0))”) • Combining multiple approaches generally yields better overall results if done intelligently. Experimentation is key here.
  • 36. Important Considerations & Advanced Capabilities @ CareerBuilder
  • 37. Important Considerations @ CareerBuilder • Payload Scoring • Measuring Results Quality • Understanding our Users
  • 38. Custom Scoring with Payloads • In addition to boosting search terms and fields, content within the same field can also be boosted differently using Payloads (requires a custom scoring implementation): • Content Field: design [1] / engineer [1] / really [ ] / great [ ] / job [ ] / ten[3] / years[3] / experience[3] / careerbuilder [2] / design *2+, … Payload Bucket Mappings: jobtitle: bucket=[1] boost=10; company: bucket=[2] boost=4; jobdescription: bucket=[] weight=1; experience: bucket=[3] weight=1.5 We can pass in a parameter to solr at query time specifying the boost to apply to each bucket i.e. …&bucketWeights=1:10;2:4;3:1.5;default:1; • This allows us to map many relevancy buckets to search terms at index time and adjust the weighting at query time without having to search across hundreds of fields. • By making all scoring parameters overridable at query time, we are able to do A / B testing to consistently improve our relevancy model
  • 39. Measuring Results Quality • A/B Testing is key to understanding our search results quality. • Users are randomly divided between equal groups • Each group experiences a different algorithm for the duration of the test • We can measure “performance” of the algorithm based upon changes in user behavior: – For us, more job applications = more relevant results – For other companies, that might translate into products purchased, additional friends requested, or non-search pages viewed • We use this to test both keyword search results and also recommendations quality
  • 40. Understanding our Users (given limited information)
  • 41. Understanding Our Users • Machine learning algorithms can help us understand what matters most to different groups of users. Example: Willingness to relocate for a job (miles per percentile) 2,500 2,000 Title Examiners, Abstractors, and Searchers 1,500 1,000 Software Developers, Systems Software 500 Food Preparation Workers 0 1% 5% 10% 20% 25% 30% 40% 50% 60% 70% 75% 80% 90% 95%
  • 42. Key Takeaways • Recommendations can be as valuable or more than keyword search. • If your data fits in Solr then you have everything you need to build an industry-leading recommendation system • Even a single keyword can be enough to begin making meaningful recommendations. Build up intelligently from there.
  • 43. Contact Info  Trey Grainger trey.grainger@careerbuilder.com http://www.careerbuilder.com @treygrainger And yes, we are hiring – come chat with me if you are interested.