Questions tagged [elastic-search]

5 questions
7
votes
3 answers

Best way to vectorise names and addresses for similarity searching?

I have a large dataset of around 9 million people with names and addresses. Given quirks of the process used to get the data it is highly likely that a person is in the dataset more than once, with subtle differences between each record. I want to…
Sandy Lee
  • 267
  • 2
  • 9
1
vote
0 answers

How does google indexes text documents?

Unfortunately, I didn't find much information surrounding this, no pdfs, no textbooks that discuss this in just enough detail. And I didn't see any forums posts about this. I just want to learn an example scenario of indexing in big data. I've found…
jewloa
  • 11
  • 1
0
votes
1 answer

How Natural language processing and elasticsearch are related

I got call from a recruiter for an elasticsearch job. I am not sure how these 2 are related. Can anyone suggest and provide example use case?
StatguyUser
  • 885
  • 1
  • 8
  • 20
0
votes
0 answers

Cannot change ownership of elasticsearch directory in colab

I was trying to install elastic search in Google Colab (following this article - https://colab.research.google.com/github/tensorflow/io/blob/master/docs/tutorials/elasticsearch.ipynb), and it seems that to run the service, you need to change the…
CS8867
  • 1
0
votes
1 answer

Are index and type redundant after elasticsearch 6.0?

After elasticsearch 6.0, 1 index contains only 1 type. So what's the difference between type and index? Books say that-: Index~Database Type~Table Document~Record And if you see this figure, type and index seems redundant to each other, when 1…