Modern data architecture with Delta Lake and Talend

Unmanaged data lakes lead to slow analytics

If your data lakes have grown to the extent that analytics performance is suffering, you’re not alone. The very nature of data lakes, which allows organizations to quickly ingest raw, granular data for deep analytics and exploration, can stand in the way of fast, accurate insights.

Data lakes remain a go-to repository for storing all types of structured and unstructured, historical and transactional data. But with the high volume of data that is added every day, it is very easy to lose control of indexing and cataloging the contents of the data lake.

The data becomes unreliable, inconsistent, and generally hard to find. This has several effects on the business, ranging from poor decisions based on delayed or incomplete data to an inability to meet compliance mandates.

Databricks has designed a new solution to restore reliability to data lakes: Delta Lake. Based on a webinar Wavicle delivered with Databricks and Talend, this article will explore the challenges that data lakes present to organizations and explain how Delta Lake can help.

Core challenges with data lakes

Data lakes were designed to solve the problem of data silos, providing access to a single repository of any type of data from any source. Yet most organizations find it impossible to keep up with the extreme growth of data lakes.

The term “data swamp” has been used to define data lakes that have no curation or data lifecycle management and little to no contextual metadata or data governance. Due to the way it is stored, data has become hard to use or unusable.

Users may start to complain that analytics are slow, data is unreliable or inconsistent, or it simply takes too long to find the data they’re looking for. These performance and reliability issues are caused by a variety of issues, including:

  • Too many small or very large files require more time to open and close files, rather than reading content (this is even worse with streaming data)
  • Partitioning or indexing breaks down when data has many dimensions and/or high cardinality columns
  • Storage systems and processing engines struggle to handle a large number of subdirectories and files
  • Failed production jobs corrupt the data, requiring tedious recovery
  • Lack of consistency makes it hard to mix appends, deletes, and upserts and get consistent reads
  • Lack of schema enforcement creates inconsistent, low-quality data

Delta Lake to the rescue

Databricks has created Delta Lake, which solves many of these challenges and restores reliability to data lakes with minimal changes to data architecture. Databricks defines Delta Lake as an open-source “storage layer that sits on top of data lakes to ensure reliable data sources for machine learning and other data science-driven pursuits.” Several features of Delta Lake enable users to query large volumes of data for accurate, reliable analytics. These include ACID compliance, time travel (data versioning), unified batch and streaming processing, scalable storage, metadata, and schema check and validation. Addressing the major challenges of data lakes, Delta Lake delivers:

  • Reliability: Failed write jobs do not update the commit logs, so if there are any partial or corrupt files, any DELTA users who are using the DELTA table will not be able to see the corrupted file.
  • Consistency: Changes to DELTA tables are stored as ordered, atomic commits. DELTA readers read logs in an atomic, consistent snapshot each time and each commit is a set of actions filed in a directory. In practice, most writes don’t conflict with tunable isolation levels.
  • Performance: Compaction is performed on transactions using OPTIMIZE; optimize using multi-dimensional clustering on multiple columns.
  • Reduced system complexity: Delta Lake is able to handle both batch and streaming data (via direct integration with structured streaming for low latency updates) including the ability to concurrently write batch and streaming data to the same data table.

Architecting a modern Delta Lake platform

Below is a sample architecture of a Delta Lake platform. In this example, we’ve shown the data lake on the Microsoft Azure cloud platform using Azure Blob for storage and an analytics layer consisting of Azure Data Lake Analytics and HDInsight. An alternative would be to use Azure Blob storage with no compute attached to it.

Alternatively, in an Amazon Web Service environment, the data lake can be built based on Amazon S3 with all other analytical services sitting on top of S3.

In this example, Talend provides data integration. It provides a rich base of built-in connectors as well as MQTT and AMQP to connect to real-time streams, allowing for easy ingestion of real-time, batch, and API data into the data lake environment. Talend has voiced its support of Delta Lake, committing to “natively integrate data from any source to and from Delta Lake.”

Following the architecture are instructions for converting a data lake to Delta Lake using Talend for data integration.

Creating or Converting data lake project to Delta Lake through Talend

Below are instructions that highlight how to use Delta Lake through Talend.

Configuration: Set up the Big Data Batch job with Spark Configuration under the Run tab. Select the distribution to Databricks and the corresponding version. Under the Databricks section update the Databricks Endpoint(it could be Azure or AWS), Cluster Id, Authentication Token.

