May 24, 2018 by Arturs Oganesyan-Peel

BI is useful. It’s pretty. But it never really matters unless you’re getting real value out of it.

In this 4-part series we’ll briefly explore some the tools we believe are best suited towards helping you get value out of your data. In this first of our series on “Business Intelligence Tools We Recommend” we’re going to cover Metabase – a popular open-source BI tool you can find on GitHub.

In this series we will cover the four following applications:

Metabase

Metabase is our favorite business intelligence tool to get up-and-running with in a small amount of time relative to other open-source alternatives. It does require some level of technical proficiency to both install, set up a database connection, and then configure the database table relationships between the various tables (ie: one of the major steps you need to do is set up the proper foreign keys between tables which you can do via the Metabase interface but you still need to know what table keys link to what other table keys).

There are many ways to install Metabase, but if you’re looking simply to test it out, have a Mac computer, and don’t want to spend too much time doing installation and configuration you can install Metabase directly on your computer. In this case Metabase won’t be accessible via a public URL via an internet browser like Google Chrome of Mozilla Firefox since it’ll only live on your local machine.

You can install Metabase in the following ways using a wide-array of cloud platforms:

  • Docker
  • AWS Elastic Beanstalk
  • Heroku
  • Cloud66
  • Kubernetes
  • Metabase for Mac
  • Jar File

There are multiple databases that you can connect with Metabase. It’s unfortunate there aren’t any “plug-and-play” connections you can create with SaaS services such as LinkedIn, Google Drive, Twitter..etc but that is usually the case with the open-source business intelligence offerings. Usually, commercial offerings will have multiple integrations with the more popular web applications, one of these is Domo, which we will cover later on in this series.

The following are all the database types Metabase supports and can connect to:

  • BigQuery
  • Crate
  • Druid
  • Google Analytics
  • H2
  • MongoDB
  • MySQL
  • PostgreSQL
  • Amazon Redshift
  • SQLite
  • SQL Server

One of the best features of Metabase is it’s stunning visualizations and the fact that non-technical users can create them. They can serve to convey data in a simple and fast way, especially when you take a collection of these and group them in a dashboard as you can see below.

Bar Charts

Maps

Once Metabase is set up users can access the Metabase question creator and intuitively create questions without the use of any programming. More technology-savyy users can use basic MySQL to create more complex queries. One of the downsides of Metabase is that it doesn’t possess the level of granularity in creating questions (ie: queries) that Domo, or particularly Tableau, have.

Metabase also has the ability to send out updates on specific queries (Metabase calls them “questions”) on a repeating frequency or whenever that particular question changes to either Slack or e-mail. These are called “pulses” in Metabase.

Pros

  1. Free and open-source with an active developer community
  2. Multiple ways by which you can set up Metabase on cloud platforms
  3. Variety of databases you can connect to
  4. Beautiful and intuitive visualizations
  5. Reminders, or “pulses”, that can be programmatically sent out.

Cons

  1. Local version to quickly get up and running is only available for Mac
  2. Inability to create complex questions without the use of MySQL
  3. Need to do some data mapping to get started
  4. No”plug-and-play” connectors you can easily use to integrate data from a SaaS system

Overall, We believe that Metabase is one of the best available open-source BI tools currently available on the web. It’s ease of use, great user interface, and strong community support make it a business intelligence tool that can rival, if not outdo, many commercial options available in the market.

Do you like Metabase? Dislike it? Is there some other BI application you’d like for us to cover in this series? Drop us a line at solutions@anant.us!

Photo by rawpixel on Unsplash

