Apache MetaModel select by id from MongoDB

308 Views Asked by At

I am validating Apache MetaModel as a storage abstraction layer and experienced problem with primary key lookup in MongoDB.

As we know every document in mongo has unique _id column with ROWID type, and using metamodel I can't even to run query "select by id"

This query return no data, but I am 100% sure document with this id in collection:

DataSet ds = dc.query()
            .from("users")
            .selectAll()
            .where("_id").eq("56334c6fb38cfec169db2ccb")
            .execute();

Using 'id' as a pkey throws obvious "Could not find column: id"

DataSet ds = dc.query()
            .from("users")
            .selectAll()
            .where("id").eq("56334c6fb38cfec169db2ccb")
            .execute();

Filtering on other columns works fine. I have a gut feeling I am doing something wrong, could someone advise suggestions?

1

There are 1 best solutions below

2
On

It is a bug. I have reported an issue in MetaModel's JIRA: https://issues.apache.org/jira/browse/METAMODEL-211