- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
此示例聚合将抛出 IllegalArgumentException
无效引用“角色”!
每次在投影阶段后重命名字段后,我们都会遇到这个问题。
final Aggregation aggregation = newAggregation(
// We only like to have the "company" and "empolyee.role" renamed to "role"
project("company")
.and("employee.role").as("role"),
// Group by the **renamed** "role"
group("role").count().as("count"), // this will fail because "role" is an invalid reference.
limit(2)
);
return aggregation;
我们正在处理的 JSON 如下所示:
{
// some fields
company : {
// some fields
}
employee : {
role : {
// some fields
}
}
}
想法:
Here奥利弗说
It's important to understand that you define aggregations in terms of type properties, not document field names.
这就是我们得到异常的原因吗?如果是这样,如何使用漂亮的聚合 api spring 数据提供。
更新::
这是我在 1.5.0.M1 版本中获得的 Stacktrace:
java.lang.IllegalArgumentException: Invalid reference 'role'!
at org.springframework.data.mongodb.core.aggregation.ExposedFieldsAggregationOperationContext.getReference(ExposedFieldsAggregationOperationContext.java:78)
at org.springframework.data.mongodb.core.aggregation.ExposedFieldsAggregationOperationContext.getReference(ExposedFieldsAggregationOperationContext.java:62)
at org.springframework.data.mongodb.core.aggregation.GroupOperation.toDBObject(GroupOperation.java:292)
at org.springframework.data.mongodb.core.aggregation.Aggregation.toDbObject(Aggregation.java:247)
at com.xxx.report.adapter.AggrigateByTopic.aggrigateBy(AggrigateByTopic.java:38)
at com.xxx.report.adapter.AggrigateByTopicTest.shouldAggrigate(AggrigateByTopicTest.java:38)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74)
at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:83)
at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:232)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:89)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:175)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
最佳答案
确实,实现“不喜欢”您在此处使用的字段别名类型,但在最严格的解释中,您所做的没有多大意义。
你的陈述应该是这样的:
final Aggregation aggregation = newAggregation(
group("employee.role").count().as("count"),
sort(Sort.Direction.DESC,"count"),
limit(2)
);
System.out.println(aggregation);
产生管道为:
{
"aggregate" : "__collection__",
"pipeline" : [
{ "$group" : {
"_id" : "$employee.role",
"count" : { "$sum" : 1}
}},
{ "$sort" : { "count" : -1} },
{ "$limit" : 2}
]
}
重点是您的 $project
在这里的用法实际上并没有做任何事情,除了选择一个您以后不使用的字段,并为另一个字段创建别名您实际上并没有真正使用的字段,因为它只是成为您分组的 _id
字段。还要注意 $sort
的使用,因为它对 $limit
没有多大意义,除非你有事情按预期的顺序进行,$group
本身不会这样做。
至于解释“属性”的概念,我不是很喜欢,那么你可以考虑下面的代码:
final Aggregation aggregation = newAggregation(
group("country","employee.role").count().as("count"),
group("employee.role","count").count().as("totalCount"),
sort(Sort.Direction.DESC,"totalCount"),
limit(2)
);
System.out.println(aggregation);
然后构建的管道将如下所示:
{
"aggregate" : "__collection__",
"pipeline" : [
{ "$group" : {
"_id" : {
"country" : "$country" ,
"role" : "$employee.role"
},
"count" : { "$sum" : 1}
}},
{ "$group" : {
"_id" : {
"role" : "$_id.employee.role" ,
"count" : "$count"
},
"totalCount" : { "$sum" : 1}
}},
{ "$sort" : { "totalCount" : -1} },
{ "$limit" : 2 }
]
}
因此,虽然这将无一异常(exception)地运行到输出转储,但生成的管道中仍然存在问题。虽然第一个 $group
语句压缩了子文档字段的别名,如果此时一切正常,它是第二个 $group
引入问题的阶段。
除非您通过完整的“employee.role”表示法将该字段作为原始文档的属性引用,否则构建器方法只是“不开心”。虽然它确实解决了这现在将成为前一阶段的 _id
字段的一部分,但它完全忘记了该字段是别名的。
对于我的两分钱,这是错误的行为,也是我不喜欢构建器的一个重要原因。
所以你可以使用它们,但我认为设计还不完全,还有一些缺陷。同样,为了我的钱,只使用 DBObject
类型来构建管道并完成它似乎更安全、更灵活。至少你知道你总能准确理解你的意思。
关于java - 投影后进行组聚合时引用无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23372114/
我有一个 Cassandra 集群,里面有 4 个表和数据。 我想使用聚合函数(sum,max ...)发出请求,但我在这里读到这是不可能的: http://www.datastax.com/docu
我有以下两张表 Table: items ID | TITLE 249 | One 250 | Two 251 | Three 我投票给这些: Table: votes VID | IID | u
这个问题在这里已经有了答案: Update MongoDB field using value of another field (12 个答案) 关闭 3 年前。 我想根据另一个“源”集合的文档中
我的收藏包含以下文件。我想使用聚合来计算里面有多少客户,但我遇到了一些问题。我可以获得总行数,但不能获得总(唯一)客户。 [{ _id: "n001", channel: "Kalip
我有下表 Id Letter 1001 A 1001 H 1001 H 1001 H 1001 B 1001 H 1001 H 1001
得到一列的表 ABC。 “创建”的日期列。所以样本值就像; created 2009-06-18 13:56:00 2009-06-18 12:56:00 2009-06-17 14:02:0
我有一个带有数组字段的集合: {[ name:String buyPrice:Int sellPrice:Int ]} 我试图找到最低和最高买入/卖出价格。在某些条目中,买入或卖出价格为零
我有以下问题: 在我的 mongo db 中,我有以下结构: { "instanceId": "12", "eventId": "0-1b", "activityType":
下面给出的是我要在其上触发聚合查询的 Elasticsearch 文档。 { "id": 1, "attributes": [ { "fieldId": 1,
我正在使用 Django 的 aggregate query expression总计一些值。最终值是一个除法表达式,有时可能以零作为分母。如果是这种情况,我需要一种方法来逃避,以便它只返回 0。 我
我正在学习核心数据,特别是聚合。 当前我想要做的事情:计算表中在某些条件上具有逆关系的多对关系的记录数。 目前我正在这样做: NSExpression *ex = [NSExpression expr
我需要有关 Delphi 中的 ClientDatasets 的一些帮助。 我想要实现的是一个显示客户的网格,其中一列显示每个客户的订单数量。我将 ClientDataset 放在表单上并从 Delp
我的集合有 10M 个文档,并且有一个名为 movieId 的字段;该文档具有以下结构: { "_id" : ObjectId("589bed43e3d78e89bfd9b779"), "us
这个问题已经有答案了: What is the difference between association, aggregation and composition? (21 个回答) 已关闭 9
我在 elasticsearch 中有一些类似于这些示例的文档: { "id": ">", "list": [ "a", "b", "c" ] } { "id"
我正在做一些聚合。但是结果完全不是我所期望的,似乎它们没有聚合索引中与我的查询匹配的所有文档,在这种情况下 - 它有什么好处? 例如,首先我做这个查询: {"index":"datalayer","t
假设我在 ES 中有这些数据。 | KEY | value | |:-----------|------------:| | A |
可能在我的文档中,我有一个被分析的文本字段。我只是在ElasticSearch AggregationAPI中迷路了。我需要2种不同情况的支持: 情况A)结果是带有计数标记(条款)的篮子下降。 情况B
我正在为网上商店构建多面过滤功能,如下所示: Filter on Brand: [ ] LG (10) [ ] Apple (5) [ ] HTC (3) Filter on OS: [ ] Andr
我有一个父/子关系并且正在搜索 child 。 是否可以在父属性上创建聚合? 例如parent 是 POST,children 是 COMMENT。如果父项具有“类别”属性,是否可以搜索 COMMEN
我是一名优秀的程序员,十分优秀!