Sample Flow: In this sample job, click events are collected from the mobile app, and events are joined against the customer profile and loaded as a parquet file into DBFS. This DBFS file will be used in the next step for creating a delta table.

Create Delta Table: Creating a delta table needs the keyword “Using Delta” in the DDL and, in this case, since the file is already in DBFS, the location is specified to fetch the data for Table.

Convert to Delta table: If the source files are in Parquet format, we can use the SQL Convert to Delta statement to convert files in place to create an unmanaged table:

SQL: SQL: CONVERT TO DELTA parquet.`/delta_sample/clicks`

Partition data: Delta Lake supports the partitioning of tables. To speed up queries that have predicates involving the partition columns, partitioning of data can be done.

SQL:

CREATE TABLE clicks (
  date DATE,
  eventId STRING,
  eventType STRING,
  data STRING)
USING delta
PARTITIONED BY (date)

Batch upserts: To merge a set of updates and inserts into an existing table, we can use the MERGE INTO statement. For example, the following statement takes a stream of updates and merges it into the clicks table. If a click event is already present with the same eventId, Delta Lake updates the data column using the given expression. When there is no matching event, Delta Lake adds a new row.

SQL:

MERGE INTO clicks
USING updates
ON events.eventId = updates.eventId
WHEN MATCHED THEN
  UPDATE SET
    events.data = updates.data
WHEN NOT MATCHED
  THEN INSERT (date, eventId, data) VALUES (date, eventId, data)

Read Table: All Delta tables can be accessed either by choosing the file location or using the delta table name.

SQL: Either SELECT * FROM delta./delta_sample/clicks or SELECT * FROM clicks

Talend in Data Egress, analytics and machine learning on a high level:

  • Data Egress: Using Talend API services, create APIs faster by eliminating the need to use multiple tools or manually code. Talend covers the complete API development lifecycle, from design, test, documentation, and implementation to deployment – using simple, visual tools and wizards.
  • Machine learning: With the Talend toolset, machine learning components are ready to use off the shelf. This ready-made ML software allows data practitioners, no matter their level of experience, to easily work with algorithms—without needing to know how the algorithm works or how it was constructed. At the same time, experts can fine-tune those algorithms as desired. Talend supports below machine learning algorithm. Talend machine learning components include tALSModel, tRecommend, tClassifySVM, tClassify, tDecisionTreeModel, tPredict, tGradientBoostedTreeModel, tSVMModel, tLogicRegressionModel, tNaiveBayesModel and tRandomForestModel.

WIT Leader

Ranjith Ramachandran

Vice President, Technology View all my Posts

Related Posts

  • Blog
  • Advanced Analytics
  • Healthcare

Computer Vision for Health: Living Longer

  • 07 Jul 2025
  • 16 min read
  • 30 May 2025
  • 18 min read
  • Blog
  • Amazon Quicksight
  • BI Reporting & Visualizations

5 Major Benefits of Amazon Quick Suite That you...

  • 28 May 2025
  • 3 min read
  • Blog
  • Amazon Quicksight
  • BI Reporting & Visualizations

Tips and Tricks to Get the Most Out of Amazon Q...

  • 07 May 2025
  • 4 min read
  • 05 May 2025
  • 3 min read
  • 02 May 2025
  • 4 min read
  • Blog
  • Environmental Social & Governance (ESG)

Leveraging AI to Optimize Energy Consumption of...

  • 30 Apr 2025
  • 18 min read
  • Blog
  • Advanced Analytics
  • Predictive Modeling

Predicting the Unpredictable: Leveraging AI to ...

  • 11 Apr 2025
  • 3 min read
  • 28 Mar 2025
  • 2 min read
  • 28 Mar 2025
  • 16 min read
  • Blog
  • Advanced Analytics
  • Retail

Navigating Ethical Issues of AI in Retail

  • 12 Mar 2025
  • 4 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

How Generative AI is Transforming Retail Custom...

  • 12 Mar 2025
  • 5 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

How Text Analytics and Generative AI Are Unlock...

  • 09 Jan 2025
  • 5 min read
  • Blog
  • BI Reporting & Visualizations
  • Business Intelligence & Insights

Transforming BI Reporting and Visualization Wit...

  • 06 Jan 2025
  • 5 min read
  • Blog
  • Cloud Infrastructure Modernization
  • Platform Management

