Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Chapter (Glue-2205) Replication to files explained which files are written to file-based storage:

...

You can edit the naming convention with SNP Glue™ Profile Settings.

Within this chapter, we’ll explain how to use the provided metadata to recognize delta’s and do proper merges (for example in spark-based applications like Databricks).

...

The property "LoadType" is a single character that identifies you with the extraction load type:

More details you can find here https://datavard.atlassian.net/l/c/7FUaNemb(Glue-2205) Data replication with delta

Request metadata - DeltaType

...

Objects

SAP Object

SAP Table

Table View / Hana View

CDS View

Extractor

BW Object

DSO

aDSO

BEx Query

SNP Glue™ Fetcher

SAP Table Fetcher

SAP Table Fetcher

Hana View Fetcher

SAP Table Fetcher

ODP Fetcher

ODP Fetcher

Listcube Fetcher

ODP Fetcher

ODP Fetcher

DSO Fetcher

ODP Fetcher

aDSO Fetcher

BEx Query Fetcher

DeltaType

Indication field (type)

Load type

Insert

Update

Delete

Deduplication

Comment

FULL

X

X

X

X

X

X

X

X

F

no

Full load - no delta

TRIGGER

X

/DVD/GL_DELFLAG

D, F, I, L

““

““

D

yes

Delta is captured by database triggers and stored in a shadow table (keys only). During a delta replication, the shadow table will be deduplicated (latest entries) and joined to the source table to get the data itself. https://datavard.atlassian.net/l/c/HV9UoPXX https://datavard.atlassian.net/l/c/mnhf3fwV (Glue-2205) Data replication with delta (Glue-2205) Capturing of deleted entries

VALUE

X

X

X

X

D, F, I, L

no

Delta is captured by field values like a creation or change date or an increasing key number - https://datavard.atlassian.net/l/c/xiyji801. - (Glue-2205) Delta Mechanisms . So based on the field you choose you can capture creates and/or changes. Deletes can only be recognized if the table itself has a delete column. Hard deletes on the database level can’t be captured by this method.

VALUE_DIST

X

X

X

D, F, I, L

DATE

X

X

X

X

D, F, I, L

TMSTMP

X

X

X

X

D, F, I, L

CHANGELOG

X

RODMUPDMOD

D, F, I, L

N

““

D

optional - (Glue-2205) DSO Fetcher

Recordmodes can be selected in the https://datavard.atlassian.net/l/c/8ZtgHTeL. (Glue-2205) Advanced DSO Fetcher . Refer to the table below.

REQUEST

X

RODMUPDMOD

D, F, I, L

N

““

D

SLT

/DVD/GL_DELFLAG

I

U

D

optional

A = Archive

ODP_DELTA

X

X

X

X

X

ODQ_CHANGEMODE

D, F, I, L, R

C

U

D

ODQ_CHANGEMODE and ODQ_ENTITYCNTR are available. Refer to the table below.https://datavard.atlassian.net/l/c/X1UGkpNh

(Glue-2205) ODP Fetcher

...

Doing the merge

Combining the information from above a merge could be done like this (pseudocode):

...

SNP provides a python notebook that can be used as a template to show how the merge can be done on delta tables with a spark environment like Databricks or Azure Synapse. The reading of metadata and the creation of merge statements is are done dynamically. It will be used like this:

...