12
返回列表 发新帖
楼主: jieforest

Pentaho和MongoDB联合做数据分析

[复制链接]
论坛徽章:
277
马上加薪
日期:2014-02-19 11:55:14马上有对象
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有车
日期:2014-02-19 11:55:14马上有车
日期:2014-02-18 16:41:112014年新春福章
日期:2014-02-18 16:41:11版主9段
日期:2012-11-25 02:21:03ITPUB年度最佳版主
日期:2014-02-19 10:05:27现任管理团队成员
日期:2011-05-07 01:45:08
11#
 楼主| 发表于 2014-6-4 22:32 | 只看该作者
Perform  the  following steps  to  download  and  install  Pentaho  on  your Windows computer:

1.  Check  to  make  sure  your  computer  meets  the  minimum  hardware requirements  to  run  Pentaho  server  components at
http://infocenter.pentaho.com/he ... ed_components.html.

2.  If  your  computer  is  64-bit  compliant,  download  Pentaho  Business Analytics  64-bit  Windows  version  to  your  computer from http://www.pentaho.com/download.

Note

You will be asked to register your contact information for a 30-day evaluation of the Pentaho Enterprise Edition. Your download will begin after registration. The downloaded filename should look like the following with [version] being the version you downloaded:

使用道具 举报

回复
论坛徽章:
277
马上加薪
日期:2014-02-19 11:55:14马上有对象
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有车
日期:2014-02-19 11:55:14马上有车
日期:2014-02-18 16:41:112014年新春福章
日期:2014-02-18 16:41:11版主9段
日期:2012-11-25 02:21:03ITPUB年度最佳版主
日期:2014-02-19 10:05:27现任管理团队成员
日期:2011-05-07 01:45:08
12#
 楼主| 发表于 2014-6-4 22:33 | 只看该作者
  1. pentaho-business-analytics-[version]-x64.exe
复制代码
3.  Double-click  on  the  downloaded  executable file, pentaho-business-analytics-[version]-x64.exe,  to  run the installer program, which will launch a Pentaho splash screen.

4.  When  prompted  to  choose  a  setup  type,  select Default, which  will install  the  entire  suite  of  server  and  client  components  to  a  default directory of C:\Program Files\Pentaho.

5.  You will  be  prompted  to  enter  a  single  master  password  for  the PostGreSQL solution repository and enterprise console, and publish it to the web feature. Enter your chosen password and click on Next.

Note

When  the  installation  wizard  completes,  the  BA  and  DI  servers  should  be running on the following default ports:

1) 5432: PostgreSQL server
2) 8080: BA server Tomcat web server startup port
3) 9080: DI server port

If these ports are not available during the installation, Pentaho will automatically increment the port number by one until an available port is found.

使用道具 举报

回复
论坛徽章:
277
马上加薪
日期:2014-02-19 11:55:14马上有对象
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有车
日期:2014-02-19 11:55:14马上有车
日期:2014-02-18 16:41:112014年新春福章
日期:2014-02-18 16:41:11版主9段
日期:2012-11-25 02:21:03ITPUB年度最佳版主
日期:2014-02-19 10:05:27现任管理团队成员
日期:2011-05-07 01:45:08
13#
 楼主| 发表于 2014-6-4 22:34 | 只看该作者
6.  Upon  wizard  completion,  select  the  option  of  starting  the Pentaho User Console, which will launch the PUC login screen.

7.  Click on the Login as an Evaluator link, which will use the default administrator  login  with admin as  the  username  and password as  the password, and then click on the Go button to access Pentaho.

Summary

Congratulations!  You  should  have  a  working  installation  of  Pentaho,  which installs  the  BA  and  DI  servers  as  Windows  systems  services  that  will  start automatically  the  next  time  you  boot  your  computer.  Please  refer  to  the official Pentaho  Installation  Guide athttp://infocenter.pentaho.com for detailed  installation  information.  In  the  next  chapter,  we  will  explore  the MongoDB data model and establish a connection from Pentaho to the sample MongoDB database.

使用道具 举报

回复
论坛徽章:
277
马上加薪
日期:2014-02-19 11:55:14马上有对象
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有车
日期:2014-02-19 11:55:14马上有车
日期:2014-02-18 16:41:112014年新春福章
日期:2014-02-18 16:41:11版主9段
日期:2012-11-25 02:21:03ITPUB年度最佳版主
日期:2014-02-19 10:05:27现任管理团队成员
日期:2011-05-07 01:45:08
14#
 楼主| 发表于 2014-6-4 22:35 | 只看该作者
MongoDB database objects

We  will begin  our  journey  of  understanding  MongoDB  database  objects  by comparing each object to its equivalent RDBMS object when applicable. There are  some  similarities  between  MongoDB  and  RDMBS  objects,  although  the object  names  are  different.  MongoDB  object  names  include  databases, collections, documents, fields, and indexes.


The  highest  level  container  in  a  MongoDB  server  instance  is  a  database. A database consists  of  one  or  more  collections.  A collection holds  a grouping of documents just as a RDBMS table holds a grouping of records.

A document is made up of one or more fields, which as you probably guessed, are similar to table fields (that is, columns). Relational databases define fields at  the  table  level  while  document-oriented  databases  define  fields  at  the document  level.  Additionally,  as  with  a  RDBMS,  MongoDB  allows  you  to create indexes on fields for better sorting and lookup performance.

使用道具 举报

回复
论坛徽章:
277
马上加薪
日期:2014-02-19 11:55:14马上有对象
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有车
日期:2014-02-19 11:55:14马上有车
日期:2014-02-18 16:41:112014年新春福章
日期:2014-02-18 16:41:11版主9段
日期:2012-11-25 02:21:03ITPUB年度最佳版主
日期:2014-02-19 10:05:27现任管理团队成员
日期:2011-05-07 01:45:08
15#
 楼主| 发表于 2014-6-4 22:36 | 只看该作者
The following figure shows a basic object relationship in a MongoDB database with one collection containing two documents and a total of three fields. The mandatory  ObjectId  fields,  the  unique  keys  for  a  collection,  are  left  out intentionally to keep the illustration simple.

使用道具 举报

回复
论坛徽章:
0
16#
发表于 2015-12-8 17:54 | 只看该作者
还有下文吗?版主,我现在也在了解如何使用mongodb做数据分析,有没有推荐的文章啊

使用道具 举报

回复

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

TOP技术积分榜 社区积分榜 徽章 团队 统计 知识索引树 积分竞拍 文本模式 帮助
  ITPUB首页 | ITPUB论坛 | 数据库技术 | 企业信息化 | 开发技术 | 微软技术 | 软件工程与项目管理 | IBM技术园地 | 行业纵向讨论 | IT招聘 | IT文档
  ChinaUnix | ChinaUnix博客 | ChinaUnix论坛
CopyRight 1999-2011 itpub.net All Right Reserved. 北京盛拓优讯信息技术有限公司版权所有 联系我们 未成年人举报专区 
京ICP备16024965号-8  北京市公安局海淀分局网监中心备案编号:11010802021510 广播电视节目制作经营许可证:编号(京)字第1149号
  
快速回复 返回顶部 返回列表