Mastering Cloud Cost Optimization for a More Ef...

  • 03 Jan 2025
  • 5 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

How Generative AI is Transforming the Retail Ex...

  • 20 Dec 2024
  • 21 min read
  • 19 Dec 2024
  • 10 min read
  • 12 Dec 2024
  • 18 min read
  • Blog
  • Business Intelligence & Insights
  • Reporting Modernization

How EZConvertBI Simplifies Your Looker Migration

  • 12 Dec 2024
  • 4 min read
  • Blog
  • Advanced Analytics
  • Business Intelligence & Insights

Transforming Business Intelligence with Looker

  • 12 Dec 2024
  • 6 min read
  • Blog
  • Advanced Analytics
  • Data Governance

Key Challenges in AI Adoption for Businesses

  • 11 Dec 2024
  • 13 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

What AI Disruption Means for Businesses

  • 05 Dec 2024
  • 15 min read
  • Blog
  • Advanced Analytics
  • Business Intelligence & Insights

Optimizing Your Cloud Data Platform with Google...

  • 04 Dec 2024
  • 7 min read
  • Blog
  • Advanced Analytics
  • Amazon Quicksight

From Shopfloor to Boardroom: Get Your Data to T...

  • 21 Nov 2024
  • 5 min read
  • Blog
  • BI Reporting & Visualizations
  • Build & Migrations

Let Your Data Speak to You – Unlocking Organiza...

  • 12 Nov 2024
  • 5 min read
  • Blog
  • Advanced Analytics
  • Business Analytics

The Joy of Decision-Making and Why It Matters

  • 12 Nov 2024
  • 5 min read
  • Blog
  • Data Management
  • Strategy & Assessments

Understanding Data Products

  • 11 Nov 2024
  • 4 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

Crafting User-Focused Solutions and Building an...

  • 06 Nov 2024
  • 12 min read
  • Blog
  • Architecture & Engineering
  • Cloud Infrastructure Modernization

How Data Mesh is Shaping the Future of Data Man...

  • 05 Nov 2024
  • 8 min read
  • Blog
  • Business Intelligence & Insights
  • Reporting Modernization

Streamline your Power BI Migration with EZConve...

  • 22 Oct 2024
  • 4 min read
  • 15 Oct 2024
  • 18 min read
  • Blog
  • Advanced Analytics
  • BI Reporting & Visualizations

How Gen AI and Microsoft Copilot are Reshaping ...

  • 03 Oct 2024
  • 5 min read
  • Blog
  • Advanced Analytics
  • Build & Migrations

Transforming Data Capabilities by Moving Beyond...

  • 25 Sep 2024
  • 5 min read
  • Blog
  • Business Analytics
  • Business Intelligence & Insights

How to Build a Restaurant Performance Measureme...

  • 24 Sep 2024
  • 6 min read
  • Blog
  • Advanced Analytics
  • Business Analytics

Leveraging Data Science and AI to Drive Innovat...

  • 16 Sep 2024
  • 16 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

The Role of Mature Data and AI in Accurate Gene...

  • 26 Aug 2024
  • 14 min read
  • Blog
  • Advanced Analytics
  • Business Analytics

Listening to the Voice of the Customer: A Key t...

  • 21 Aug 2024
  • 6 min read
  • Blog
  • Azure
  • BI Reporting & Visualizations

Moving from Tableau to Power BI: Why Companies ...

  • 20 Aug 2024
  • 6 min read
  • 14 Aug 2024
  • 18 min read
  • Blog
  • Advanced Analytics
  • Demand Forecasting

How to Use Demand Forecasting to Improve Busine...

  • 12 Aug 2024
  • 6 min read
  • Blog
  • Business Intelligence & Insights
  • Cloud Infrastructure Modernization

Building a Data Platform on Snowflake

  • 01 Aug 2024
  • 5 min read
  • Blog
  • Advanced Analytics
  • Demand Forecasting

Why Your Demand Forecasting Model Doesn’t Work ...

  • 30 Jul 2024
  • 7 min read
  • Blog
  • Advanced Analytics
  • Data Governance

Expert Insights on Demonstrating the Value of D...

  • 22 Jul 2024
  • 9 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

How to Effectively Harness Gen AI for Your Busi...

  • 18 Jul 2024
  • 5 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

Navigating the AI Hype Cycle by Setting Realist...

  • 11 Jul 2024
  • 15 min read
  • Blog
  • Advanced Analytics
  • Data Management

Leveraging AI Technology in Healthcare

  • 10 Jul 2024
  • 17 min read
  • Blog
  • Advanced Analytics
  • Data Governance

Expert Insights on Leveraging Data Quality and ...

  • 01 Jul 2024
  • 8 min read
  • Blog
  • Data Governance
  • Privacy Governance & Compliance

Choosing the Right Data Governance Approach for...

  • 24 Jun 2024
  • 5 min read
  • Blog
  • Data Governance
  • Privacy Governance & Compliance

Expert Insights on Leveraging Data Governance f...

  • 11 Jun 2024
  • 12 min read
  • Blog
  • Data Governance
  • Data Management

The Role of Existing Data Stewards in Driving G...

  • 10 Jun 2024
  • 3 min read
  • Blog
  • Data Governance
  • Data Management

Optimizing Data Governance Programs Beyond Chec...

  • 03 Jun 2024
  • 4 min read
  • Blog
  • Data Governance
  • Privacy Governance & Compliance

Measuring Data Governance Progress With Metrics...

  • 29 May 2024
  • 4 min read
  • Blog
  • Data Governance
  • Data Management

Decoding Data Governance: Going Beyond its Name

  • 22 May 2024
  • 5 min read
  • Blog
  • Business Analytics
  • Business Intelligence & Insights

How Your Data Governance Strategy Supports Data...

  • 15 May 2024
  • 4 min read
  • Blog
  • Data Governance
  • Privacy Governance & Compliance

The Need for Data Governance in a Changing World

  • 13 May 2024
  • 4 min read
  • Blog
  • Advanced Analytics
  • Data Management

Crafting a Data Strategy to Support AI in Healt...

  • 30 Apr 2024
  • 13 min read
  • Blog
  • Data Management
  • Data Privacy & Regulatory Compliance

How to Achieve Compliance Excellence in Healthc...

  • 24 Apr 2024
  • 5 min read
  • Blog
  • Environmental Social & Governance (ESG)
  • Manufacturing

Modernizing Supply Chains for Resilience and Su...

  • 17 Apr 2024
  • 8 min read
  • Blog
  • Advanced Analytics
  • Business Analytics

Getting the Absolute Best Data Science Talent t...

  • 16 Apr 2024
  • 14 min read
  • Blog
  • Architecture & Engineering
  • Data Management

How to Design a Modern Data Architecture

  • 10 Apr 2024
  • 5 min read
  • Blog
  • Advanced Analytics
  • Predictive Modeling

How to Re-imagine Customer Experience With Pred...

  • 10 Apr 2024
  • 4 min read
  • Blog
  • Advanced Analytics
  • Generative AI & LLM

Expert Insights on Transformative AI Strategies...

  • 10 Apr 2024
  • 13 min read
  • Blog
  • Data Management
  • Strategy & Assessments

Why Your Organization Needs a Data Strategy

  • 01 Apr 2024
  • 4 min read
  • Blog
  • Data Management
  • Strategy & Assessments

Getting Started With Data Strategy: The AI-Led ...

  • 28 Mar 2024
  • 3 min read
  • Blog
  • Cloud Infrastructure Modernization
  • Cloud Security & Monitoring

The Role of AI and ML in Cloud Security Monitoring

  • 21 Mar 2024
  • 4 min read
  • Blog
  • Data Management
  • Strategy & Assessments

Getting Started With Data Strategy: The Acceler...

  • 20 Mar 2024
  • 4 min read
  • 15 Mar 2024
  • 13 min read
  • Blog
  • Data Management
  • Strategy & Assessments

Getting Started With Data Strategy: The Traditi...

  • 13 Mar 2024
  • 4 min read
  • Blog
  • Healthcare
  • Strategy & Assessments

How Building a Strong Data Strategy Boosts Heal...

  • 12 Mar 2024
  • 7 min read
  • Blog
  • Data Management
  • Strategy & Assessments

The Do’s and Don’ts of Data Strategy

  • 06 Mar 2024
  • 6 min read
  • Blog
  • Advanced Analytics
  • Manufacturing

The Role of Advanced Analytics and AI in Reduci...

  • 04 Mar 2024
  • 5 min read
  • Blog
  • Advanced Analytics
  • Data Management

