- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 pymongo 将对象保存到 mongodb。我对第一个对象没有任何问题,但是在尝试保存第二个对象时我得到了 pymongo.errors.DuplicateKeyError: E11000 duplicate key error collection: km_tracker.entries index: _id_ dup key: { : ObjectId('5b8ce80ebb822e06c8ecf1c7') }
我的保存功能:
def save_entries(entries):
entries['save_date'] = str(datetime.datetime.now())
db.entries.insert_one(entries)
回溯:
Traceback (most recent call last):
File "app.py", line 182, in <module>
main();
File "app.py", line 22, in main
new_entry()
File "app.py", line 77, in new_entry
review_information(entries)
File "app.py", line 178, in review_information
save_entries(entries)
File "app.py", line 93, in save_entries
db.entries.insert_one(entries)
File "C:\Users\someuser\AppData\Local\Programs\Python\Python37\lib\site-packages\pymongo\collection.py", line 693, in insert_one
session=session),
File "C:\Users\someuser\AppData\Local\Programs\Python\Python37\lib\site-packages\pymongo\collection.py", line 607, in _insert
bypass_doc_val, session)
File "C:\Users\someuser\AppData\Local\Programs\Python\Python37\lib\site-packages\pymongo\collection.py", line 595, in _insert_one
acknowledged, _insert_command, session)
File "C:\Users\someuser\AppData\Local\Programs\Python\Python37\lib\site-packages\pymongo\mongo_client.py", line 1243, in _retryable_write
return self._retry_with_session(retryable, func, s, None)
File "C:\Users\someuser\AppData\Local\Programs\Python\Python37\lib\site-packages\pymongo\mongo_client.py", line 1196, in _retry_with_session
return func(session, sock_info, retryable)
File "C:\Users\someuser\AppData\Local\Programs\Python\Python37\lib\site-packages\pymongo\collection.py", line 592, in _insert_command
_check_write_command_response(result)
File "C:\Users\someuser\AppData\Local\Programs\Python\Python37\lib\site-packages\pymongo\helpers.py", line 217, in _check_write_command_response
_raise_last_write_error(write_errors)
File "C:\Users\someuser\AppData\Local\Programs\Python\Python37\lib\site-packages\pymongo\helpers.py", line 198, in _raise_last_write_error
raise DuplicateKeyError(error.get("errmsg"), 11000, error)
pymongo.errors.DuplicateKeyError: E11000 duplicate key error collection: km_tracker.entries index: _id_ dup key: { : ObjectId('5b8ce6adbb822e40d431d444') }
第一个成功存入数据库的对象:
{
"_id" : ObjectId("5b8ce6adbb822e40d431d444"),
"reg_number" : "dfg",
"date" : "dfg",
"b_meter_indication" : "dfg",
"end_meter_indication" : "dfg",
"trip" : "dfg",
"start_address" : "dfg",
"stop_address" : "dfg",
"reason" : "dfg",
"driver" : "dfg",
"other" : "dfg",
"save_date" : "2018-09-03 09:45:49.340871"
}
第二个对象,由于重复键没有保存:
{'_id': ObjectId('5b8ce6adbb822e40d431d444'),
'b_meter_indication': 'rty',
'date': 'rty',
'driver': 'rty',
'end_meter_indication': 'rty',
'other': 'rty',
'reason': 'rty',
'reg_number': 'try',
'save_date': '2018-09-03 09:46:02.246101',
'start_address': 'rty',
'stop_address': 'rty',
'trip': 'rty'
}
因为我没有明确定义 _id
的值, 但让 pymongo 为我做这个,我不明白为什么它会分配以前的值 _id
到我当前的对象。在这种情况下,出于某种原因,pymongo 会不会认为第二个对象与第一个对象相同,从而给它相同的 _id
值(value)?
Python 版本:3.7.0MongoDB 版本 4.0PyMongo 版本:3.7.1
编辑:添加了使用 save_entries() 函数的函数
def edit_entry(entries):
print("Editing: {}".format(entries))
entry = input()
return entry
def review_information(entries):
print("Do you wish to edit something? (y/n)")
while edit != False or edit != False:
edit = input()
if edit == "Y" or edit == "y":
edit_entry(entries)
elif edit == "N" or edit == "n":
break
else:
print("Please provide a valid input")
continue
save_entries(entries)
最佳答案
I'm not explicitly defining the value of _id, but letting pymongo do this for me
这是因为当使用 insert_one() 将文档插入 MongoDB 时, insert_many() , 或 bulk_write() ,并且该文档不包含 _id
字段,PyMongo自动为您添加一个,设置为 ObjectId
的实例。
另见 FAQ: Why does PyMongo add an _id field to all of my documents?
I have no issues with the first object, but when trying to save a second object I get pymongo.errors.DuplicateKeyError
Python 没有显式按值传递和按引用传递语义,而是按名称传递值。列表和字典是可变对象,数字、字符串和元组是不可变对象(immutable对象)。
在您的情况下,本质上您是将相同的 entries
对象传递给 save_entries()
函数。 PyMongo insert_one()
通过添加 _id
字段修改了对象,然后您再次尝试保存该字段。然而,第二次保存已经包含 _id
字段,导致重复错误。
有几种方法可以处理这种情况:
save_entries()
之前的对象。 save_entries()
后从对象中删除 _id
键。即 del entries["_id"]
。 关于python - 为什么 pymongo 在对不同对象使用 insert_one 时会生成重复的 _id 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52186825/
这个问题已经有答案了: node.js mongodb .. the (immutable) field '_id' was found to have been altered (5 个回答) 已关
db.books.update({bookId:"123461"},{$set:{"bookPrice":"6.23"}}) 我收到错误: update { q: { bookId: "1234
使用典型的 _id 列并连接表并在创建游标时选择所有列,将导致包含多个 _id 列的游标。 要访问特定的 _id 列,则需要使用实际偏移量,而不是列名。 使用硬编码的偏移量可能会有问题,它使代码更难阅
我使用 ASP .NET MVC4 WebAPI 并且我有一些类(class) public class Recipe { [BsonId] [BsonRepresentation(B
我正在尝试为 MongoDB 中的 _id 字段使用 UUID。 我有一个包装器结构来保存我的记录,如下所示: type mongoWrapper struct { ID uuid.
在 CodeIgniter 的 MongoDB 中进行更新时,出现以下错误: Type: MongoWriteConcernException Message: localhost:27017: Af
我想启动分片。如您所知,分片键非常重要。我发现,MongoDB doesn't ensure unique _id field values when using a shard key other
当我在ES 6.3.2上使用以下内容进行搜索时,没有问题: {“查询”:{“match_phrase_prefix”:{“_ id”:“ZX-bLmsBFOiwdS-Iwr24”}}} 但是,当我在E
我想运行以下查询: Group.find({program: {$in: [...]}}).lean().select('_id') 然后不得到回复: [{_id: ...}, {_id: ...},
我已将我的 ID 重命名为 _id,但仍然得到列“_id”不存在 ...我错过了什么吗? MyDatabaseelper.java public class MyDatabaseHelper exte
所以当我使用 int location = cursor.getColumnIndex(_ID) 它总是返回零,尽管 long locationId = cursor.getlong(getColum
我有一个看起来像这样的路径 path: '/speakers/singleDetails/:_id' 和一个具有这样的字段的架构 speakerId: { type: String,
userSchema={ username: { type: String, required: true, unique: true }, password: {
我正在尝试使用 updateOne 方法更新文档: UpdateResult r = coll.updateOne( eq("_id", id), this.getMapper().m
例如: 我有一个收藏“故事”其中每个文档的形式为: { '_id': 'story': } 现在每当我有一个故事时,如果它已经存在于“故事”中,我想要它的“_id”,否则插入一个带有“故事
这是我的 users.js(routes) for(var zz =0;zz < d.length; zz++){ temp
我在 Nodejs 中有一个数组,其中包含需要检索的 mongoDB 文档的 document _id 值。因此,我需要以这样的方式查询 mongoDB,使其返回 _id 值与我想要传入查询的数组中至
正如您在 NodeJS 代码中看到的那样,我正在从 URL 中提供的 Postman token 中获取用户,但我正在努力从给定的 token 号中取回 _id 属性。我想要的是decoded._id
我是 Android 新手。我有一个 SQLite 后端,其中每一行都是唯一的(想想一个人)。然后,我在每个人的 ListView 中显示这些数据。单击 ListView 项时,它将转到 subvie
他们是否都引用了联系人的同一个唯一 contactId? 最佳答案 他们应该这样做,但不能保证联系人是否已同步或聚合。您可能想尝试使用 LOOKUP_KEY相反。 关于Android dev : Ph
我是一名优秀的程序员,十分优秀!