BSON stands for "Binary JSON". It is a computer data interchange format used mainly as a data storage and network transfer format in the MongoDB database.
0
votes
1answer
17 views
unresolved dependency org.mongodb#bson#2.5, bad organisation in sbt
I'm trying to use "org.apache.mahout" % "mahout-integration" % "0.7" as a dependency inside my play2 based web application.
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: ...
1
vote
2answers
50 views
Handling optional/empty data in MongoDB
I remember reading somewhere that the mongo engine was more confortable when the entire structure of a document was already in place in case of an update, so here is the question.
When dealing with ...
1
vote
1answer
28 views
Unexpected behaviour while adding an item to an array in a BSON document that has come from Mongoose query
after I get a result from mongoose, I am trying to add some more stuff to it, so I am adding a _ext field that is an extended replica of what i got from query:
[...]
var schema = new ...
0
votes
1answer
32 views
Serializing Immutable Value types with Mongo C# Driver
I have many immutable value type classes, for example EmailAddress, which ensure any non null instance is valid. I would like to control the serialization of these types of objects to be just the ...
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
61 views
How to convert between BSON and JSON, especially for those special objects?
I am not asking for any libraries to do so and I am just writing code for bson_to_json and json_to_bson.
so here is the BSON specification.
For regular double, doc, array, string, it is fine and it ...
0
votes
1answer
34 views
Can aggregate functions be used with a variable in the field name?
I have some documents that look like this:
{
(...stuff...)
something: {
first: {
0: 3,
1: 5,
2: 2
},
second: {
0: 1,
...
0
votes
1answer
38 views
Can I get more explanations for BSON?
I am trying to understand BSON via http://bsonspec.org/#/specification, but still some questions remain.
let's take an example from the web site above:
{"hello": "world"} → ...
0
votes
0answers
40 views
com.mongodb.DBObject / BSON serializer for java
Hi anyone knows of a Java library to help serialize/deserialize a com.mongodb.DBObject into a BSON binary and vise-versa?
1
vote
1answer
87 views
how to serialize ArrayBuffer into BSON object for websocket transfer in javascript
I want encode a javascript object with a ArrayBuffer element into BSON and transfer it over websocket. However the serialized BSON object is 10 time bigger than it should be.
The code is something ...
1
vote
0answers
44 views
using mongo-c-driver can not use regular expressions containing forward slash (/)
I am trying to use the C-API for MongoDB. I want to find records with a name matching a regular expression containing slashes (/). If I run the mongo command line I get 40 results for the query:
...
0
votes
1answer
96 views
MongoDB Java Driver - Use exists projection in find query
I want to get all documents where the field download does not exists
find{ "download" : {$exists: false}}
For Java I found an Example:
BasicDBObject neQuery = new BasicDBObject();
...
4
votes
1answer
81 views
Encoding custom python objects as BSON with pymongo
Is there a way to tell pymongo to use a custom encoder to convert python objects to BSON?
Specifically I need to convert numpy arrays into BSON. I know I can manually ensure every numpy array gets ...
0
votes
0answers
48 views
Using Java can one store BSON documents in MongoDB directly bypassing the DBObject API?
I think Jongo does it by using the Jackson pipeline to efficiently convert a POJO into the respective BSON, thus bypassing any intermediaries, like DBObject. However, it depends on Jackson 2.x (now ...
0
votes
1answer
16 views
How can I convert a MongoEngine Document object to BSON?
The Document class in MongoEngine does not seem to have a "to_bson" function:
from mongoengine import *
class MyDoc(Document):
foo = StringField()
bar = IntField()
doc = ...
0
votes
1answer
40 views
How to rename a Stored JavaScript in MongoDB?
Consider, I have a following Stored JavaScript in MongoDB
{_id: "sum",
value: function (x, y) { return x + y; }}
It is been created by following command in MongoDB shell
db.system.js.save({_id: ...
1
vote
2answers
65 views
How to create a JSON object from a BSON string which contains ISODate
I am trying to create a JSON object from a string which contains ISODate.
var teststring = '{ "_id" : "test001", "CreatedDate" : ISODate("2013-04-02T10:37:21.529Z") }';
...
2
votes
1answer
113 views
Understanding BSON Notation
I was trying to understand BSON Notations from the site BSON Site. However I was unable to understand the reason behind the correlations.
I also referred the following questions, but am not convinced ...
0
votes
1answer
104 views
Deserializing from MongoDB Enumerable as ICollection<T>
I have the following issue deserializing a TwitterStatus class in MongoDB, here is a failing unit test using the MongoDB C# driver 1.8.0.124 and TweetSharp 2.0:
using ...
0
votes
1answer
54 views
MongoDB query sort count
Hi I have 2 Game records:
game 1 with a list of players p1(alice), p2(bob), p3(matt), p4(tom)
game 2 with a list of players p1(alice), p2(bob), p3(jack), p4(tom)
I'd like to query my MongoDB ...
0
votes
2answers
127 views
Bulk loading MongoDB database from Java/Groovy for testing
I've got an existing Grails/MongoDB application that I am adding some automated tests to. I want those tests to be executed against a specific set of data in a Mongo collection. I want the tests to ...
0
votes
0answers
53 views
BSON library for Java/Scala that reads content right from disc
I'm looking for a BSON library for Java/Scala that can read really big (bigger than RAM) BSON file. It means that I don't want to read whole file at once, but only fragment-by-fragment. What is more I ...
4
votes
3answers
102 views
Is there a Javascript object notation format leaner than JSON/BSON?
Are there any good serialization/deserialization format for simple Javascript object trees that have a significantly smaller footprint than JSON does? BSON is not very impressive.
The redundant ...
1
vote
1answer
190 views
MongoDB Single Document size limit is 16MB
Known Information: Its is know that MongoDB stores in BSON (Binary JSON) and the maximum BSON document size is 16MB.
Question: Why 16MB itself why not 32MB or 64MB or still more and where exactly the ...
0
votes
1answer
124 views
Logging Multiple JSON Objects to a Single File - File Format
I have a solution where I need to be able to log multiple JSON Objects to a file. Essentially doing one log file per day. What is the easiest way to write (and later read) these from a single file?
...
3
votes
1answer
401 views
Unable to install bson_ext 1.8.2 gem
I am unable to install the bson_ext 1.8.2 gem in my mongo project directory.
In specific I tried running bundle install and gem install bson_ext -v '1.8.2'
I tried other solutions present on the ...
0
votes
0answers
64 views
MongoDB Schema to track transformations and log process
I am redesigning a very normalized database using the much more flexible MongoDB. The current problem is that the existing structure doesn't support the new processes being implemented without ...
0
votes
1answer
63 views
Using php, how to save a smaller than 16mb images in mongoDB using BSON
I need some help:
I am creating a web application in php and uses the database mongodb.
Because it is a bank nosql got the idea that I need to save the images in the proper database.
Research in ...
0
votes
2answers
148 views
Processing array of generic BSON documents with MongoDB C++ driver
I have the following document in my MongoDB test database:
> db.a.find().pretty()
{
"_id" : ObjectId("5113d680732fb764c4464fdf"),
"x" : [
{
"a" : 1,
...
2
votes
1answer
151 views
How do I access subdocuments in MongoDB queries?
So I have the following code. I need it to run in the MongoDB shell. It queries the database for people with their attribute marked as true. Now I am having trouble because I do not know how to change ...
2
votes
1answer
148 views
Error with mongodb. Missing “}” after property list
with the following code I am getting this error:
SyntaxError: missing } after property list <shell>:3
Does anyone know what I did wrong? The curly braces seem balanced so I am wondering if I ...
1
vote
1answer
79 views
Comparing geospatial paths with MongoDB
I'm working on a mobile app that tracks a user's location at regular intervals to allow him to plot the path of a journey on a map. We'd like to add an optional feature that will tell him what other ...
0
votes
3answers
260 views
Worrying Invalid BSONObj errors when running db.stats() on a production MongoDB
Our production database (2.2.1 on 64bit debian) is throwing the following error below when we run db.stats():
> db.stats()
{
"errmsg" : "exception: Invalid BSONObj size: 0 (0x00000000) first ...
2
votes
1answer
379 views
npm install mongodb arised error
i just try to learn mongodb , when i try to install mongodb for node , i got the error as below shown.
By the way ,my enviroment:ubuntu 10.04 + node v0.6.9.Also i use the nvm ,which switch the node ...
1
vote
1answer
111 views
Mongodb error while updating document: cannot change _id of a document
I'm doing a rest api to exchange data between a mongo database and a web app. These data are json formatted.
I have a trouble when it comes to update a document: cannot change _id of a document.
As ...
0
votes
0answers
95 views
Storing external libs' objects with ReactiveMongo
I am trying to write a play2.1 application using MongoDB and ReactiveMongo. one of my models have members of an external library (specifically SecureSocial userid and passwordinfo, but generally).
my ...
0
votes
1answer
46 views
How do I configure the representation of an array of ObjectIds with BsonClassMap?
Consider the following C# class:
public class Role
{
public string Id { get; set; }
public IEnumerable<string> Users { get; set; }
}
How do I configure that Users maps to an array of ...
0
votes
1answer
249 views
Mongodb import error
I'm ran into a problem using dump/restore to move a MongoDB database from my local machine to the MongoHQ.com. When I restore the dump to MongoHQ it is missing about 10% of the documents with no ...
1
vote
1answer
267 views
Python & MongoDB - How to find by BinData type
I am new to MongoDB. Anyway, I am trying to save some data that is encrypted and base64 encoded.
data = b64encode(self.iv + AES.new(self.key, self.mode, self.iv).encrypt(self.pad2(self.data)))
...
0
votes
0answers
47 views
How to implement bson producer/consumer for resteasy
We're developing a service that uses the resteasy framework. It works fine with XML and json application/content-types. However, we need to use one more format: bson.
I installed the bson4jackson ...
1
vote
1answer
90 views
valgrind reports uninitialised value in BSONObj::toString with a simple BSON object created with GENOID
Using valgrind on a very simple example from the C++ driver of mongodb, it appears that something is wrong as soon as we use GENOID explicitly in the definition of a BSONObj. Here is an example that ...
2
votes
1answer
332 views
Converting Python class object instance to mongodb BSON string
Does anyone know of a Python library that can convert a class object to a mongodb BSON string? Currently my only solution is to convert the class object to JSON and then JSON to BSON.
0
votes
0answers
130 views
mongo query raises a BSONElement: bad type 65
We're running into a situation where documents that exist in our MongoDB can't be queried for without resulting in:
db.collection.find({"_id":ObjectId("50d393be70a580280b117ea5")})
Wed Jan 2 ...
1
vote
0answers
137 views
Erlang MongoDB Bson Undefined function Mongo
I have a problem with mongodb driver.
When I install mongodb-master and try the tutorial from official README file, in the line > {ok, Conn} = mongo:connect(Host). the shell gave me the following ...
1
vote
1answer
563 views
MongoDB store JSON String via Java
There are multiple tutorials like this and this which describes saving JSON data using JSON.parse method which returns DBObject. Though it is very simple and brief way of saving JSON data what I ...
1
vote
1answer
80 views
version tolerant serialization with mongo db objects
I am a .net c# developer and I am currently exploring integration with a mongo db database. This database will be the backend to a mvc database.
CRUD operation will be performed on the database from ...
2
votes
3answers
407 views
Can't install js-bson
I am using Windows 7 64bit, trying to install bson as a dependencie of mongodb.
I get this error:
npm WARN package.json Wochenplaner@0.0.1 No README.md file found!
npm http GET ...
1
vote
3answers
782 views
MongoDB, using group by aggregate framework to get unique strings
I'm trying to use the aggregation framework to group a lot of strings together to indentify the unique ones. I must also keep some information about the rest of the fields. This would be analogous to ...
2
votes
1answer
110 views
mongoose: shorten attribute names of node.js models for storage
In C# it is possible to use the MongoDB driver to define a custom BSONElement Name to each attribute in your data model, in order to shorten its stored name, such as
[BsonElement("n")]
public String ...
1
vote
1answer
195 views
How to serialize GUID as native UUID in BSON using JSON.NET
JSON.NET does not seem to want to serialize GUIDs as native BSON UUIDs, and instead is outputting GUIDs as strings.
I have tested generating BSON from both a JObject (verifying prior to serialization ...


