• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

elasticsearch Mercurial plugin for windows not available

 
Ranch Hand
Posts: 48
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I need to integrate elastic search with mongodb for fulltext search.

I am following this tutorial but mercurial plugin is not available for windows.

url: https://www.digitalocean.com/community/tutorials/how-to-sync-transformed-data-from-mongodb-to-elasticsearch-with-transporter-on-ubuntu-14-04

whether there is another provision for the same or we only river plugin will work for it.

Thanks in advance.
 
Bartender
Posts: 1210
25
Android Python PHP C++ Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't see any obvious reason why Mercurial is being installed in that article. The only source being downloaded for building is from git.
What happens if you skip the Mercurial step?
 
shikha nirankari
Ranch Hand
Posts: 48
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what you would like to suggest? should I go with river plugin installation with mongodb installation with different replicas or I need some other plugin for the same.

Since I also see a link where they used Mongoosastic to integrate mongodb with elastic search

https://www.compose.io/articles/mongoosastic-the-power-of-mongodb-and-elasticsearch-together/

if I go only with river plugin installation then hit counts in the search always come as 0. My concern is to handle large documents for fulltext search. elasticsearch with mapper-attachments plugin supports small documents that too need encoding decoding with base64.

I have to implement with rest services for microservices architecture.

All suggestions are welcome. please suggest.
 
shikha nirankari
Ranch Hand
Posts: 48
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
have done elastic search integration with mongodb using url: https://github.com/richardwilly98/elasticsearch-river-mongodb/wiki#install-guide

but still in search hit counts always coming as 0. I m using elasticsearch version 1.4.2 and mongodb:3.7.0


one difference i faced while uploading doc to the mongodb using mongofiles , I have not find collection as a command , so it will create new collection using files.

command used by me: mongofiles --port 27017 -d testmongodb2 put testlargefiles.pdf


any suggestions which step i missed or where I m going wrong.

please help I m stucked here.


Thanks in advance
 
Karthik Shiraly
Bartender
Posts: 1210
25
Android Python PHP C++ Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have you looked at elasticsearch logs and statistics to see what could be going wrong?
Does the stats report say there are atleast some documents in the index?
Is the search phrase known to exist in the data being imported?
Surely, if import or indexing isn't working, there'll be telltale messages in its logs. Check the logs.
 
reply
    Bookmark Topic Watch Topic
  • New Topic