Scuba: Diving Into Data at Facebook

Total Page:16

File Type:pdf, Size:1020Kb

Scuba: Diving Into Data at Facebook Scuba: Diving into Data at Facebook ∗ Lior Abraham John Allen Oleksandr Barykin Vinayak Borkar Bhuwan Chopra Ciprian Gerea Daniel Merl Josh Metzler David Reiss Subbu Subramanian Janet L. Wiener Okay Zed Facebook, Inc. Menlo Park, CA ABSTRACT Originally, we relied on pre-aggregated graphs and a carefully Facebook takes performance monitoring seriously. Performance managed, hand-coded, set of scripts over a MySQL database of per- issues can impact over one billion users so we track thousands of formance data. By 2011, that solution became too rigid and slow. servers, hundreds of PB of daily network traffic, hundreds of daily It could not keep up with the growing data ingestion and query code changes, and many other metrics. We require latencies of rates. Other query systems within Facebook, such as Hive [20] and under a minute from events occuring (a client request on a phone, a Peregrine [13], query data that is written to HDFS with a long (typ- bug report filed, a code change checked in) to graphs showing those ically one day) latency before data is made available to queries and events on developers’ monitors. queries themselves take minutes to run. Scuba is the data management system Facebook uses for most Therefore, we built Scuba, a fast, scalable, in-memory database. real-time analysis. Scuba is a fast, scalable, distributed, in-memory Scuba is a significant evolution in the way we collect and analyze database built at Facebook. It currently ingests millions of rows data from the variety of systems that keep the site running every (events) per second and expires data at the same rate. Scuba stores day. We now use Scuba for most real-time, ad-hoc analysis of arbi- data completely in memory on hundreds of servers each with 144 trary data. We compare Scuba to other data management systems GB RAM. To process each query, Scuba aggregates data from all later in the paper, but we know of no other system that both ingests servers. Scuba processes almost a million queries per day. Scuba is data as fast and runs complex queries as fast as Scuba. used extensively for interactive, ad hoc, analysis queries that run in Today, Scuba runs on hundreds of servers each with 144 GB under a second over live data. In addition, Scuba is the workhorse RAM in a shared-nothing cluster. It stores around 70 TB of com- behind Facebook’s code regression analysis, bug report monitoring, pressed data for over 1000 tables in memory, distributed by par- ads revenue monitoring, and performance debugging. titioning each table randomly across all of the servers. Scuba in- gests millions of rows per second. Since Scuba is memory-bound, it expires data at the same rate. To constrain the amount of data, 1. INTRODUCTION Scuba allows rows to specify an optional sample rate, which in- At Facebook, whether we are diagnosing a performance regres- dicates that Scuba contains only a fraction (often 1 in 100 to 1 in sion or measuring the impact of an infrastructure change, we want 1,000,000) of the original events. This sampling is necessary for data and we want it fast. The Facebook infrastructure team relies events like Facebook client requests, which occur millions of times on real-time instrumentation to ensure the site is always running per second. Sampling may be either uniform or based on some smoothly. Our needs include very short latencies (typically under a key, such as user id. Scuba compensates for the sample rate when minute) between events occuring on the web servers running Face- computing aggregates. book to those events appearing in the graphs produced by queries. In addition to a SQL query interface (for a subset of SQL in- Flexibility and speed in querying data is critical for diagnosing cluding grouping and aggregations but not joins), Scuba provides any issues quickly. Identifying the root cause for a issue is often a GUI that produces time series graphs, pie charts, distributions of difficult due to the complex dependencies between subsystems at column values, and a dozen other visualizations of data besides ta- Facebook. Yet if any issues are not fixed within minutes to a few bles with text. Figure 1 shows a time series graph with a week over hours, Facebook’s one billion users become unhappy and that is week comparison of page traffic in the Scuba GUI. In the backend, bad for Facebook. an aggregation tree distributes each query to every server and then ∗ gathers the results to send back to the client. Lior Abraham, John Allen, and Okay Zed were key early con- Although Scuba was built to support performance analysis, it tributors to Scuba who have left Facebook. Vinayak Borkar is a soon became the system of choice to execute exploratory queries Facebook graduate fellow from U.C. Irvine. over other time-sensitive data. Many teams at Facebook use Scuba: Permission to make digital or hard copies of all or part of this work for • Mobile development teams use Scuba to track which frac- personal or classroom use is granted without fee provided that copies are tions of users are running different mobile devices, operating not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, to systems, and versions of the Facebook app. republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. Articles from this volume were invited to present • Ads uses Scuba to monitor changes in ad impressions, clicks, their results at The 39th International Conference on Very Large Data Bases, and revenue. When a drop occurs, they can narrow it down August 26th - 30th 2013, Riva del Garda, Trento, Italy. Proceedings of the VLDB Endowment, Vol. 6, No. 11 quickly to a particular country, ad type, or server cluster and Copyright 2013 VLDB Endowment 2150-8097/13/09... $ 10.00. determine the root issue. Figure 1: Scuba’s web user interface. The query shown on the left side generates a time series graph with a week over week comparison of three columns related to Facebook page dispatches. The dotted lines represent the same days one week earlier. It is very easy to see daily and weekly cyclical behavior with these graphs. • Site reliability watches server errors by using Scuba. When 2. SCUBA USE CASES a spike occurs, they can pinpoint whether it is due to a bug in Scuba currently stores over 1000 tables. In this section, we de- a particular endpoint, a service in a particular datacenter or scribe a few representative use cases of Scuba. server cluster, or a physical issue with part of a datacenter. 2.1 Performance Monitoring • Bug report monitoring runs thousands of queries every hour The original and most common use of Scuba is for real-time to look for spikes in the number of bugs reported by Face- performance monitoring. Julie monitors the performance of face- book users, grouped by dozens of demographic dimensions book.com. She starts by looking at a Scuba dashboard of tens of (location, age, friend count, etc). graphs showing CPU load on servers; numbers of cache requests, In general, users start by asking high-level aggregate queries to hits, and misses; network throughput; and many other metrics. identify interesting phenomena in their data and then dive deeper These graphs compare performance week over week, as in Fig- (hence the name Scuba) to find base data points of interest. In all ure 1, or before and after a big code change. Whenever she finds of the above cases, being able to break down the data along multiple a significant performance difference, she then drills down through dimensions in an ad hoc manner is crucial. different columns (often including stack traces), refining the query Scuba is also the engine that underlies Facebook’s code regres- until she can pin the difference to a particular block of code and fill sion analysis tool, bug report monitoring tool, real-time post con- out an urgent bug report. tent monitoring tool (e.g., how many Facebook posts mention the Julie’s dashboard runs canned queries over data that is no more movie “Argo”?), and many other tools. The key feature of Scuba is than seconds old. Performance bugs can often be spotted (and that queries take less than a second to execute, even when scanning fixed!) within minutes to hours of their introduction — and while hundreds of GB of data, and results are usually live over events that they are still being tested on a fraction of the site. Alerts on spikes occurred a minute ago. in these performance graphs automate much of her initial monitor- In Section 2, we describe some of the use cases supported by ing. Logging and importing data in real-time over all of Facebook’s Scuba at Facebook, including performance monitoring, trend spot- servers would be too expensive; Julie’s table contains samples of ting, and pattern mining. A detailed description of Scuba’s archi- about 1 in 10,000 events (but it varies for different tables and types tecture, storage, and query capabilities is in Section 3. We present a of events). Scuba records the sampling rate and compensates for it. simple analytical model of Scuba’s query execution in Section 4. In Section 5, we evaluate Scuba experimentally. We study its speedup 2.2 Trend Analysis and scaleup properties with real data and queries. In Section 6, we Another time sensitive use of Scuba is trend spotting. Eric looks compare Scuba to related work. We conclude in Section 7 with a for trends in data content.
Recommended publications
  • Dashboard Design for Real-Time Situation Awareness
    Dashboard Design for Real-Time Situation Awareness Stephen Few, author of Information Dashboard Design Dashboard Design for Real-Time Situation Awareness Few if any recent trends in business information delivery have inspired as much enthusiasm as dashboards. When they work, they provide a powerful means to tame the beast of data overload. Despite their popularity, however, most dashboards live up to only a fraction of their potential. They fail, not because of poor technology—at least not primarily—but because of poor design. The more critical that information is to the well being of the business, the more grievous is the failure, because the remedy is so readily available. The term “dashboard” refers to a single screen information display that is used to monitor what’s going on in some aspect of the business. The key word is “monitor.” A dashboard presents the key data that you must effi ciently monitor to maintain awareness of what’s going on in your area of responsibility. Most dashboards are used to monitor information once a day, because more frequent use is unnecessary given the rate at which the information changes and speed at which responses must be made. Some jobs, however, require constant monitoring in real time, or close to it, because the activities that you track are happening right now and delays in responding can’t be tolerated. There is perhaps no better example of this type of dashboard than one that monitors the brisk and sometimes harried activities of a call center. Much like air traffi c control systems or cockpits in airplanes, call center dashboards must be designed to support real-time “situation awareness.” They must grab your attention when it’s needed, they must make it easy to spot what’s most important in a screen full of data, and they must give you the means to understand what’s happening and respond without delay.
    [Show full text]
  • Business Intelligence: a Discussion on Platforms, Technologies, and Solutions
    Business Intelligence: A Discussion on Platforms, Technologies, and solutions Tutorial RCIS 2013-Paris May 29-31 Introduction • Presenters: – Noushin Ashrafi • [email protected] – Jean-Pierre Kuilboer • [email protected] • Time and Discussion Frame – 90 minutes • Audiene can ask questions any time during presentation. 4/19/2013 RCIS 2013-Paris May 29-31 2 Tutorial overview knowledge Discovery from Data • The Thrust of the tutorial is to examine Business Intelligence (BI) Platforms to develop business analytics applications. • Specifically, we will address: – Requirements, development , and capabilities of the BI. – Self-service, enterprise, and cloud BI. – Confusing BI concepts such as: Platform, infrastructure, technology and architecture . – Solutions by three well-known vendors: Microsoft, TableauSoftware and IBM. 4/19/2013 RCIS 2013-Paris May 29-31 3 Overview of Business Intelligence • BI is revolutionizing decision making and information technology across all industries. This phenomenon is largely due to the ever-increasing availability of data. • The explosive volumes of data are available in both structured and unstructured formats, and are analyzed and processed to become information within context hence providing relevance, and purpose to the decision making process. 4/19/2013 RCIS 2013-Paris May 29-31 4 4/19/2013 RCIS 2013-Paris May 29-31 5 What is Business Intelligence? • BI is a content-free expression, so it means different things to different people. • BI is neither a product, nor a service – BI refers to people, processes, technologies and practices used to support business decision making. 4/19/2013 RCIS 2013-Paris May 29-31 6 4/19/2013 RCIS 2013-Paris May 29-31 7 What is Business Intelligence? • BI is an umbrella term that combines architectures, technology, analytical tools, applications, and methodologies to help transform data, to information, to knowledge, to decisions, and finally to action.
    [Show full text]
  • IBM Infosphere Master Data Management
    Data and AI Solution Brief IBM InfoSphere Master Data Management Maintain a trusted, accurate view of Highlights critical business data in a hybrid environment • Support comprehensive, cost-effective information Organizations today have more data about products, governance services, customers and transactions than ever before. • Monitor master data quality Hidden in this data are vital insights that can drive business using dashboards and results. But without comprehensive, well-governed data proactive alerts sources, decision-makers cannot be sure that the information • Simplify the management they are using is the latest, most accurate version. As data and enforcement of master volumes continue to grow, the problem is compounded over data policies time. Businesses need to find new ways to manage and • Integrate master data govern the increasing variety and volume of data and deliver management into existing it to end users as quickly as possible and in a trusted manner, business processes regardless of the computing modality. • Quickly scale to meet changing business needs IBM InfoSphere Master Data Management (InfoSphere MDM) provides a single, trusted view of critical business data to • Optimize resources using users and applications, helping to reduce costs, minimize risk flexible deployment options and improve decision-making speed and precision. InfoSphere MDM achieves the single view through highly accurate and comprehensive matching that helps overcome differences and errors that often occur in the data sources. The MDM server manages your master data entities centrally, reducing reliance on incomplete or duplicate data while consolidating information from across the enterprise. Data and AI Solution Brief With InfoSphere MDM, you can enforce information governance at an organizational level, enabling business and IT teams to collaborate on such topics as data quality and policy management.
    [Show full text]
  • Montana COVID-19 Cases Map and Dashboard Metadata
    Montana COVID-19 Cases Map and Dashboard Metadata For assistance, please e-mail or call the Montana Joint Information Center 1-888-333-0461 A list of FAQs and answers related to COVID-19 can be found here. Updates to the information are made by 11:30 a.m. daily. Description: The data for this dashboard is derived from local health officials at the county level who report cases to the Montana Department of Health and Human Services (DPHHS). DPHHS tabulates case data and then gives the data to the Montana State Library to publish through this web feature service. The daily updates are managed by the Disaster & Emergency Service State Emergency Coordination Center. Montana public health agencies and the Governor's Coronavirus Task Force are actively working to limit the spread of novel coronavirus in Montana. The Montana State Library is assisting the effort by geo-enabling public health information to help decision-makers, State Emergency Coordination Center and the Governor's Coronavirus Task Force, understand the spread of the disease. Information is reported based on the previous day. Information on the dashboard and maps will change based on further public health investigation. Cumulative Cases Indicator: This includes all reported Montana residents meeting the CDC case definition for novel coronavirus infections, and some non-Montana residents who were diagnosed with novel coronavirus infections while in Montana. New Cases Indicator: Daily aggregate of new cases in Montana, reported to DPHHS, for the previous full day. These newly reported cases can be classified as either active or recovered. Updates to the information are run by 11:30 a.m.
    [Show full text]
  • Governance by Dashboard
    Governance by Dashboard A Policy Paper Jamie Bartlett Nathaniel Tkacz Open Access. Some rights reserved. As the publisher of this work, Demos wants to encourage the circulation of our work as widely as possible while retaining the copyright. We therefore have an open access policy which enables anyone to access our content online without charge. Anyone can download, save, perform or distribute this work in any format, including translation, without written permission. This is subject to the terms of the Demos licence found at the back of this publication. Its main conditions are: · Demos and the author(s) are credited · This summary and the address www.demos.co.uk are displayed · The text is not altered and is used in full · The work is not resold · A copy of the work or link to its use online is sent to Demos. You are welcome to ask for permission to use this work for purposes other than those covered by the licence. Demos gratefully acknowledges the work of Creative Commons in inspiring our approach to copyright. To find out more go to www.creativecommons.org PARTNERS CREDITS This report was commissioned by: Published by Demos March 2017 © Demos. Some rights reserved. Unit 1, 2-3 Mill Street London SE1 2BD T: 020 7367 4200 [email protected] www.demos.co.uk CONTENTS Foreword 5 Introduction 7 The rise of the data dashboard 9 Dashboards in action 11 Dashboards transformation 14 Factors for successful dashboard implementation 18 4 5 FOREWORD Data dashboards – interfaces which display complex data to a user, often displayed in real time, and typically drawn from multiple sources – are an increasingly important way in which government departments make decisions.
    [Show full text]
  • Business Intelligence Dashboard for Academic Program Management
    Paper ID #13300 Business Intelligence Dashboard for Academic Program Management Dr. Mudasser Fraz Wyne, National University I have a Ph.D. in Computer Science, M.Sc. in Engineering, and B.Sc. in Electrical Engineering. Currently I serve as a Chair for Department of Computer Science, Information and Media Systems and Professor of Computer Science at School of Engineering and Computing, National University. I am also the Program Lead for MS in Information Technology Management and have also served recently as the lead for BSc in Information Systems, the co-Lead for MSc Computer Science and Program Lead for MSc in Database Administration programs. My association with ABET (Accreditation Board of Engineering and Technol- ogy) US dates back to 2001, as a certified program evaluator for BSc in Computer Science and BSc in Information Systems. At present, I am also serving as the Commissioner for the Computer Accredita- tion Commission (CAC). Previously, I have taught at 6 different countries for over 25 years. I have been privileged to be part of the DESY Group (Deutches Elecktronen Synchrotron), Hamburg Germany, as a research fellow, and worked with an MIT group, led by a Nobel laureate. On the research side, I have been fortunate enough to secure a number of grants and have served on numerous international Ph.D. Thesis committees, been a member of the editorial boards for 7 interna- tional journals, and served as the Chair and Co-Chair for 12 international conferences. For recognition of my research activities, I have been invited to a number of international conferences as Invited Speaker, chaired panel discussions and numerous international conference sessions.
    [Show full text]
  • Business Intelligence: Dashboard
    International Journal of Engineering Research & Technology (IJERT) ICONECT' 14 Conference Proceedings Business Intelligence: Dashboard Tushar Mulik1, Pravin Malusare2, Omkar Takalkar3,Prof. Monali Patil4 Department of Information Technology Mumbai University Mumbai, India [email protected],2 [email protected], 3 [email protected], 4 [email protected] Abstract - Business intelligence systems combine operational intelligence is viewed as being proactive. Essential data with analytical tools to present complex and competitive components of proactive BI are: information to planners and decision makers. The objective is • Real-time data warehousing, to improve the timeliness and quality of inputs to the decision • Data mining, process. Business Intelligence is used to understand the • Automated anomaly and exception detection, capabilities available in the firm; the state of the art, trends, and future directions in the markets, the technologies, and the •Proactive alerting with automatic recipient regulatory environment in which the firm competes; and the determination, actions of competitors and the implications of these actions. • Seamless follow-through workflow, The emergence of the data warehouse as a repository, advances • Automatic learning and refinement, in data cleansing, increased capabilities of hardware and • Geographic information systems software, and the emergence of the web architecture all • Data visualization combine to create a richer business intelligence environment than was available previously. II. LITERATURE SURVEY Much has been said and written about BI systems. To begin I. INTRODUCTION the research, study begins with collecting information from Demand for Business Intelligence (BI) applications periodicals, journals and reports. BI systems are used almost continues to grow even at a time when demand for most in all the sectors of industry for different purposes like information technology (IT) products is soft.
    [Show full text]
  • Design Concepts for an Outage Control Center Information Dashboard
    INL/EXT-15-37425 Rev. 0 De sign Concepts for an Outage Control Center Information Dashboard Jacques Hugo Shawn St. Germain Ronald Farris Cheradan Thompson McKenzie Whitesides December 2015 The INL is a U.S. Department of Energy National Laboratory operated by Battelle Energy Alliance DISCLAIMER This information was prepared as an account of work sponsored by an agency of the U.S. Government. Neither the U.S. Government nor any agency thereof, nor any of their employees, makes any warranty, expressed or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness, of any information, apparatus, product, or process disclosed, or represents that its use would not infringe privately owned rights. References herein to any specific commercial product, process, or service by trade name, trade mark, manufacturer, or otherwise, does not necessarily constitute or imply its endorsement, recommendation, or favoring by the U.S. Government or any agency thereof. The views and opinions of authors expressed herein do not necessarily state or reflect those of the U.S. Government or any agency thereof. INL/EXT-15-37425 Rev. 0 Design Concepts for an Outage Control Center Information Dashboard Jacques Hugo Shawn St. Germain Ronald Farris Cheradan Thompson McKenzie Whitesides December 2015 Idaho National Laboratory Idaho Falls, Idaho 83415 http://www.inl.gov Prepared under Work Package L-12N060305 Prepared for the U.S. Department of Energy Office of Nuclear Energy Under DOE Idaho Operations Office Contract DE-AC07-05ID14517 EXECUTIVE SUMMARY The nuclear industry, and the business world in general, is facing a rapidly increasing amount of data to be dealt with on a daily basis.
    [Show full text]
  • Prototype and Deployment of a Big Data Analytics Platform
    Prototype and Deployment of a Big Data Analytics Platform CTT2.0 Carbon Track and Trace Deliverable D3.1 Atle Vesterkjær, Patrick Merlot (Numascale) Oslo, Norway| 14 December 2016 climate-kic.org Contents Preface ................................................................................................................................................................. 2 Requirement Analysis ........................................................................................................................................ 3 Previous E2E Analytics IoT platform ....................................................................................................................... 3 CTT Analytics IoT platform ......................................................................................................................................... 5 State of the art technology overview ..................................................................................................................... 6 Adaption of standard and develop-ment of custom components ............................................................. 7 Standard components ................................................................................................................................................. 7 Custom components .................................................................................................................................................... 9 Deployment of the platform ............................................................................................................................
    [Show full text]
  • Study on Business Intelligence Tools for Enterprise Dashboard Development
    International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 04 | Apr -2017 www.irjet.net p-ISSN: 2395-0072 Study on Business Intelligence Tools for Enterprise Dashboard Development K.Gowthami1, M.R. Pavan Kumar2 1Student(M.Tech), Dept of CSE, Sree Vidyanikethan Engineering College, Tirupati, India. 2Assistant Professor, Dept. Of CSE, Sree Vidyanikethan Engineering College, Tirupati, India. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - This paper presents detailed information on dashboards, OLAP and data mining to charting and ETL. It Business Intelligence (BI) tools for developing a dashboard covers all the analytic areas of Business Intelligence in a typical enterprise setup. Few most popular BI tools like projects, with innovative themes and engines. The SpagoBI SpagoBI, Power BI, Tableau, Qliksense and Jaspersoft are server includes an interactive dashboard and integration with other reporting tools. considered based on the ease of use, support in terms of training and minimal initial cost at the end, a sample SpagoBI mainly consists of the following modules: dashboard has been developed using one of the tools Power BI to demonstrate the feasibility of the same for the Business data visualization. Key Words: Dashboard, Business Intelligence, Data Reports, Visualization, Data Analytics. 1.INTRODUCTION Business Analytic or Business Intelligence (BI) is becoming more needed by the top management of any enterprise to visualize, analyze and prepare the strategic Fig 1: SpagoBI Architecture planning for the future. However, the availability of business intelligence tools, the support on the existing SpagoBI Server, It includes analytic tools and features infrastructure (including software and hardware), act as a core for the suite.
    [Show full text]
  • Fast Database Restarts at Facebook
    Fast Database Restarts at Facebook ∗ Aakash Goel, Bhuwan Chopra, Ciprian Gerea, Dhrúv Mátáni, Josh Metzler, Fahim Ul Haq, and Janet L. Wiener Facebook, Inc. ABSTRACT 1. INTRODUCTION Facebook engineers query multiple databases to monitor and Facebook engineers query multiple database systems to analyze Facebook products and services. The fastest of monitor and analyze Facebook products and services. Scuba[5] these databases is Scuba, which achieves subsecond query is a very fast, distributed, in-memory database used exten- response time by storing all of its data in memory across sively for interactive, ad hoc, analysis queries. These queries hundreds of servers. We are continually improving the code typically run in under a second over GBs of data. Scuba pro- for Scuba and would like to push new software releases at cesses almost a million queries per day for over 1500 Face- least once a week. However, restarting a Scuba machine book employees. In addition, Scuba is the workhorse behind clears its memory. Recovering all of its data from disk | Facebook's code regression analysis, bug report monitoring, about 120 GB per machine | takes 2.5-3 hours to read and ads revenue monitoring, and performance debugging. format the data per machine. Even 10 minutes is a long One significant source of downtime is software upgrades, downtime for the critical applications that rely on Scuba, yet upgrades are necessary to introduce new features and such as detecting user-facing errors. Restarting only 2% of apply bug fixes. At Facebook, we are accustomed to the the servers at a time mitigates the amount of unavailable agility that comes with frequent code deployments.
    [Show full text]
  • Designing Dashboards for Multiple Target Audiences with SAS Visual
    Paper SAS4323-2020 Designing Dashboards for Multiple Target Audiences with SAS® Visual Analytics Kunal Shah, SAS Institute Inc. ABSTRACT There is no doubt that organizations have a vast amount of data available at their disposal. Yet, they often fall into the trap of creating a single dashboard for a wide variety of audiences to derive meaningful insights from the available data. Different audiences expect different insights from the data. Even the dashboard design thinking differs based on the target audience. This presentation focuses on three key audiences (executives, middle management, and individual contributors) and how to use SAS® Visual Analytics to create dashboards that generate powerful insights for each of these. The presentation also covers dashboard design best practices and recommendations from field consultants to help you weave a compelling story from your organizational data. INTRODUCTION Dashboards have become a popular tool in today’s business world. They are designed and implemented by nearly every industry, non-governmental organization (NGO), and even educational institution to enable data-driven decision making. There are literally hundreds of solutions that incorporate some kind of dashboard building capability. Yet, very little attention has been paid to the design and usability of these dashboards. Deriving value out of data isn’t just about defining a laundry list of success metrics but rather communicating a story and compelling the user to take action. Traditionally, dashboards are designed with data in mind - the amount of data, the kind of data, and the type of graph/chart to visualize the data. Users end up cramming a bunch of charts and gauges into a single dashboard and would eventually find themselves trying to fit in a large amount of organizational data into limited screen space.
    [Show full text]