Business Intelligence Tools We Recommend 1/4 – Metabase的更多相关文章

  1. SQL Server Data Tools – Business Intelligence for Visual Studio 2012安装时提示“The CPU architecture....”的解决方法

    SQL Server Data Tools – Business Intelligence for Visual Studio 2012,一个很强大的工具,下载地址:http://www.micros ...

  2. Microsoft SQL Server Data Tools - Business Intelligence for Visual Studio 2013 http://www.microsoft.com/en-us/download/details.aspx?id=42313

    Microsoft SQL Server Data Tools - Business Intelligence for Visual Studio 2013 http://www.microsoft. ...

  3. 什么是BI(Business Intelligence)【转】

    谈谈对BI的理解,从BI的定义.基本技术.专业名词.实例应用及扩展等方面进行重新描述,巩固对BI的理解. 一.BI的定义 BI是Business Intelligence的英文缩写,中文解释为商务智能 ...

  4. Oracle's Business Intelligence Applications Configuration Manager 基本概念

    Oracle's Business Intelligence Applications Configuration Manager :BIACM Once the BIAPPS installatio ...

  5. [转]SQL Server 2005 Integration Services (SSIS) (3) - Business Intelligence Development Studio

    本文转自:http://blog.csdn.net/me_online/article/details/1546281 三,SQL Server Integration Services 开发环境– ...

  6. 【BIEE】01_下载安装BIEE(Business Intelligence)11g 11.1.1.9.0

    环境准备 安装文件 如果操作系统是64位,则下载64位版本,我安装的系统是64位的 1.下载所有安装文件 1.1 Oracle Database 11g R2 下载地址: http://www.ora ...

  7. Oracle Business Intelligence Enterprise Edition 12.2.1.2.0 Books

    Oracle Business Intelligence Enterprise Edition 12.2.1.2.0 Books Documentation for Oracle Business I ...

  8. 什么是BI(Business Intelligence)

    一.BI的定义 BI是Business Intelligence的英文缩写,中文解释为商务智能,用来帮助企业更好地利用数据提高决策质量的技术集合,是从大量的数据中钻取信息与知识的过程.简单讲就是业务. ...

  9. SQL SERVER 2014 缺少Business Intelligence 解决办法

    SQL SERVER 2014安装完所有的数据库工具后,缺少开发工具 Business Intelligence   之解决办法. https://msdn.microsoft.com/en-us/l ...

随机推荐

  1. WebSocket刨根问底(一)

    年初的时候,写过两篇博客介绍在Spring Boot中如何使用WebSocket发送消息[在Spring Boot框架下使用WebSocket实现消息推送][在Spring Boot框架下使用WebS ...

  2. 深入理解Spring AOP思想

    什么是AOP?AOP解决了什么问题? 在传统的开发模式中,以下层次的是非常常见的一种,业务层每一个方法都要有重复的事务代码 如何改善这个问题? AOP希望将A.B 这些分散在各个业务逻辑中的相同代码, ...

  3. 规避 React 组件中的 bind(this)

    React 组件中处理 onClick 类似事件绑定的时候,是需要显式给处理器绑定上下文(context)的,这一度使代码变得冗余和难看. 请看如下的示例: class App extends Com ...

  4. 设计模式总结篇系列:策略模式(Strategy)

    前面的博文中分别介绍了Java设计模式中的创建型模式和结构型模式.从本文开始,将分别介绍设计模式中的第三大类,行为型模式.首先我们了解下分为此三大类的依据. 创建型模式:主要侧重于对象的创建过程: 结 ...

  5. Mybatis sql映射文件浅析 Mybatis简介(三)

    简介 除了配置相关之外,另一个核心就是SQL映射,MyBatis 的真正强大也在于它的映射语句. Mybatis创建了一套规则以XML为载体映射SQL 之前提到过,各项配置信息将Mybatis应用的整 ...

  6. java集合框架容器 java框架层级 继承图结构 集合框架的抽象类 集合框架主要实现类

    本文关键词: java集合框架  框架设计理念  容器 继承层级结构 继承图 集合框架中的抽象类  主要的实现类 实现类特性   集合框架分类 集合框架并发包 并发实现类 什么是容器? 由一个或多个确 ...

  7. 聊天框Demo:DotNetCore+ActiveMQ+Mqttjs 实现前后台消息监听

    网上查了查 ActiveMQ + .net core 的例子很少,自己做一个demo 作为记录,另外FineUI Core基础版要来了,出来后我会用FineUI再做一版,为知识星球的引流... 1.安 ...

  8. linux-2.6.18源码分析笔记---进程

    一.进程重要字段描述 在目录include\linux\sched.h下定义了进程描述符task_struct,关注如下字段: 进程状态 volatile long state:表示进程状态,在该文件 ...

  9. Linux设置Swap虚拟内存方法

    linux可以文件或者分区来当作虚拟内存. 首先查看当前的内存和swap 空间大小(默认单位为k, -m 单位为M): free -m 查看swap信息,包括文件和分区的详细信息 swapon -s或 ...

  10. python爬虫之静态网页——全国空气质量指数(AQI)爬取

    首先爬取地址:http://www.air-level.com/ 利用的python库,最近最流行的requests,BeautifulSoup. requests:用于下载html Beautifu ...