- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个包含 2 个分片和以下数据的 mongos 设置:
for (var i = 1; i <= 1000; i++) {
db.items.insert({item: "a", i_type: "x", i_id: i, price: i * 50});
db.items.insert({item: "a", i_type: "y", i_id: i, price: i * 50});
db.items.insert({item: "b", i_type: "x", i_id: i, price: i * 50});
db.items.insert({item: "b", i_type: "y", i_id: i, price: i * 50});
}
db.items.createIndex({item: 1, i_type: 1, i_id: 1}, {unique: true})
db.items.createIndex({item: 1, i_type: 1, price: 1})
sh.enableSharding("test")
sh.shardCollection("test.items", {item: 1, i_type: 1})
我运行这个:
db.items.find(
{item: "a", i_type: {$in: ["x", "y"]}},
{_id: 0, item: 1, i_type: 1}
).sort({price: 1}).limit(10).explain("executionStats")
并获取以下executionStats
:
"nReturned" : NumberInt(10),
"executionTimeMillis" : NumberInt(22),
"totalKeysExamined" : NumberInt(2000),
"totalDocsExamined" : NumberInt(2000),
"executionStages" : {
"stage" : "SINGLE_SHARD",
"nReturned" : NumberInt(10),
"executionTimeMillis" : NumberInt(22),
"totalKeysExamined" : NumberInt(2000),
"totalDocsExamined" : NumberInt(2000),
"totalChildMillis" : NumberLong(21),
"shards" : [
{
"shardName" : "rs1",
"executionSuccess" : true,
"executionStages" : {
"stage" : "PROJECTION",
"nReturned" : NumberInt(10),
"executionTimeMillisEstimate" : NumberInt(0),
"works" : NumberInt(2013),
"advanced" : NumberInt(10),
"needTime" : NumberInt(2002),
"needFetch" : NumberInt(0),
"saveState" : NumberInt(47),
"restoreState" : NumberInt(47),
"isEOF" : NumberInt(1),
"invalidates" : NumberInt(0),
"transformBy" : {
"_id" : NumberInt(0),
"item" : NumberInt(1),
"i_type" : NumberInt(1)
},
"inputStage" : {
"stage" : "SORT",
"nReturned" : NumberInt(10),
"executionTimeMillisEstimate" : NumberInt(0),
"works" : NumberInt(2013),
"advanced" : NumberInt(10),
"needTime" : NumberInt(2001),
"needFetch" : NumberInt(0),
"saveState" : NumberInt(47),
"restoreState" : NumberInt(47),
"isEOF" : NumberInt(1),
"invalidates" : NumberInt(0),
"sortPattern" : {
"price" : NumberInt(1)
},
"memUsage" : NumberInt(850),
"memLimit" : NumberInt(33554432),
"limitAmount" : NumberInt(10),
"inputStage" : {
"stage" : "FETCH",
"nReturned" : NumberInt(2000),
"executionTimeMillisEstimate" : NumberInt(0),
"works" : NumberInt(2001),
"advanced" : NumberInt(2000),
"needTime" : NumberInt(0),
"needFetch" : NumberInt(0),
"saveState" : NumberInt(47),
"restoreState" : NumberInt(47),
"isEOF" : NumberInt(1),
"invalidates" : NumberInt(0),
"docsExamined" : NumberInt(2000),
"alreadyHasObj" : NumberInt(0),
"inputStage" : {
"stage" : "SHARDING_FILTER",
"nReturned" : NumberInt(2000),
"executionTimeMillisEstimate" : NumberInt(0),
"works" : NumberInt(2001),
"advanced" : NumberInt(2000),
"needTime" : NumberInt(0),
"needFetch" : NumberInt(0),
"saveState" : NumberInt(47),
"restoreState" : NumberInt(47),
"isEOF" : NumberInt(1),
"invalidates" : NumberInt(0),
"chunkSkips" : NumberInt(0),
"inputStage" : {
"stage" : "IXSCAN",
"nReturned" : NumberInt(2000),
"executionTimeMillisEstimate" : NumberInt(0),
"works" : NumberInt(2001),
"advanced" : NumberInt(2000),
"needTime" : NumberInt(0),
"needFetch" : NumberInt(0),
"saveState" : NumberInt(47),
"restoreState" : NumberInt(47),
"isEOF" : NumberInt(1),
"invalidates" : NumberInt(0),
"keyPattern" : {
"item" : NumberInt(1),
"i_type" : NumberInt(1),
"price" : NumberInt(1)
},
"indexName" : "item_1_i_type_1_price_1",
"isMultiKey" : false,
"direction" : "forward",
"indexBounds" : {
"item" : [
"[\"a\", \"a\"]"
],
"i_type" : [
"[\"x\", \"x\"]",
"[\"y\", \"y\"]"
],
"price" : [
"[MinKey, MaxKey]"
]
},
"keysExamined" : NumberInt(2000),
"dupsTested" : NumberInt(0),
"dupsDropped" : NumberInt(0),
"seenInvalidated" : NumberInt(0),
"matchTested" : NumberInt(0)
}
}
}
}
}
}
]
}
我很难理解为什么所有键都包含 {item: "a", i_type: "x"}
和 {item: "a", i_type: "y"}
需要在分片上进行检查。解释表明它正在使用适当的索引。
如果我在文档所在的副本集上运行相同的查询,我的 totalKeysExamined
是 10。如果我在 mongos 上删除单个 i_type
的排序或查询totalKeysExamined
为 10(或 11,具体取决于自动平衡)。所有这些查询计划都有 LIMIT
的 executionStage
,我在上面发布的解释中明显缺失了这一点。
根据自动平衡器决定做事的方式,层次结构中的第一个 executionStage
可能是 SHARD_MERGE_SORT
而不是 SINGLE_SHARD
,但即使如果查询需要从两个分片获取信息,我假设只需要检查 20 个键(每个分片 10 个)。
这是我遇到的 mongos 的局限性,我需要改进对分片键和索引的选择,还是完全不同的情况?
最佳答案
显式 $or
以我期望的方式构建查询计划。我已经提交了 bug report与此问题相关。
db.items.find(
{$or: [{item: "a", i_type: "x"}, {item: "a", i_type: "y"}]},
{_id: 0, item: 1, i_type: 1}
).sort({price: 1}).limit(10).explain("executionStats")
关于mongodb - 为什么要检查具有排序和限制的索引 mongos 查询的所有键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33789190/
我有一个 ServiceBusQueue(SBQ),它获取大量消息负载。我有一个具有 accessRights(manage) 的 ServiceBusTrigger(SBT),它不断轮询来自 SBQ
在下面给出的结果集中,有 2 个唯一用户 (id),并且查询中可能会出现更多此类用户: 这是多连接查询: select id, name, col1Code, col2Code, col2Va
我正在用 Python 2.7.3 编写一个带有 GRequests 的小脚本和 lxml 可以让我从各种网站收集一些收藏卡价格并进行比较。问题是其中一个网站限制了请求的数量,如果我超过它,就会发回
我想知道何时实际使用删除级联或删除限制以及更新级联或更新限制。我对使用它们或在我的数据库中应用感到很困惑。 最佳答案 在外键约束上使用级联运算符是一个热门话题。 理论上,如果您知道删除父对象也将自动删
下面是我的输出,我只想显示那些重复的名字。每个名字都是飞行员,数字是飞行员驾驶的飞机类型。我想显示驾驶不止一架飞机的飞行员的姓名。我正在使用 sql*plus PIL_PILOTNAME
我正在评估不同的移动框架,我认为 nativescript 是一个不错的选择。但我不知道开发过程是否存在限制。例如,我对样式有限制(这并不重要),但我想知道将来我是否可以有限制并且不能使用某些 nat
我正在尝试使用 grails 数据绑定(bind)将一些表单参数映射到我的模型中,但我认为在映射嵌入式集合方面可能存在一些限制。 例如,如果我提交一些这样的参数,那么映射工作正常: //this wo
是否可以将 django 自过滤器起的时间限制为 7 天。如果日期超过 7 天,则不应用过滤器 最佳答案 timesince 的源代码位于 django/django/utils/timesince.
我想在我的网站上嵌入一个 PayPal 捐赠按钮。但问题是我住在伊朗——这个国家受到制裁,人们不使用国际银行账户或主要信用卡。 有什么想法吗?请帮忙! 问候 沮丧 最佳答案 您可以在伊朗境内使用为伊朗
这是我的查询 select PhoneNumber as _data,PhoneType as _type from contact_phonenumbers where ContactID = 3
这个问题在这里已经有了答案: What is the maximum number of parameters passed to $in query in MongoDB? (4 个答案) 关闭
我的一个项目的 AndroidManifest.xml 变得越来越大(> 1000 行),因为我必须对某些文件类型使用react并且涵盖所有情况变得越来越复杂。我想知道 list 大小是否有任何限制。
在使用 Sybase、Infomix、DB2 等其他数据库产品多年后使用 MySQL 5.1 Enterprise 时;我遇到了 MySQL 不会做的事情。例如,它只能为 SELECT 查询生成 EX
这个问题在这里已经有了答案: What is the maximum number of parameters passed to $in query in MongoDB? (4 个回答) 关闭5年
通常我们是在{$apache}/conf/httpd.conf中设置Apache的参数,然而我们并没有发现可以设置日志文件大小的配置指令,通过参考http://httpd.apache.org/do
我正在搜索最大的 Android SharedPreferences 键值对,但找不到任何好的答案。其次,我想问一下,如果我有一个键,它的字符串值限制是多少。多少字符可以放入其中。如果我需要频繁更改值
我目前正在试验 SoundCloud API,并注意到我对/tracks 资源的 GET 请求一次从不返回超过 200 个结果。关于这个的几个问题: 这个限制是故意的吗? 有没有办法增加这个限制? 如
我正在与一家名为 Dwolla 的金融技术公司合作,该公司提供了一个 API,用于将银行信息附加到用户并收取/发送 ACH 付款。 他们需要我将我的 TLS 最低版本升级到 1.2(禁用 TLS 1.
我在 PHP 中有一个多维数组,如下所示: $array = Array ( [0] => Array ( [bill] => 1 ) [1] => Array ( [
我在获取下一个查询的第一行时遇到了问题: Select mar.Title MarketTitle, ololo.NUMBER, ololo.Title from Markets mar JOIN(
我是一名优秀的程序员,十分优秀!