Skip to content
  • Blog
  • Events
  • Help
  • Careers
  • Contact
New Signature
  • About
      • Company

        Cognizant Microsoft Business Group is dedicated to changing the way businesses innovate, transform and run based on a unique cloud operating model. You will now be redirected to our new microsite to learn more.

        View Company

      • Awards

        As a company, we are regularly recognized within the IT industry as well as the communities we serve.

        View All Awards
      • News

        Read the most up-to-date corporate announcements, Microsoft technology updates, innovative business solutions and learn more about how the Cognizant Microsoft Business Group can take your business even farther.

        View News

      • Partners

        New Signature works with a number of outstanding technology companies to deliver the best experiences to our customers.

        View Partners
      • Leadership

        Cognizant Microsoft Business Group’s executive team is comprised of innovative leaders with proven experience and deep industry expertise. You will now be redirected to our new microsite to learn more.

        View Leadership

      • Industries

        Our solutions are tailored to empower organizations across a wide range
        of industries.

        View Industry Experience
    Close
  • Solutions
      • Intelligent Enterprise
        Solutions

        Going Digital
        Unleash cloud capability, deliver change and compete at speed with a Microsoft digital operating model, enabling you to work more efficiently as you transform your IT environment. Learn More

      • Featured Solution

        Secure Cloud
        In a world of constant threat, ensuring that your underlying cloud platform is protected is the first step on your organization’s journey towards a secure, compliant operating environment. Learn More
      • Intelligent Workplace
        Solutions

      • Secure Workplace

        Work Anywhere

        Endpoint Health

        Identity Health

        Teamwork Support



        VIEW WORKPLACE SOLUTIONS
      • Intelligent Cloud
        Solutions

      • App Factory

        Azure Accelerator

        Azure Launchpad

        Azure Launchpad for DevOps

        Application Health

        Platform Health

        VIEW ClOUD SOLUTIONS
    Close
  • Services
      • Begin your journey towards becoming a digital business with GO, our unique end-to-end framework based on the Microsoft Cloud Adoption Framework.

        GO DIGITAL OPERATING MODEL
      • Intelligent Enterprise

      • Consulting

        We go beyond just technology to help your organization understand how digital can help you uniquely differentiate and better serve your employees and customers.

        VIEW ENTERPRISE SERVICES
      • Intelligent Workplace

        • Identity

          Identity is your new first-line-of-defense. It’s vital to your users and clients that your identity platform is properly configured and secured.

          Endpoint

          Whether your devices are on-premises or remote, personal or business-owned, we can ensure they are properly managed and protected.

          Teamwork

          Today’s workforce is collaborating than ever before.  We can empower your current teams with tomorrow’s progressive technologies.

          VIEW WORKPLACE SERVICES
        • Intelligent Cloud

          • Platform

            The cloud is no longer some future-state. It’s the here and now. Adopting a cloud-first platform is one of the best ways to maintain a future-proofed competitive advantage.

            Applications

            We build cloud-native apps and modernize legacy systems with the power of Azure to give your organization a competitive edge.

            Data

            We can help your organization create secure, scalable data platforms to deliver simpler and more sophisticated insights to your business.

            VIEW CLOUD SERVICES
        Close
      • Client Stories
          • Case Studies

            Browse a comprehensive list of companies who have created successful partnerships and experienced transformative solutions with New Signature.

            View All Case Studies

          • Featured Case Study TalkTalk Modern Workplace

            New Signature worked with TalkTalk to define a new Modern Workplace solution based on Microsoft 365, which kept the user firmly at the center of the transformation.
            View Case Study

          • Testimonials

            We love transforming our customers businesses, take a look at what they have to say about New Signature.

            View Testimonials

          • Featured Testimonial Davis Construction

            With New Signature’s help, Davis was able to take a progressive step forward by migrating their private branch exchange (PBX) phone system to a Voice of Internet Protocol (VoIP) system.
            View Testimonial

        Close
      • Explore
          • Guides & Ebooks

            Dive deeper into education with your team by leveraging our expert-developed guides and eBooks.

            View All Guides & Ebooks

          • Infographics

            Rich with statistics and information, our infographics are great tools for quick but insightful learning.

            View All Infographics
          • Podcast: Office Explorers

            Join Kat and Rob monthly as they chat with New Signature experts and explore the world of O365.

            Listen to Podcasts

          • Videos

            Visit our videos stream to access recorded webinars, service information and to learn more about us.

            WATCH ALL VIDEOS
          • Flyers

            Searching for information about our services? Our flyers are a great takeaway for all those details.

            VIEW ALL FLYERS

          • Featured Stream

            Learn more about the tooling and expertise required to unlock productivity and mobilize your teams.

            MODERN WORKPLACE
        Close
        Close
      Blog

      Agile Delivery for Large Scale Data Ingestion using Azure Data Explorer

      New Signature / Blog / Agile Delivery for Large Scale Data Ingestion using Azure Data Explorer
      April 15, 2021April 15, 2021| Channa Wijesinghe

      When it comes to data one of the most common issues we see is when companies are joining data from a variety of sources into a “single source of truth.” Databricks and Customer Insights were built to help people take data from disparate sources and combine it, but they involve significant overhead maintaining configuration, cost, and a host of other factors.

      How do we get started quickly, support streaming intake, and have a persisted data storage while being low cost? How do we show value to our stakeholders by showing data as we consume it into reports? Enter Azure Data Explorer (ADX). Azure Data Explorer is a fast, fully managed data analytics service for real-time analysis on large volumes of data streaming from applications, websites, IoT devices, and more. You can use Azure Data Explorer to collect, store, and analyze diverse data to improve products, enhance customer experiences, monitor devices, and boost operations. ADX offers a different paradigm to standard aggregation systems and instead of “combing” all data in your lake it seamlessly handles ingestion and allows you to query raw data.

      Architecture Under the Hood

      With many built-in connectors and ingestion pipelines, you can ingest your data with zero code and start exploring. With the right SKU for the right workload, you can “start small” and grow with your data and its adoption.

      A Real-World Use Case

      Recently the Cognizant Microsoft Business Group delivered an ADX solution for a major managed general underwriting insurance company. For simplicity’s sake, their data sources are reflected below:

      1. Policy Management system
      2. On-premises invoicing system that also has legacy policy data
      3. Flat file uploads of claims information

      1. On-premises data, we use Azure Integrated Runtime to pull information from the on-premise store and write to ADX – populating working tables in the ADX database.
      2. API data ingestion work-the team created a basic Azure function to query the API from the policy management system – unfortunately, this API was using legacy SOAP protocols with certificate authentication – so we needed the .Net Core web services library to effectively manage the request, which was the sole reason we used Azure functions-this could have been an event grid or a logic app. The Function App writes parquet files to an ADLS gen 2 Data lake and using the Event Grids/ Event Hubs we push file data to ADX through its data connection support.
      3. Now that third-party data and on-premises data are under one platform (ADX) we have data insight. This is “starting small” – we can create an export of data sets that we believe are informing data models used for future processes.

      At this point, you might be wondering: how do I unify data sets and create models?

      Enter KQL. Kusto query language (KQL) a is native ADX query language that offers a large set of operators providing filtering on rows, joining two datasets, group by aggregates, and many more to query the data stored in the ADX cluster without modifying data or metadata. KQL is also the language used by many other analytics and security products like Application Insights, Log Analytics, and Azure Sentinel. It is the type of language that bridges a gap between set-based thinking and PowerShell development and for that reason much beloved by data wonks. Using KQL we can shape some of our datasets into a conical model to start basic reporting and providing data insight.

      This is similar to SQL but keep in mind that the schema and querying are so much more performant, and with the right setup can process petabytes of data in minutes using the same technology as what runs application insights. SQL is also a supported language to query data stored in ADX.

      rz_OnPrem_Database_Master_Dataset 
      
      | project INVOICENUM, TRANCODE, POLICYNUM, TRANDATE, EFFDATE, POLEFFECTIVE, POLEXPIRE, Fee, Premium, Tax 
      
      | join kind=inner (api_stage_PolicyInfo | extend POLICYNUM=PolicyNumber) on POLICYNUM 
      
      | join kind=inner (rz_OnPrem_stage_Claim | extend POLICYNUM=PolicyNumber) on POLICYNUM

      At this point, you have some data shaping going on. This allows an engineer to get this in front of business owners and make sure that the sprint activities of data collection are on track. Did we validate our use case? Are we missing data? Do we need to extract from more sources or create reference tables to give the data a “better” shape?

      During the process of shaping, we can apply business rules to the shaping of the data. We add data quality rules that standardize data to given data formats. The KQL library is very robust and is constantly evolving.

      This lends itself to the Agile approach, we can show continuous value by adding to the conical model, introducing new data models, and starting data shaping conversations.

      As we shape this data we store it in a refine zone and think about what deployment to a traditional SQL data warehouse looks like.

      Things to Consider

      They say that with great power comes great responsibility. What we have found as data sets get larger and larger is that you cannot just throw more power at the problem. If we had used traditional ADF or Synapse you could do that, and you would pay more but the net is negligible given you don’t want 3 engineers trying to performance tune the solution.

      Though KQL offers many optimizations out of the gate, some query time optimization may be needed to solve the problem without spending extra money. As a Data engineer, a good guideline is to check your query performance early, follow query best practices. Ensure that all nodes on the cluster are distributing the workload correctly. Are you using the right join with the right key and shuffle hints? Ensure that data is shared evenly.

      The ADX product team has been phenomenal in helping us understand query optimization and the Kusto language in general. I was impressed how quickly the client and my team were able to navigate Kusto, build more insight into the data model and therefore drive more discussion.

      Overall, the benefits of using Azure Data Explorer included a quick solution port, a straightforward shift from SQL to KQL, and a unified data platform that helped our group, offer large and sophisticated reporting with greater performance at a reduced cost to our client.

      Contact the Cognizant Microsoft Business Group today to transform your business with focus, simplicity and scale.

      Categories
      Tips and Tricks
      Contact New Signature

      Related Information

      Services

      • Customer Insights

      Blog Posts

      • Implementing Cloud Adoption Framework Across Vida Homeloan’s Organization
      • Cognizant Microsoft Business Group Achieves Microsoft Advanced Specialization for Windows Virtual Desktop
      • Cognizant’s Experience Lab for Continuous Testing with Azure
      • Cognizant Microsoft Business Group Achieves New Microsoft Advanced Specialization 

      Managed Services

      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent fermentum, enim ac dignissim aliquet

      VIEW ALL MANAGED SERVICES

      Professional Services

      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent fermentum, enim ac dignissim aliquet

      VIEW ALL PROFESSIONAL SERVICES

      New Signature

      About

      • Company
      • Awards
      • News
      • Leadership
      • Partners
      • Industries

      Solutions

      • Intelligent Enterprise Solutions
      • Intelligent Workplace Solutions
      • Intelligent Cloud Solutions

      Services

      • GO
      • Intelligent Enterprise
      • Intelligent Workplace
      • Intelligent Cloud

      Client Stories

      • Client Stories
      • Testimonials

      Explore

      • Guides & Ebooks
      • Podcasts
      • Flyers
      • Infographics
      • Videos
      Copyright © 2023 New Signature
      • Blog
      • Events
      • Careers
      • Help
      • Anti Slavery
      • Privacy Policy
      • Contact
      • About
        • Company
        • Awards
        • News
        • Leadership
        • Partners
        • Industries
      • Services
        • GO
        • Intelligent Enterprise
        • Intelligent Workplace
        • Intelligent Cloud
      • Client Stories
        • Case Studies
        • Testimonials
      • Technologies
      • Explore
        • Guides & Ebooks
        • Infographics
        • Podcast: Office Explorers
        • Videos
        • Flyers
      • Blog
      • Events
      • Careers
      • Contact
      • Search
      Cookie Settings
      New Signature uses "Required Cookies" to run our website, "Functional Cookies" used by third parties to personalise marketing, including social media features.

      Change your preferences by clicking the “Cookie Settings” link at the bottom of every page. Learn more about cookies in our Cookie Policy and our Privacy Policy. By clicking the “Accept Cookies” button below, you consent to our use of cookies.

      Please note that “Required Cookies” will be set regardless of your consent.
      Cookie SettingsAccept Cookies
      Privacy & Cookies Policy

      Privacy Overview

      This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
      Targeting

      Targeting Cookies are used to capture user information in order for New Signature to deliver better user experiences.

      Performance

      Performance Cookies provide Content Delivery Network assets that deliver faster site content delivery capabilities.

      Required

      These cookies are required mainly in order to deliver Multilanguage site capabilities.

      Functional

      Functional Cookies allow us to provided advanced media capabilities including videos, surveys and other multimedia capabilities.

      Disabling Functional cookies will block the playing of videos and other multimedia site components.

      Save & Accept