Reducing Barriers to Complex Data Science Entry...

  • 15 Feb 2024
  • 14 min read
  • 29 Jan 2024
  • 1 min read
  • Blog
  • Advanced Analytics
  • Manufacturing

Manufacturing in 2024: Key Data and Analytics T...

  • 12 Dec 2023
  • 8 min read
  • Blog
  • Advanced Analytics
  • Business Analytics

Data-Driven Dining: Three Essential Data, Analy...

  • 20 Nov 2023
  • 7 min read
  • Blog
  • Advanced Analytics
  • Business Analytics

Demystifying Data and Analytics

  • 24 Oct 2023
  • 12 min read
  • Blog
  • Advanced Analytics
  • Predictive Modeling

Revolutionizing Your Customer Experience Measur...

  • 04 Oct 2023
  • 10 min read
  • Blog
  • Business Analytics
  • Business Intelligence & Insights

How Integrating Reservation and POS Data Can Pr...

  • 27 Sep 2023
  • 4 min read
  • Blog
  • Advanced Analytics
  • Business Intelligence & Insights

Next-Generation CDOs: A Conversation About the ...

  • 25 Sep 2023
  • 12 min read
  • Blog
  • Business Intelligence & Insights

Why Data Analytics Projects Fail and How to Ove...

  • 22 Sep 2023
  • 5 min read
  • Blog
  • Advanced Analytics
  • Machine Learning & MLOps

How to Build Resilient Business Strategies Usin...

  • 22 Aug 2023
  • 6 min read
  • Blog
  • Business Analytics
  • Manufacturing

3 Ways Data Analytics Can Transform Your Supply...

  • 01 Aug 2023
  • 4 min read
  • Blog
  • Business Analytics
  • Manufacturing

How is Data Analytics Transforming Production?

  • 26 Jul 2023
  • 5 min read
  • Blog
  • Advanced Analytics
  • Predictive Modeling

5 Blockers to Effective Artificial Intelligence...

  • 24 Jul 2023
  • 6 min read
  • Blog
  • Data Governance
  • Data Management

Instilling Data Quality Into Your Data Manageme...

  • 20 Jul 2023
  • 7 min read
  • Blog
  • Advanced Analytics
  • Business Analytics

3 Ways Engineers Can Drive Business Value with ...

  • 18 Jul 2023
  • 4 min read
  • Blog
  • Advanced Analytics
  • Predictive Modeling

Calculating ROI for Advanced Analytics Initiatives

  • 15 Jul 2023
  • 6 min read
  • Blog
  • Data Management
  • Strategy & Assessments

How Business Leaders Leverage Data as a Critica...

  • 15 Jun 2023
  • 7 min read
  • Blog
  • Amazon Quicksight
  • BI Reporting & Visualizations

Clear and Actionable: Wavicle’s Winning Dashboard

  • 09 May 2023
  • 2 min read
  • Blog
  • Cloud Infrastructure Modernization
  • Platform Management

The Importance of Effective Cloud Platform Mana...

  • 07 May 2023
  • 4 min read
  • Blog
  • Architecture & Engineering
  • Data Management

Data Architecture 101: Trends and Terms to Know

  • 25 Apr 2023
  • 6 min read
  • Blog
  • Build & Migrations
  • Data Management

Which Data Storage Solution is Right for Your O...

  • 04 Apr 2023
  • 6 min read
  • Blog
  • ActiveInsights
  • Advanced Analytics

The Future of Voice of Customer: 5 Trends to Watch

  • 18 Jan 2023
  • 8 min read
  • Blog
  • Data Governance
  • Data Privacy & Regulatory Compliance

Why a Good Governance, Privacy, and Compliance ...

  • 08 Nov 2022
  • 7 min read
  • 22 Sep 2022
  • 3 min read
  • Blog
  • Advanced Analytics
  • Machine Learning & MLOps

Five Steps To Operationalizing Advanced Analyti...

  • 24 Nov 2021
  • 5 min read
  • Blog
  • Augment
  • Data Privacy & Regulatory Compliance

A New Way to Quickly and Easily Discover PII Da...

  • 19 Oct 2021
  • 2 min read
  • Blog
  • Architecture & Engineering
  • Augment

6 Reasons You Need an Augmented Data Quality So...

  • 16 Sep 2021
  • 5 min read
  • Blog
  • ActiveInsights
  • Business Analytics

