• 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
  • Ron McLeod
  • Liutauras Vilda
  • Paul Clapham
  • paul wheaton
Sheriffs:
  • Tim Cooke
  • Devaka Cooray
  • Rob Spoor
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:

MongoDB-Java connection - Not able to query a collection from Java Program, getting socket exception

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm trying to query Mongocollection from Java Program. Connection is LDAP. Everything looks OK, till I create a MongoCursor object. But at the line where MongoCursor object is created, I'm getting socket exception as follows

INFO: Closed connection [connectionId{localValue:2}] to "Host:Port" because there was a socket exception raised by this connection.

Message-Exception authenticating MongoCredential{mechanism=PLAIN, userName='uname', source='dbname', password=hidden, mechanismProperties={}}



I'm wondering, Am I following the right way to query a collection, to retrieve documents (here I'm using 'create date' criteria). Why Am I getting socket excpetion?

Here is what I tried so far-

 
Greenhorn
Posts: 26
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Tan,
I think your collection has huge data and your search query is also returning huge data. Please check if you collection is indexed properly. Try to count records in your query and if count shows huge no of records then try to use skip and limit to get data data in batch.

Regards,
Vikas
 
machines help you to do more, but experience less. Experience this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic