The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
mongodb connector - criteria definition
d4emueller
Member Posts: 4 Contributor I
Hi,
is there a description, how to write critera for mongodb connector ?
I wrote this snippet for Robomongo. There works. What are the diffs to RapidMiner mongodb connector?
Thanks for help!
db['mycollection'].find(
{
time: {
$gte: ISODate("2015-01-27T00:00:00.000Z"),
$lt : ISODate("2015-01-28T00:00:00.000Z")
},
code: '200',
path: {
$regex: '/.*pdf*/'
}
},
{
path : 1,
size : 1,
_id : 0
}).limit (100)
Regards
Ines
is there a description, how to write critera for mongodb connector ?
I wrote this snippet for Robomongo. There works. What are the diffs to RapidMiner mongodb connector?
Thanks for help!
db['mycollection'].find(
{
time: {
$gte: ISODate("2015-01-27T00:00:00.000Z"),
$lt : ISODate("2015-01-28T00:00:00.000Z")
},
code: '200',
path: {
$regex: '/.*pdf*/'
}
},
{
path : 1,
size : 1,
_id : 0
}).limit (100)
Regards
Ines
0
Answers
The Read MongoDB operator allows to specify both a query criteria object and a projection object, as well as to limit the results.
Thus, you should be able to reuse the JSON objects from your Robomongo query without further modifications.
Relevant Read MongoDB parameters:
mongodb instance: MyInstance
collection: mycollection
criteria: projection: limit: 100
skip: 0
Note that limit and skip are expert parameters that might be hidden by default.
You might also check out this Getting Started Guide that shows how to setup your MongoDB connection.
Best,
Michael