Ditch the Survey and Really Get to Know Your Cu...

  • 15 Jul 2021
  • 8 min read
  • Blog
  • Architecture & Engineering
  • Business Analytics

Five Reasons Why Boutique Consulting Firms Are ...

  • 21 Jun 2021
  • 6 min read
  • Blog
  • Advanced Analytics
  • Machine Learning & MLOps

Deep Multi-Input Models Transfer Learning For I...

  • 14 Jun 2021
  • 15 min read
  • Blog
  • Advanced Analytics
  • Machine Learning & MLOps

Deep Learning For Natural Language Processing o...

  • 08 Jun 2021
  • 9 min read
  • Blog
  • ActiveInsights
  • Customer 360

5 Ways to Successfully Win Travelers’ Loy...

  • 25 May 2021
  • 6 min read
  • Blog
  • Business Analytics
  • Business Intelligence & Insights

Want to Meet Consumer Expectations? Demand Fore...

  • 25 May 2021
  • 10 min read
  • Blog
  • Advanced Analytics
  • Customer 360

These 3 Top Retail Analytics Trends are Revolut...

  • 25 May 2021
  • 8 min read
  • 27 Apr 2021
  • 5 min read
  • Blog
  • Architecture & Engineering
  • Business Analytics

8 CDOs Share Key Insights on How to Build a Suc...

  • 23 Apr 2021
  • 6 min read
  • Blog
  • Business Analytics
  • Business Intelligence & Insights

Here’s Why 2021 is Actually the First “Year of ...

  • 07 Apr 2021
  • 10 min read
  • Blog
  • Advanced Analytics
  • Business Analytics

Five Critical Elements For Successful Customer ...

  • 17 Feb 2021
  • 5 min read
  • Blog
  • Architecture & Engineering
  • Business Analytics

Everything You Need to Know About Data & A...

  • 15 Jan 2021
  • 6 min read
  • Blog
  • Business Intelligence & Insights
  • Data Management

What Happens When Insurers Turn to Data Analytics?

  • 04 Jan 2021
  • 4 min read
  • Blog
  • Architecture & Engineering
  • Data Management

What Happens When ERP Systems Talk? The Results...

  • 04 Jan 2021
  • 5 min read
  • Blog
  • Data Management
  • Data Privacy & Regulatory Compliance

Compliance Data Management: the Case For Automa...

  • 02 Dec 2020
  • 5 min read
  • Blog
  • Architecture & Engineering
  • Data Management

Compliance Data Management: Data Preparation Sa...

  • 02 Dec 2020
  • 7 min read
  • Blog
  • Business Analytics
  • Customer 360

Your Customers Like You, They Really, Really Li...

  • 25 Aug 2020
  • 9 min read
  • Blog
  • Predictive Modeling
  • Restaurant

Why Micro-Segmentation Matters in a Post-COVID ...

  • 10 Aug 2020
  • 6 min read
  • Blog
  • Architecture & Engineering
  • Data Management

Data Architecture From Right to Left: Start Wit...

  • 18 May 2020
  • 6 min read
  • Blog
  • Business Analytics
  • Business Intelligence & Insights

Using Big Data to Better Predict Your Recovery:...

  • 11 May 2020
  • 8 min read
  • Blog
  • ActiveDeliver
  • ActiveInsights

Mamma Mia!

  • 20 Feb 2020
  • 6 min read
  • Blog
  • Cloud Infrastructure Modernization
  • Data Management

How to Get Faster, More Reliable Analytics from...

  • 04 Dec 2019
  • 7 min read
  • Blog
  • ActiveInsights
  • Architecture & Engineering

Take Ownership of the Relationship with Your Di...

  • 04 Dec 2019
  • 4 min read
  • Blog
  • ActiveDeliver
  • Business Intelligence & Insights

Food Delivery: Who Owns the Customer?

  • 05 Nov 2019
  • 5 min read
  • Blog
  • Business Analytics
  • Business Intelligence & Insights

Quick Service Restaurants are Ravenous for Big ...

  • 03 Apr 2019
  • 4 min read
  • Blog
  • Architecture & Engineering
  • Data Management

CDO Summit Key Takeaways

  • 02 Apr 2019
  • 7 min read
  • Blog
  • Advanced Analytics
  • BI Reporting & Visualizations

2019 Business Intelligence Trends

  • 16 Oct 2018
  • 3 min read
  • 29 Mar 2018
  • 3 min read