- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
Summary:
Is it possible to:
- Import data into Hadoop with the «MongoDB Connector for Hadoop».
- Process it with Hadoop MapReduce.
- Export it with Sqoop in a single transaction.
我正在使用 MongoDB 构建一个 Web 应用程序。虽然 MongoDB 可以很好地完成大部分工作,但在某些部分我需要更强大的事务保证,为此我使用 MySQL 数据库。
我的问题是我想读取一个大的 MongoDB 集合进行数据分析,但是集合的大小意味着分析工作需要很长时间来处理。不幸的是,MongoDB 的内置 map-reduce 框架不能很好地完成这项工作,所以我更愿意使用 Apache Hadoop 进行分析。 .
我了解可以使用 «MongoDB Connector for Hadoop» 将数据从 MongoDB 读取到 Hadoop 中。 ,它从 MongoDB 读取数据,在 Hadoop 中使用 MapReduce 对其进行处理,最后将结果输出回 MongoDB 数据库。
问题是我希望 MapReduce 的输出进入 MySQL 数据库,而不是 MongoDB,因为结果必须与其他 MySQL 表合并。
为此,我知道 Sqoop 可以将 Hadoop MapReduce 的结果导出到 MySQL。
最后,我也想读取 MongoDB 数据,然后用 Hadoop 处理它,最后将结果输出到 MySQL 数据库中。
这可能吗?有哪些工具可以做到这一点?
最佳答案
TL;DR: Set an an output formatter that writes to a RDBS in your Hadoop job:
job.setOutputFormatClass( DBOutputFormat.class );
注意几点:
无法使用 Sqoop 将数据从 MongoDB 导出到 Hadoop。这是因为 Sqoop 使用 JDBC它为基于 SQL 的数据库提供调用级 API,但 MongoDB 不是基于 SQL 的数据库。你可以看看«MongoDB Connector for Hadoop»做这项工作。连接器可用on GitHub . (编辑:正如您在更新中指出的那样。)
默认情况下,Sqoop 导出不会在单个事务中进行。相反,根据 Sqoop docs :
Since Sqoop breaks down export process into multiple transactions, it is possible that a failed export job may result in partial data being committed to the database. This can further lead to subsequent jobs failing due to insert collisions in some cases, or lead to duplicated data in others. You can overcome this problem by specifying a staging table via the
--staging-table
option which acts as an auxiliary table that is used to stage exported data. The staged data is finally moved to the destination table in a single transaction.
«MongoDB 的 Hadoop 连接器»似乎并没有强制执行您描述的工作流。根据文档:
This connectivity takes the form of allowing both reading MongoDB data into Hadoop (for use in MapReduce jobs as well as other components of the Hadoop ecosystem), as well as writing the results of Hadoop jobs out to MongoDB.
确实,据我了解,«MongoDB Connector for Hadoop»: examples , 可以指定 org.apache.hadoop.mapred.lib.db.DBOutputFormat
到您的 Hadoop MapReduce 作业中以将输出写入 MySQL 数据库。按照连接器存储库中的示例:
job.setMapperClass( TokenizerMapper.class );
job.setCombinerClass( IntSumReducer.class );
job.setReducerClass( IntSumReducer.class );
job.setOutputKeyClass( Text.class );
job.setOutputValueClass( IntWritable.class );
job.setInputFormatClass( MongoInputFormat.class );
/* Instead of:
* job.setOutputFormatClass( MongoOutputFormat.class );
* we use an OutputFormatClass that writes the job results
* to a MySQL database. Beware that the following OutputFormat
* will only write the *key* to the database, but the principle
* remains the same for all output formatters
*/
job.setOutputFormatClass( DBOutputFormat.class );
关于mysql - 是否可以读取 MongoDB 数据,使用 Hadoop 对其进行处理,并将其输出到 RDBS (MySQL) 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9965427/
我已经在 kubernetes 中部署了一个 3 pod mongodb statefulset,并且我正在尝试使用新的 mongodb+srv 连接字符串 (mongodb 3.6) 连接到具有 S
我已经创建了 MongoDB Atlas 帐户,并尝试连接。但出现以下错误。 MongoDB 连接错误 MongoNetworkError: 首次连接时无法连接到服务器 [cluster0-shard
我正在使用 Node-WebKit 创建桌面应用程序。该应用程序基本上是创建文档(员工日常工作的详细信息),任何注册用户都可以对这些文档发表评论。我正在创建的文档将被分成几个部分。用户将对特定部分发表
我正在尝试使用官方网站上的安装程序在我的本地机器上安装 mongo DB。但是我不断收到这条消息,有人可以帮忙吗? 我试过提供的解决方案 here但没有帮助。 最佳答案 我建议执行以下操作: 按 Wi
我对 MongoDB 和 MongoDB Compass 非常陌生。 我的客户集合中有大约 1000 条记录。如何通过 MongoDB 指南针一次删除所有记录。 非常感谢, 最佳答案 您可以使用 Mo
当我尝试在我的 Ubuntu 机器中安装 mongodb 时,apt-get 会显示以下选项 mongodb mongodb-clients mongodb-dev mongodb-server 谁能
如何将 Robomongo(或任何其他 mongodb 客户端)连接到由本地 Meteor 应用程序创建的 mongodb 实例? 最佳答案 确保 Meteor 正在本地主机上运行。打开终端窗口并运行
我需要在 MongoDB 中生成一个简单的频率表。假设我在名为 books 的集合中有以下文档。 { "_id": 1, genre: [ "Fantasy", "Crime"
我如何在 mongos mapreduce 中指定一个条件,就像我们在 mongos group 函数中所做的那样。 我的数据是这样的 {lid:1000, age:23}, {lid:3000, a
我的 mongodb 数据库文档中有几个 ID。我需要通过脚本在这些 ID 上创建索引,这样我就不必一次又一次地运行 ensureIndex 命令。 db.getCollection("element
在我的数据库中,每个包含项目的文档中都有一个嵌套的元素数组,格式如下: elements:[ { "elem_id": 12, items: [ {"i_id": 1
我正在构建一个应用程序,其中用户可以位于不同的时区,并且我运行的查询对他们的时区很敏感。 我遇到的问题是 MongoDB 似乎在查询时忽略了时区! 这是日期字段“2019-09-29T23:52:13
我正在研究使用 mongodb 进行分片,我有以下结构: 1 个 Mongod 到我的 ConfigServer,在 ReplicaSet 中只有 1 个成员 2 个分片,每个分片在 ReplicaS
我正在尝试获取一个 mongoDB 对象,例如 Friend1 包含另一个 mongoDB 对象 Friend2,该对象又包含第一个对象 Friend1本质上使它成为一个循环对象引用。 要么这样,要么
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 9年前关闭。 Improve this que
Mongo 版本 5.0.2。 Ubuntu 20.0 我在本地主机中启用了 MongoDB 连接的安全性。 我正在尝试通过以下命令使用身份验证详细信息连接我的本地主机 MongoDBmongo ad
我即将将分片的 MongoDB 环境从 2.0.7 升级到 2.2.9,最终我想升级到 2.4.9,但显然我需要通过 2.2 来完成。 2.2 的发行说明声明配置服务器应该首先升级其二进制文件,然后是
目前,我无法在我的虚拟 Ubuntu 机器上远程连接 mongodb 服务器。我无法使用在我的 Windows PC 上运行的 Robomongo 客户端连接,该 PC 也运行 vm。 这是两台电脑的
我创建了一个免费的 mongodb 集群。我创建了一个用户,设置了与 mongodb compass 的连接,复制了连接字符串,然后打开了我的 mongodb compass。将复制的字符串粘贴到那里
我使用 java 代码创建了 mongo 数据库集合索引 dbCollection.createIndex("accountNumber"); 当我看到索引使用 db.accounts.getInde
我是一名优秀的程序员,十分优秀!