我有一个 JSON 文件(来自 Mongo 大学),里面有一些 JSON
但是,当我运行导入时:
PS C:\Program Files\MongoDB\Server\3.0\bin> .\mongoimport.exe -d blog -c posts --drop posts.json
我收到一个错误,没有导入任何内容:
2016-04-15T22:21:27.771+0100 connected to: localhost
2016-04-15T22:21:27.772+0100 dropping: blog.posts
2016-04-15T22:21:28.635+0100 error inserting documents: lost connection to server
2016-04-15T22:21:28.635+0100 Failed: lost connection to server
2016-04-15T22:21:28.640+0100 imported 0 documents
来自服务器:
2016-04-15T22:21:22.070+0100 I CONTROL [initandlisten] MongoDB starting : pid=8860 port=27017 dbpath=F:\Mongo\ 64-bit host=Plod
2016-04-15T22:21:22.071+0100 I CONTROL [initandlisten] targetMinOS: Windows Server 2003 SP2
2016-04-15T22:21:22.072+0100 I CONTROL [initandlisten] db version v3.0.11
2016-04-15T22:21:22.072+0100 I CONTROL [initandlisten] git version: 48f8b49dc30cc2485c6c1f3db31b723258fcbf39
2016-04-15T22:21:22.072+0100 I CONTROL [initandlisten] build info: windows sys.getwindowsversion(major=6, minor=1, build=7601, pl
atform=2, service_pack='Service Pack 1') BOOST_LIB_VERSION=1_49
2016-04-15T22:21:22.072+0100 I CONTROL [initandlisten] allocator: tcmalloc
2016-04-15T22:21:22.073+0100 I CONTROL [initandlisten] options: { storage: { dbPath: "F:\Mongo\" } }
2016-04-15T22:21:22.079+0100 I JOURNAL [initandlisten] journal dir=F:\Mongo\journal
2016-04-15T22:21:22.079+0100 I JOURNAL [initandlisten] recover : no journal files present, no recovery needed
2016-04-15T22:21:22.117+0100 I JOURNAL [durability] Durability thread started
2016-04-15T22:21:22.118+0100 I JOURNAL [journal writer] Journal writer thread started
2016-04-15T22:21:22.234+0100 I NETWORK [initandlisten] waiting for connections on port 27017
2016-04-15T22:21:27.770+0100 I NETWORK [initandlisten] connection accepted from 127.0.0.1:5047 #1 (1 connection now open)
2016-04-15T22:21:27.772+0100 I COMMAND [conn1] CMD: drop blog.posts
2016-04-15T22:21:28.084+0100 I NETWORK [initandlisten] connection accepted from 127.0.0.1:5048 #2 (2 connections now open)
2016-04-15T22:21:28.231+0100 I - [conn2] Assertion: 10334:BSONObj size: 33609065 (0x200D569) is invalid. Size must be betwe
en 0 and 16793600(16MB) First element: insert: "posts"
2016-04-15T22:21:28.610+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\util\stacktrace_win.cpp(175) mon
go::printStackTrace+0x43
2016-04-15T22:21:28.611+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\util\log.cpp(134) mon
go::logContext+0x8f
2016-04-15T22:21:28.611+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\util\assert_util.cpp(219) mon
go::msgasserted+0xce
2016-04-15T22:21:28.611+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\util\assert_util.cpp(211) mon
go::msgasserted+0x13
2016-04-15T22:21:28.612+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\bson\bsonobj.cpp(73) mon
go::BSONObj::_assertInvalid+0x40c
2016-04-15T22:21:28.612+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\db\dbmessage.cpp(131) mon
go::DbMessage::nextJsObj+0x1a0
2016-04-15T22:21:28.612+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\db\dbmessage.h(302) mon
go::QueryMessage::QueryMessage+0x6a
2016-04-15T22:21:28.613+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\db\instance.cpp(194) mon
go::receivedQuery+0xbf
2016-04-15T22:21:28.613+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\db\instance.cpp(377) mon
go::assembleResponse+0x2fd
2016-04-15T22:21:28.614+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\db\db.cpp(205) mon
go::MyMessageHandler::process+0xb8
2016-04-15T22:21:28.614+0100 I CONTROL [conn2] mongod.exe ...\src\mongo\util\net\message_server_port.cpp(232) mon
go::PortMessageServer::handleIncomingMsg+0x553
2016-04-15T22:21:28.614+0100 I CONTROL [conn2] mongod.exe ...\src\third_party\boost\libs\thread\src\win32\thread.cpp(185) boo
st::`anonymous namespace'::thread_start_function+0x21
2016-04-15T22:21:28.615+0100 I CONTROL [conn2] mongod.exe f:\dd\vctools\crt\crtw32\startup\threadex.c(376) _ca
llthreadstartex+0x17
2016-04-15T22:21:28.622+0100 I CONTROL [conn2] mongod.exe f:\dd\vctools\crt\crtw32\startup\threadex.c(354) _th
readstartex+0x102
2016-04-15T22:21:28.622+0100 I CONTROL [conn2] KERNEL32.DLL Bas
eThreadInitThunk+0x22
2016-04-15T22:21:28.629+0100 I CONTROL [conn2]
2016-04-15T22:21:28.630+0100 I NETWORK [conn2] AssertionException handling request, closing client connection: 10334 BSONObj size
: 33609065 (0x200D569) is invalid. Size must be between 0 and 16793600(16MB) First element: insert: "posts"
2016-04-15T22:21:28.642+0100 I NETWORK [conn1] end connection 127.0.0.1:5047 (0 connections now open)
这是怎么回事?
我已经用 3.0 和 3.2 试过了。
最佳答案
根据 https://jira.mongodb.org/browse/TOOLS-939 ,有一个错误正在影响 mongoimport 和 mongorestore 的某些版本,导致您的 mongoimport 命令失败。
要解决此问题,您可以使用参数为 1 的 --batchSize 选项。
使用这个改进后的查询:
mongoimport -d blog -c posts < posts.json --batchSize 1
希望这会奏效。
关于mongodb - 无法将 json 文件导入 Mongo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36657175/
我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看rubyzip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d
我试图在一个项目中使用rake,如果我把所有东西都放到Rakefile中,它会很大并且很难读取/找到东西,所以我试着将每个命名空间放在lib/rake中它自己的文件中,我添加了这个到我的rake文件的顶部:Dir['#{File.dirname(__FILE__)}/lib/rake/*.rake'].map{|f|requiref}它加载文件没问题,但没有任务。我现在只有一个.rake文件作为测试,名为“servers.rake”,它看起来像这样:namespace:serverdotask:testdoputs"test"endend所以当我运行rakeserver:testid时
我的目标是转换表单输入,例如“100兆字节”或“1GB”,并将其转换为我可以存储在数据库中的文件大小(以千字节为单位)。目前,我有这个:defquota_convert@regex=/([0-9]+)(.*)s/@sizes=%w{kilobytemegabytegigabyte}m=self.quota.match(@regex)if@sizes.include?m[2]eval("self.quota=#{m[1]}.#{m[2]}")endend这有效,但前提是输入是倍数(“gigabytes”,而不是“gigabyte”)并且由于使用了eval看起来疯狂不安全。所以,功能正常,
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
Rails2.3可以选择随时使用RouteSet#add_configuration_file添加更多路由。是否可以在Rails3项目中做同样的事情? 最佳答案 在config/application.rb中:config.paths.config.routes在Rails3.2(也可能是Rails3.1)中,使用:config.paths["config/routes"] 关于ruby-on-rails-Rails3中的多个路由文件,我们在StackOverflow上找到一个类似的问题
对于具有离线功能的智能手机应用程序,我正在为Xml文件创建单向文本同步。我希望我的服务器将增量/差异(例如GNU差异补丁)发送到目标设备。这是计划:Time=0Server:hasversion_1ofXmlfile(~800kiB)Client:hasversion_1ofXmlfile(~800kiB)Time=1Server:hasversion_1andversion_2ofXmlfile(each~800kiB)computesdeltaoftheseversions(=patch)(~10kiB)sendspatchtoClient(~10kiBtransferred)Cl
我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚
使用带有Rails插件的vim,您可以创建一个迁移文件,然后一次性打开该文件吗?textmate也可以这样吗? 最佳答案 你可以使用rails.vim然后做类似的事情::Rgeneratemigratonadd_foo_to_bar插件将打开迁移生成的文件,这正是您想要的。我不能代表textmate。 关于ruby-使用VimRails,您可以创建一个新的迁移文件并一次性打开它吗?,我们在StackOverflow上找到一个类似的问题: https://sta
我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在
我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r