MongoDB資料庫簡單介紹
MongoDB是一個高效能 ,開源 ,無模式的文檔型資料庫,它在許多情境下可用於替代傳統的關係型資料庫或鍵/值儲存模式。MongoDB是用C++開發, 提供了以下功能:
- 面向集合的儲存:適合儲存物件及JSON形式的資料。
- 動態查詢:Mongo支援豐富的查詢運算式。查詢指令使用JSON形式的 標記,可輕易查詢文檔中內嵌的對象及數組。
- 完整的索引支援:包括文檔內嵌對象及數組。Mongo的查詢最佳化 器會分析查詢運算式,並產生一個高效的查詢計劃。
- 查 詢監視:Mongo包含一個監視工具 用於分析資料庫操作的效能。
- 複製 及自動容錯移轉:Mongo資料庫支援伺服器 之間的資料複製,支援主-從模式及服務 器之間的相互複製。複製的主要目標是提供冗餘及自 動容錯移轉。
- 高效的傳統儲存方式:支援位元據及大型物件(如照片或圖片)。
- 自動分區以支援雲層級的伸縮性(處於 早期alpha階段):自動分區功能支援水平的資料庫叢集 ,可動態添加額外的機器。
MongoDB的主要目標是在鍵/值儲存方式(提供了高效能和高度伸縮性)以及傳統的RDBMS系統 (豐富的功能)架起一座橋樑,集兩者的優勢於一 身。根據官方網站的描述,Mongo 適合用於以下情境:
- 網站資料:Mongo非常適合即時的插入,更新與查詢,並具備網站即時資料儲存所需的複製及高度伸縮性。
- 緩衝 :由於效能很高,Mongo也適合作為資訊基礎設施的緩衝層。在系統重啟之後,由Mongo搭建的持久化緩衝層可以避免下層的資料來源 過載。
- 大尺寸,低價值的資料:使用傳統的關係型資料庫儲存一些資料時可能會比較昂貴,在此之前,很 多時候程式員往往會選擇傳統的檔案 進行儲存。
- 高伸縮性的情境:Mongo非常適合由數十或數百台伺服器組成的資料庫。Mongo的路線圖中已經包含對MapReduce引擎的內建支 持。
- 用於 對象及JSON資料的儲存:Mongo的BSON資料格式非常適合文檔化格式的儲存 及查詢。
自然,MongoDB的使用也會有一些限制,例如它不適合:
- 高度事務性的系統:例如銀行或會計系統。傳統的關係型資料庫目前還是更適用於需要大量原子性複雜事務的應用 程式。
- 傳統的商業智慧應用:針對特定問題的BI資料庫會對產生高度最佳化的查詢方式。對於此類應用,資料倉儲可能是更合適的選擇。
- 需要SQL的問題
MongoDB支援OS X、Linux及Windows等作業系統 ,並提供了Python,PHP,Ruby,Java,C,C#,Javascript,Perl及C++語言的驅動程式,社區中也提供了對Erlang 及.NET等平台的驅動程式
使用方法:
利用用戶端程式mongo登入mongoDB
- [falcon@www.fwphp.cn ~/mongodb]$ bin/mongo
- MongoDB shell version: 1.2.4-
- url: test
- connecting to: test
- type "help" for help
- > help
- HELP
- Show dbs 顯示資料庫名
- show collections 顯示當前資料庫中的集合集
- show users 顯示當前資料庫的使用者
- show profile 顯示最後系統用時大於1ms的系統概要
- use <db name> 切換到資料庫
- db.help() help on DB methods
- db.foo.help() help on collection methods
- db.foo.find() list objects in collection foo
- db.foo.find( { a : 1 } ) list objects in foo where a == 1
- it result of the last line evaluated; use to further iterate
- > show dbs 預設情況下有2資料庫
- admin
- local
- > use admin 切換到admin資料庫
- switched to db admin
- > show collections 顯示admin資料庫下面的集合集
- system.indexes
下面我們來簡單的建立集合集,插入、更新、查詢資料, 體驗mongodb帶給我們不一樣的生活
建立資料庫的方法是在
建立集合集:
- > db.createCollection("user");
- { "ok" : 1 }
- > show collections
- system.indexes
- user
- >
插入資料:
- > db.user.insert({uid:1,username:"Falcon.C",age:25});
- > db.user.insert({uid:2,username:"aabc",age:24});
查詢資料:
- > db.user.find();
- { "_id" : ObjectId("4b81e74c1f0fd3b9545cba43"), "uid" : 1, "username" : "Falcon.C", "age" : 25 }
- { "_id" : ObjectId("4b81e74d1f0fd3b9545cba44"), "uid" : 2, "username" : "aabc", "age" : 24 }
查詢資料的方式很豐富,有類似於SQL的條件查詢,將 會在以後的文檔中詳細介紹
如:我想查詢uid為1的使用者資訊
- > db.user.find({uid:1});
- { "_id" : ObjectId("4b81e74c1f0fd3b9545cba43"), "uid" : 1, "username" : "Falcon.C", "age" : 25 }
等等,豐富的查詢還有limit ,sort ,findOne,distinct等
更新資料:
- > db.user.update({uid:1},{$set:{age:26}})
- > db.user.find();
- { "_id" : ObjectId("4b81e76f1f0fd3b9545cba45"), "uid" : 1, "username" : "Falcon.C", "age" : 26 }
- { "_id" : ObjectId("4b81e7701f0fd3b9545cba46"), "uid" : 2, "username" : "aabc", "age" : 24 }
- > db.user.update({uid:1},{$inc:{age:-1}})
- > db.user.find();
- { "_id" : ObjectId("4b81e76f1f0fd3b9545cba45"), "uid" : 1, "username" : "Falcon.C", "age" : 25 }
- { "_id" : ObjectId("4b81e7701f0fd3b9545cba46"), "uid" : 2, "username" : "aabc", "age" : 24 }
- >
出 了以上的2種用法,更新的條件還有$unset、$push 、$pushAll 、$pop 、$pull 、$pullAll
以上就是MongoDB簡單的使用介紹,在以後的文檔中將會詳細的介紹mongoDB非常酷的CURD方法,mongoDB的Replication及分 布式
MongoDB的提示
如果想查看當前串連在哪個資料 庫下面,可以直接輸入db
- > db
- Admin
想切換到test資料庫
- > use test
- switched to db test
- > db
- Test
想 查看test下有哪些表或者叫collection,可以輸入
- > show collections
- system.indexes
- user
想 知道mongodb支援哪些命令 ,可以直接輸入help
- > help
- HELP
- show dbs show database names
- show collections show collections in current database
- show users show users in current database
- show profile show most recent system.profile entries with time >= 1ms
- use <db name> set curent database to <db name>
- db.help() help on DB methods
- db.foo.help() help on collection methods
- db.foo.find() list objects in collection foo
- db.foo.find( { a : 1 } ) list objects in foo where a == 1
- it result of the last line evaluated; use to further iterate
如果想知道當前資料庫支援哪些方法:
- > db.help();
- DB methods:
- db.addUser(username, password) 添加資料庫授權使用者
- db.auth(username, password) 訪問 認證
- db.cloneDatabase(fromhost) 複製資料庫
- db.commandHelp(name) returns the help for the command
- db.copyDatabase(fromdb, todb, fromhost) 複製資料庫
- db.createCollection(name, { size : ..., capped : ..., max : ... } ) 建立表
- db.currentOp() displays the current operation in the db
- db.dropDatabase() 刪除當前資料庫
- db.eval(func, args) run code server-side
- db.getCollection(cname) same as db['cname'] or db.cname
- db.getCollectionNames() 擷取當前資料庫的表名
- db.getLastError() - just returns the err msg string
- db.getLastErrorObj() - return full status object
- db.getMongo() get the server connection object
- db.getMongo().setSlaveOk() allow this connection to read from the nonmaster member of a replica pair
- db.getName()
- db.getPrevError()
- db.getProfilingLevel()
- db.getReplicationInfo()
- db.getSisterDB(name) get the db at the same server as this onew
- db.killOp() kills the current operation in the db
- db.printCollectionStats() 列印各表的狀態資訊
- db.printReplicationInfo() 列印主要資料庫的複製狀態資訊
- db.printSlaveReplicationInfo() 列印從資料庫的複製狀態資訊
- db.printShardingStatus() 列印分區狀態資訊
- db.removeUser(username) 刪除資料庫使用者
- db.repairDatabase() 修複資料庫
- db.resetError()
- db.runCommand(cmdObj) run a database command. if cmdObj is a string, turns it into { cmdObj : 1 }
- db.setProfilingLevel(level) 0=off 1=slow 2=all
- db.shutdownServer ()
- db.version() current version of the server
如果想知道當前資料庫下的表或者表 collection支援哪些方法,可以使用一下命令如:
- > db.user.help(); user為表名
- DBCollection help
- db.foo.count() 統計表的行數
- db.foo.dataSize() 統計表資料的大小
- db.foo.distinct( key ) - eg. db.foo.distinct( 'x' ) 按照給定的條件除重
- db.foo.drop() drop the collection 刪除表
- db.foo.dropIndex(name) 刪除指定索引
- db.foo.dropIndexes() 刪除所有索引
- db.foo.ensureIndex(keypattern,options) - options should be an object with these possible fields: name, unique, dropDups 增加索引
- db.foo.find( [query] , [fields]) - first parameter is an optional query filter. second parameter is optional set of fields to return. 根據條件尋找資料
- e.g. db.foo.find( { x : 77 } , { name : 1 , x : 1 } )
- db.foo.find(...).count()
- db.foo.find(...).limit(n) 根據條件尋找資料並返回指定記錄數
- db.foo.find(...).skip(n)
- db.foo.find(...).sort(...) 尋找排序
- db.foo.findOne([query]) 根據條件查詢只查詢一條資料
- db.foo.getDB() get DB object associated with collection 返回表所屬的庫
- db.foo.getIndexes() 顯示表的所有索引
- db.foo.group( { key : ..., initial: ..., reduce : ...[, cond: ...] } ) 根據條件分組
- db.foo.mapReduce( mapFunction , reduceFunction , <optional params> )
- db.foo.remove(query) 根據條件刪除資料
- db.foo.renameCollection( newName ) renames the collection 重新命名表
- db.foo.save(obj) 儲存資料
- db.foo.stats() 查看錶的狀態
- db.foo.storageSize() - includes free space allocated to this collection 查詢分配到資料表空間大小
- db.foo.totalIndexSize() - size in bytes of all the indexes 查詢所有索引的大小
- db.foo.totalSize() - storage allocated for all data and indexes 查詢表的總大小
- db.foo.update(query, object[, upsert_bool]) 根據條件更新資料
- db.foo.validate() - SLOW 驗證表的詳細資料
- db.foo.getShardVersion() - only for use with sharding
Mongodb的備份工具 mongodump
如果想備份資料庫test 如:
- [falcon@www.fwphp .cn ~/mongodb/bin]$ ./mongodump --help
- options:
- --help produce help message
- -h [ --host ] arg mongo host to connect to
- -d [ --db ] arg database to use
- -c [ --collection ] arg collection to use (some commands)
- -u [ --username ] arg username
- -p [ --password ] arg password
- --dbpath arg directly access mongod data files in this path,
- instead of connecting to a mongod instance
- -v [ --verbose ] be more verbose (include multiple times for more
- verbosity e.g. -vvvvv)
- -o [ --out ] arg (=dump) output directory
- [falcon@www.fwphp.cn ~/mongodb/bin]$ [color=Blue]./mongodump -d test -o test/[/color]
- connected to: 127.0.0.1
- DATABASE: test to test/test
- test.user to test/test/user.bson
- 100000 objects
- test.system.indexes to test/test/system.indexes.bson
- 1 objects
- [falcon@www.fwphp.cn ~/mongodb/bin]$ ls
- 2 mongo mongodump mongofiles mongorestore mongosniff
- dump mongod mongoexport mongoimport mongos test
MongoDB的資料恢複工具 mongorestore
查看test庫中的表
- > show collections
- system.indexes
- User
刪除user表
- > db.user.drop();
- True
- > show collections
- System.indexes
現在利用mongorestore表恢複剛才利用 mongodump備份的資料
- [falcon@www.fwphp.cn ~/mongodb/bin]$ ./mongorestore --help
- usage: ./mongorestore [options] [directory or filename to restore from]
- options:
- --help produce help message
- -h [ --host ] arg mongo host to connect to
- -d [ --db ] arg database to use
- -c [ --collection ] arg collection to use (some commands)
- -u [ --username ] arg username
- -p [ --password ] arg password
- --dbpath arg directly access mongod data files in this path,
- instead of connecting to a mongod instance
- -v [ --verbose ] be more verbose (include multiple times for more
- verbosity e.g. -vvvvv)
- [falcon@www.fwphp.cn ~/mongodb/bin]$ ./mongorestore -d test -c user test/test/user.bson
- connected to: 127.0.0.1
- test/test/user.bson
- going into namespace [test.user]
- 100000 objects
User表中的10w條記錄已經恢複
- > show collections
- system.indexes
- user
- > db.user.find();
- { "_id" : ObjectId("4b9c8db08ead0e3347000000"), "uid" : 1, "username" : "Falcon.C-1" }
- { "_id" : ObjectId("4b9c8db08ead0e3347010000"), "uid" : 2, "username" : "Falcon.C-2" }
- { "_id" : ObjectId("4b9c8db08ead0e3347020000"), "uid" : 3, "username" : "Falcon.C-3" }
- { "_id" : ObjectId("4b9c8db08ead0e3347030000"), "uid" : 4, "username" : "Falcon.C-4" }
- { "_id" : ObjectId("4b9c8db08ead0e3347040000"), "uid" : 5, "username" : "Falcon.C-5" }
- .................
- has more
mongodb還提供了HTTP查看運行 狀態及restfull的介面
預設的訪問連接埠 是28017