0
votes
0answers
4 views

Retrieving a UTC datetime from a data source — putting it into a Joda DateTime object and persisting it to MongoDB. What is the best way?

I am pulling data from an external source into my program and it has an ISO8601 Date attached to it but one of our requirements is that the hour/minutes/seconds get set to zero. This happens before I ...
1
vote
1answer
20 views

Adding Joda DateTime to MongoDB — Can't Serialize

I am taking a DateTime object and trying to persist it into MongoDB. Is there a way to implement "Serializable" for Joda Time? Here is the error I am receiving java.lang.RuntimeException: ...
0
votes
0answers
15 views

Spring data mongoRepository Query sort

I was looking to see how I could introduce a sort into a Query annotation in a repository method that I have. I already saw this code in Google and here, but I could not make it works ...
0
votes
0answers
20 views

Deleting data from mongo db using morphia queries

I have one collection in mongo db called User_ReadOnly,in that user collection i have several entities like "_id": ObjectId("51b6bd23fa2bc0501bea4cf5"), "gender": "female", "email": ...
1
vote
3answers
23 views

Setting ttl on a mongoDB collection - in application or shell?

I would like to set the ttl for a collection once, what is the idiomatic way of achieving this when building a java application that uses mongoDB? Do ppl simply apply settings like these in the shell? ...
1
vote
1answer
27 views

ServletContext attributes and static properties

So, I'm trying to make a Mongo connection that remains persistent across several uses of the application (page accesses). I'm tired of all these connections building up during my testing, and I want ...
0
votes
0answers
12 views

Spring-Data does not find IndexFields for Indices created via MongoDB shell

we are using Spring-Data-Mongo to access our MongoDB from a Java application. In general everything works fine but I encountered one odd behavior. When initializing our Repositories in the Java code ...
0
votes
1answer
26 views

find by Object Id in Jongo

I know this question is incredibly basic... I'm sorry in advance. I can't do a 'find by ID' for Mongo using Jongo. I tried Iterator<MongoTest> all = ...
-2
votes
1answer
22 views

Create generic service class in java for reading the collection from mongodb [closed]

Everyone, I want to create a service class(a very generic) in java which will accept all the required parameters for reading a collection from MongoDb. and return JSON string as result.
1
vote
2answers
63 views

Recommend a NoSQL database to replace this MySQL database containing large objects and many attributes

I'm looking for an alternative database for MySQL (Engine = MyISAM). My Java application stores large objects with 250 - 300 attributes each. There are about 500 millions objects on a single MySQL ...
1
vote
0answers
34 views

difference in mongodb update/upsert performance between collections and capped collections

