Data property - Data Latency

Data System Architecture

Data property - Data Latency

About

Data latency is a property of eventual consistency and describe how quickly two set of data will be consistent.

This is a latency performance of the consistency of your data.

In a DW/BI environment, Data latency describes how quickly source system data must be delivered to the business users via

Be careful: asking business users if they want “real-time” delivery of data is an invitation for trouble. Most business users will request lower-latency data regardless of whether they understand the impact of the request. We recommend dividing the real-time challenge into three categories:

  • daily,

Daily means that the data visible on the screen is valid as of a batch file download or reconciliation from the source system at the end of the previous working day.

  • frequently

Frequently means that the data visible to the end user is updated many times per day but is not guaranteed to be the absolute current data as of this instant.

  • and instantaneous.

Instantaneous means that the data visible on the end user's screen represents the true state of the source transaction system at every instant. When the source system status changes, the online screen must also respond instantly.

Real Time

When you want to get the data in near-real-time,

  • you can't use a bulk copy process (like Oracle SQLLoader, SQLServer BCP, …)
  • you need
    • a queueing process, a message broker,
    • or a log replication, CDC, log miner (like Golden Gate)

Impact

Data latency obviously has a huge effect on the costs and complexity of your ETL environment.

Clever processing algorithms, parallelization and potent hardware can speed up traditional batch-oriented data flows. But at some point, if the data latency requirement is urgent, the ETL system architecture must step up from batch mode to streaming orientation. This isn't a gradual or evolutionary change; it's a major paradigm shift in which almost every step of the data delivery pipeline must be reimplemented.

ETL streams for most organizations typically require a data latency that matches the natural rhythm of the business. We find that most organizations require daily updates for most ETL streams and weekly or monthly updates for other ETL streams. However, in some circumstances, more frequent updates or even real-time updates suit the rhythm of the business. The key is to recognize that only a handful of business processes within any organization are appropriate for real-time updating. There's no compelling reason to convert all ETL processing to real time. The rhythm of most business processes simply doesn't demand that treatment.

Real-time

It was impossible to answer analytic questions with transactional data structures.

Real-time data warehousing is usually an attempt to do the opposite: answer transactional questions with analytic data structures.

The issue is how do you properly cleanse the data, integrate it and align it across the enterprise, and keep track of changing attributes all on a real time basis. In most cases, you have to create separate, parallel structures that support real time loading and querying, along with cleansed, aligned, detailed history to provide an analytic context.

When you deal with real-time information, you are dealing with individual transactions rather than batches of transactions. There is no time to stop and smell the roses (as it were), to run multiple aggregations, data quality, cleansing routines, or even potentially some lookups. The information movement needs shift. Traditional batch techniques often do not apply to processing real-time information feeds.

Documentation / Reference





Discover More
Data System Architecture
Data - Cache

In computer science, a data cache is a component that aims to: improve performance reduce load on the server. The cache will: store transparently a request response and use it to for later...
Card Puncher Data Processing
Software Design - Real time

Real time refers to the data latency property of eventual consistency being almost instantaneous. See Real time process have the highest priority They are generally passed over a websocket in dual...
Card Puncher Data Processing
The Art of Programming - Information System and Software Design

The Art of Programming - Information System and Software Design This section is about how to use the basic block of a language in order to create high order component. Abstract:_The_Art_of_DesignThe...



Share this page:
Follow us:
Task Runner