I have been playing a bit with mongoDb to check its performance. I have created a little test in Java with one small collection: public class ClientWord { @Id private ObjectId id; ...
1
vote
1answer
30 views

Can an instance of MongoClient be long running

This morning I found that my Java servlet (Tomcat 7) which interacts with Mongodb (using the standard Java Mongo driver) had failed after running for approximately 1.5 days. In the context listener ...
3
votes
0answers
64 views
+50

How to make numeric comparison when using morphia to perform an $elemMatch query

My document has the following structure: { "scores": [{ "scoreTitle": "environment", "scoreValue": 3, "scoreDescribe": "good" }, { "scoreTitle": "service", "scoreValue": 3, ...
0
votes
1answer
16 views

Grabbing String from Embedded MongoID in JSON Java Android

I am working on grabbing information from a JSON. The server responds with: { "id" : { "$id" : "515a4f1d03cfebb61800097b" }, "body" : "This is the body" } I can grab body by ...
0
votes
1answer
37 views

MongoDB java update a doument by a function with fields

I am using mongodb, with java, I have the following document structure : { _id : ... total_items : 34 avarage_cost : 54 } now i have an item with its cost, and i want to update my ...
0
votes
2answers
13 views

batch update in play-morphia

I'm using Play framework 1.2.5 and Play-Morphia module. I want to know if there's a way to update many objects at one Morphia query. I've found this example at ...
0
votes
1answer
16 views

don't open a new connexion on each request mongodb java driver

I'm using a mongoDb database with java-ee I have my connection object: public class MongoDb { static Mongo m; DB db; DBCollection coll; public MongoDb(String collection){ m = null; try { ...
2
votes
1answer
52 views

How to access binary data in mongoDB from scala (casbah)

I am new to mongoDB, so this may be a really stupid question... I am trying to access a rails mongo session store from scala. val sessions = MongoConnection("localhost", ...
3
votes
1answer
31 views

Converting (.net) BsonDocument string into a (java) DBObject

In a publishing flow I need to insert a DBObject into a mongo db collection using Java. I receive the object as a String, and this has been passed to me from a .NET application that used ...
0
votes
0answers
35 views

How to connect Java with MongoDB in Windows Azure's worker role?

I have a Spring RESTFul web service project that use "Spring Data MongoDB" library to connect with MongoDB database. After successfully testing with my local machine, I am ready to deploy on cloud ...
0
votes
1answer
25 views

Spring data mongo use OR in Query

Let´s see if somebody can help with this. I want use Repository of Spring Data mongodb, and I want use Query annotation to filter the find by value A=10 or A=20 @Query("{A: 10, A:20}") ...
0
votes
1answer
20 views

Mongodb cursor inconsistent behavior

I have a collection with over a billion documents. When I iterate over them with the cursor and do some processing, I don't get all the docs. However, if I just iterate over the collection and count, ...
0
votes
0answers
27 views

Spring data mongodb Find by nested attribute in document

Im using Spring data mongodb, and I was wondering how can I make a find using a nested attribute documents, using Repositories. Let´s imagine that I have this document: { A:"val", B:{a:1, ...
1
vote
1answer
22 views

mongodb query embedded doc key as date

Here is my mongodb document with embedded documents. The "events" is a list of documents (BasicDBList) in which each document is stored with key as some date (e.g. Jan 1, 2013) and value is a bunch of ...
0
votes
1answer
14 views

store array in mongoBb java

I am saving a BasicDBObject in my mongoDb collection BasicDBObject[] aBox = new BasicDBObject[5]; BasicDBObject obj = new BasicDBObject(); obj.append("box", aBox); for the moment this is a void ...
0
votes
0answers
14 views

geoHash -ing for close points on each side of the equator

I am working on a project (java using NetBeans) which at some point needs to process map data. I have got Esri shape files for whole UK and need to create one dimensional index using geoHash as ...
1
vote
1answer
30 views

Analysis of MongoDB and Badges system

We are developing a system which does some statistical analysis based on social networking data, eg: tweets, status updates etc. I was thinking to store user related information on a relational ...
0
votes
1answer
22 views

MongoDB Dates with Java/Morphia

This might be related to this other question but what happens to me is that when reading Dates using Morphia from a MongoDB instance on a server with a different timezone than my local machine it's ...
0
votes
0answers
30 views

Conver mysql join query to morphia mongodb

Currently, we've our application on Play 1.2.5 with MySQL on the backend. We're trying to port this system to MongoDB using Morphia. We're having problem while converting the MySQL Join Queries to ...
0
votes
1answer
30 views

bulk insert in mongodb with Java and Spring data inserts only one documment

I am trying to perform a bulk insert of an List of object defined with Spring data @Document(collection="feeds") public class Feed { @Id private String id; @Field (value="feed_url") ...
0
votes
1answer
33 views

Searching for tags in Mongodb java

I have 3 different collections, with different content in my script: image, audio and video. In each element I put in the database, I add a tag. When I am trying to search for the tags (of the files ...
0
votes
0answers
19 views

Installing Java app with mongodb username and password

I'm building a Java app that connects to a mongodb hosted with mongolab. Mongolab requires authentication. This app runs on people's local machines and connects directly to mongolab. Do I: Merely ...
-1
votes
2answers
27 views

MongoDB DBCollection.insert() returns null as WriteResult?

Will insert(List) return null? WriteResult result = collection.insert(List<DBObject>); result.getError() -->Throws NullPointeException In the above snippet, what may cause the return of ...
0
votes
0answers
19 views

How to know if a java Mongo driver is compatible with a given Mongo Server?

I am evaluation to upgrade my java-mongo-driver to 2.11.1 but I'm not sure if it's backwards compatible. The release notes doesn't specify the compatibility of the driver, so I can't be sure if I ...
0
votes
0answers
20 views

How to get records from mongodb which are nearer to some longitude and latitude?

I used mongodb to store longitude and latitude of places. I want documents (records) which are nearer to some particular longitude and latitude stored in mongodb. I used the following query to do ...
2
votes
0answers
51 views

Mongodb query on date has no results (java)

My mongodb query is not returning any results and I can't spot why. Here is the relevant contents of my data: > db.reports.find({},{endDate:1}) { "_id" : ObjectId("5182882ae4b032c67674c494"), ...
0
votes
1answer
52 views

converting JSON Structure to BasicDBObject

I want to convert the following json structure to BasicDBOject in java and insert into mongo db. My JSON structure is { "it": { "batch": "2013", "students": [ { ...
2
votes
1answer
270 views

Making spring-data-mongodb multi-tenant

In a post last august sbzoom proposed a solution to make spring-data-mongoDB multi-tenant: "You have to make your own RepositoryFactoryBean. Here is the example from the Spring Data MongoDB Reference ...
0
votes
1answer
34 views

Java code for getting data from SQL server to MongoDB

I have been struggling with my Mongo-SQL code for a while and still need your help :) I have a problem while transferring data from an SQL server database to MongoDB. My problem is that I can't do ...
0
votes
0answers
26 views

Mongodb 2.2 Disk reads after every 2000 documents

I have a mongodb collection that contains 2.2Million documents. I want to fetch all of these documents using Find command for one my sync process. I am fetching documents in batches of 100000 each. ...
0
votes
1answer
22 views

What do BSONObjects return when using a get method in Java?

Say I have a Mongo document that looks like this {'_id' : NumberLong(123), 'sites' : [{'One',1}, {'Two',2}] } If I have a BSONObject in Java that maps this, say boop, would a BSONObject or a ...
0
votes
1answer
36 views

Check a mongodb connection with Pentaho

I would like to check on my Pentaho (Kettle) transformation if the mongodb database is available. Currently, I have an error like this when I put a wrong configuration : 2013/04/30 17:10:07 - ...
0
votes
0answers
30 views

Morphia @PrePersist not exactly getting called before save()

I have a class in which I am modifying all string fields to replace the '.' character with " class MyClass { String name; // Map of URL to Page Title HashMap<String, String> ...
1
vote
1answer
57 views

MongoDB SELF JOIN query having 1 collection

I'd like to do something like SELECT e1.sender FROM email as e1, email as e2 WHERE e1.sender = e2.receiver; but in MongoDB. I found many forums about JOIN, which can be implemented via MapReduce in ...
0
votes
2answers
38 views

New to MongoDB. Errors while creating a collection [duplicate]

I am new to MongoDB. I am not able to create a collection. It gives a sentence in the mongo shell - "Display all 169 possibilities? (y or n)". The code is - db.Lead.insert( LeadID: 1, ...
0
votes
1answer
16 views

mongodb and java driver rebuild objects

I'm trying to understand how mongodb works and I have some questions. I understand how to delete, insert, update and select but I have some "best practice questions" 1) Did we have to create an ...
1
vote
2answers
95 views

Mongodb update using Java

I need help in updating MONGO DB. here is my document: Functions : { "cgi0-app" : { "calculatedConfigValues" : { "floor" : 0.0 , "ceiling" : 49.0 , ...
1
vote
1answer
42 views

Resolving subdocument types with Spring Data and MongoDB

I'm encountering an error with a Spring Data repository as it attempts to resolve a property expression: public interface ContractRepository extends MongoRepository<Contract,String> { ...
0
votes
2answers
39 views

mongodb javascript queries

currently I'm working on a project in Java, and I need to run the JavaScript Mongo queries using Java. I figured out I can do something like that using db.eval(). Problem is I have the following ...
0
votes
0answers
35 views

Raw javascript mongodb queries using db.eval() in java

currently I'm working on a project in JAVA, and I need to run the Javascript Mongo queries through JAVA, and I figured I can do something like that using db.eval() in java. Problem is I have the ...

1 2 3 4 5 17