SlideShare une entreprise Scribd logo
1  sur  34
Télécharger pour lire hors ligne
An Overview of Data Completeness
Assessment Techniques
Simon Razniewski
Free University of Bozen-Bolzano, Italy
Background
• Diplom (~Master) from TU Dresden, Germany, 2010
• PhD from Free University of Bozen-Bolzano, Italy, 2014
– Spent some time at UCSD and AT&T Labs-Research
• Now Assistant Professor in Bozen-Bolzano
• Trilingual province
– (German, Italian, Ladin)
• Autonomous since 43 years
• University founded in 1997
• 3500 students 2
Bolzano
Background (2)
• PhD centered on formal approaches to data
completeness
• Other research interests:
– Data currency (see WebDB2015 paper)
– Process mining
– Data-driven (machine learning) approaches to data
completeness
– ….
• Presentation today: Joint work with Werner Nutt,
Divesh Srivastava and Flip Korn
3
Continent
Name Population
(billion)
Africa 1
America Null
Asia 5
Australia 0.03
Continent
Name Population
(billion)
Area
(million km²)
Africa 1 30
America Null 16
Asia 5 43
Australia 0.03 3
Europe 0.7 4
Data Completeness
• Data quality commonly distinguishes dimensions
– Correctness
– Timeliness
– Completeness
• (In-)completeness is an issue in many settings, e.g.
– Data from multiple sources
– Optional data
– Human-intensive workflows
• Aspects of incompleteness
– Schema
– Records
– Values
Focus today on records, for values see
[Razniewski&Nutt, CIKM 2012] 4
What can one research?
• How to avoid incompleteness
– Information systems design
– Process design
• How to deal with incompleteness
– Statistical procedures to predict missing data
– Missing value imputation
• How to understand incompleteness
– How to describe it
– How to reason about it
5
Motivation: Data warehouse of a
telecommunication company
Warnings
day week ID message
Mon 1 tw37 high voltage
Fri 1 tw37 high voltage
Wed 2 tw37 overheat
Tue 1 tw59 auto restart
Fri 1 tw59 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
Maintenance
ID resp reason
tw37 A disk failure
tw59 D software crash
tw83 B unknown
tw91 C update failure
tw91 C network error
Teams
name specialization
A hardware
B hardware
C network
C software
D network
Admin John knows
• Team table is complete (HR says so)
• Maintenance is complete for teams A, B and C
• their reporting systems export data automatically
• Warnings is complete for all of Week 1,
and Monday and Wednesday of Week 2
• Potential data loss due to a system failure on Tuesday
• Data further than Wednesday maybe not fully loaded
6
John wants to know
“Give me all warnings in week 2 that are generated
by objects in maintenance with a hardware team.”
SELECT *
FROM Warnings W
JOIN Maintenance M ON W.ID = M.ID
JOIN Teams T ON M.responsible = T.name
WHERE W.week = 2
AND T.specialization = 'hardware'
W.Day W.week W.ID W.message M.ID M.resp M.reason T.name T.specialization
Wed 2 tw37 overheat tw37 A disk failure A hardware
Mon 2 tw83 high voltage tw83 B unknown B hardware
Tue 2 tw83 auto restart tw83 B unknown B hardware
Is this all that
hardware
teams have
done?
7
John reasons
“Give me all warnings in week 2 that are generated
by objects in maintenance with a hardware team.”
• Warnings is complete for Week 1 and Monday and Wednesday of Week 2
• Maintenance is complete for teams A, B and C
• Team is complete
 The query result definitely contains all warnings from
– Monday for team A
– Monday for team B
– Monday for team C
– Wednesday for team A
– Wednesday for team B
– Wednesday for team C 8
Warnings
day week ID message
Maintenance
ID resp reason
Teams
name specialization
John looks at the data
 The query result definitely contains all warnings from
– Monday for team A
– Monday for team B
– Monday for team C
– Wednesday for team A
– Wednesday for team B
– Wednesday for team C
• There are no other hardware teams than A and B
 The query result is fully complete for Monday and Wednesday
9
Teams
name specialization
A hardware
B hardware
C network
C software
D network
Questions
“Warnings are complete for Week 1”
1. How can we formally describe
complete parts of a database?
“The query result contains all warnings
from Monday of week 2 for team A”
2. How can we use database completeness
information to identify
complete parts of query answers?
10
Related work
Publication Description Language Focus of the work
Motro,
TODS 1989
Views
Schema-level reasoning
Levy,
VLDB 1996
LC statements,
similar to views
Schema-level reasoning
Fan & Geerts,
PODS 2009
Various query
languages
(CQ-Datalog)
Master data
management,
where an upper bound
database exists
Lang et al.,
SIGMOD 2014
Columns/operators Distributed databases
on the web,
operational failures
during query execution
11
Formalism: Patterns
We have all warnings from week 1
We have all warnings from
Monday of week 2
• Less expressive than previous formalisms
• Can be expressed in the same schema as the data
Warnings
day week ID message
Mon 1 tw37 high voltage
Fri 1 tw37 high voltage
Wed 2 tw37 overheat
Tue 1 tw59 auto restart
Fri 1 tw59 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
Warnings
day week ID message
Mon 1 tw37 high voltage
Fri 1 tw37 high voltage
Wed 2 tw37 overheat
Tue 1 tw59 auto restart
Fri 1 tw59 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
* 1 * *
Warnings
day week ID message
Mon 1 tw37 high voltage
Fri 1 tw37 high voltage
Wed 2 tw37 overheat
Tue 1 tw59 auto restart
Fri 1 tw59 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
* 1 * *
Mon 2 * *
12
Warnings
day week ID message
Mon 1 tw37 high voltage
Fri 1 tw37 high voltage
Wed 2 tw37 overheat
Tue 1 tw59 auto restart
Fri 1 tw59 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
* 1 * *
Mon 2 * *
Warnings
day week ID message
Mon 1 tw37 high voltage
Fri 1 tw37 high voltage
Wed 2 tw37 overheat
Tue 1 tw59 auto restart
Fri 1 tw59 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
* 1 * *
Mon 2 * *
John’s knowledge expressed by patterns
Warnings
day week ID message
Mon 1 tw37 high voltage
Fri 1 tw37 high voltage
Wed 2 tw37 overheat
Tue 1 tw59 auto restart
Fri 1 tw59 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
* 1 * *
Mon 2 * *
Wed 2 * *
Maintenance
ID resp reason
tw37 A disk failure
tw59 D software crash
tw83 B unknown
tw91 C update failure
tw91 C network error
* A *
* B *
* C *
Teams
name specialization
A hardware
B hardware
C network
C software
D network
* *
13
Team table is complete Maintenance is complete
for teams A, B and C
Warnings is complete for all of Week 1,
and Monday and Wednesday of Week 2
John’s conclusions expressed by patterns
“Give me all warnings in week 2 that are generated
by objects in maintenance with a hardware team.”
W.Day W.week W.ID W.message M.ID M.resp M.reason T.name T.specialization
Wed 2 tw37 overheat tw37 A disk failure A hardware
Mon 2 tw83 high voltage tw83 B unknown B hardware
Tue 2 tw83 auto restart tw83 B unknown B hardware
W.Day W.week W.ID W.message M.ID M.resp M.reason T.name T.specialization
Wed 2 tw37 overheat tw37 A disk failure A hardware
Mon 2 tw83 high voltage tw83 B unknown B hardware
Tue 2 tw83 auto restart tw83 B unknown B hardware
Mon * * * * A * A *
14
 The query result contains all warnings from
• Monday for team A
• …
W.Day W.week W.ID W.message M.ID M.resp M.reason T.name T.specialization
Wed 2 tw37 overheat tw37 A disk failure A hardware
Mon 2 tw83 high voltage tw83 B unknown B hardware
Tue 2 tw83 auto restart tw83 B unknown B hardware
Mon * * * * A * A *
Mon * * * * B * B *
Mon * * * * C * C *
Wed * * * * A * A *
Wed * * * * B * B *
Wed * * * * C * C *
How to compute the completeness patterns for queries?
Queries are computed by relational algebra
Here: Select, project, equijoin
Schema reasoning:
- Apply algebra operators to completeness patterns
(analogous to query result computation) 15
𝑊𝑎𝑟𝑛𝑖𝑛𝑔𝑠
𝜎 𝑤𝑒𝑒𝑘=2
⋈ 𝑊.𝐼𝐷=𝑀.𝐼𝐷
𝑀𝑎𝑖𝑛𝑡𝑒𝑛𝑎𝑛𝑐𝑒
⋈ 𝑀.𝑟𝑒𝑠𝑝=𝑇.𝑛𝑎𝑚𝑒
𝜎𝑠𝑝𝑒𝑐= "ℎ𝑤"
𝑇𝑒𝑎𝑚𝑠
?
?
𝝈 𝒔𝒑𝒆𝒄= "𝒉𝒘" (𝑻)
Teams
name specialization
A hardware
B hardware
C network
C software
D network
* *
name specialization
A hardware
B hardware
* *
Rule 1: Statements with * survive
16
Reasoning about selections
name specialization
A hardware
B hardware
17
𝑊𝑎𝑟𝑛𝑖𝑛𝑔𝑠
𝜎 𝑤𝑒𝑒𝑘=2
⋈ 𝑊.𝐼𝐷=𝑀.𝐼𝐷
𝑀𝑎𝑖𝑛𝑡𝑒𝑛𝑎𝑛𝑐𝑒
⋈ 𝑀.𝑟𝑒𝑠𝑝=𝑇.𝑛𝑎𝑚𝑒
𝜎𝑠𝑝𝑒𝑐= "ℎ𝑤"
𝑇𝑒𝑎𝑚𝑠
day week ID message
Wed 2 tw37 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
?
𝝈 𝒘𝒆𝒆𝒌=𝟐(𝑾)
Rule 2: Irrelevant constants are ignored
Rule 3: Selected constants survive and are promoted
Warnings
day week ID message
Mon 1 tw37 high voltage
Fri 1 tw37 high voltage
Wed 2 tw37 overheat
Tue 1 tw59 auto restart
Fri 1 tw59 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
* 1 * *
Mon 2 * *
Wed 2 * *
day week ID message
Wed 2 tw37 overheat
Mon 2 tw83 high voltage
Tue 2 tw83 auto restart
Mon 2 * *
Wed 2 * *
18
Reasoning about selections (2)
*
*
19
𝑊𝑎𝑟𝑛𝑖𝑛𝑔𝑠
𝜎 𝑤𝑒𝑒𝑘=2
⋈ 𝑊.𝐼𝐷=𝑀.𝐼𝐷
𝑀𝑎𝑖𝑛𝑡𝑒𝑛𝑎𝑛𝑐𝑒
⋈ 𝑀.𝑟𝑒𝑠𝑝=𝑇.𝑛𝑎𝑚𝑒
𝜎𝑠𝑝𝑒𝑐= "ℎ𝑤"
𝑇𝑒𝑎𝑚𝑠
M.ID M.resp M.reason T.name T.specialization
tw37 A disk failure A hardware
tw83 B unknown B hardware
?
𝑴 ⋈ 𝑴.𝒓𝒆𝒔𝒑=𝑻.𝒏𝒂𝒎𝒆 𝝈 𝒔𝒑𝒆𝒄= "𝒉𝒘" (𝑻)
name specialization
A hardware
B hardware
* *
Maintenance
ID resp reason
tw37 A disk failure
tw59 D software crash
tw83 B unknown
tw91 C update failure
tw91 C network error
* A *
* B *
* C *
M.ID M.resp M.reason T.name T.specialization
tw37 A disk failure A hardware
tw83 B unknown B hardware
* A * A *
* B * B *
* C * C *
20
Reasoning about joins
Rule 1: Constants join with equal constants
Rule 2: Wildcards join with anything
Rule 3: Constants can be promoted
M.ID M.resp M.reason T.name T.specialization
tw37 A disk failure A hardware
tw83 B unknown B hardware
* A * * *
* B * * *
* C * * *
* * * A *
* * * B *
* * * C *
Algorithmic completeness
Proven: Extended algebra gives all conclusions
that hold on the schema level
(reasoning only with the yellow metadata)
• Independent of the algebra tree chosen
21
𝑴 ⋈ 𝑴.𝒓𝒆𝒔𝒑=𝑻.𝒏𝒂𝒎𝒆 𝝈 𝒔𝒑𝒆𝒄= "𝒉𝒘" (𝑻)
name specialization
A hardware
B hardware
* *
Maintenance
ID resp reason
tw37 A disk failure
tw59 D software crash
tw83 B unknown
tw91 C update failure
tw91 C network error
* A *
* B *
* C *
22
Looking at the data
M.ID M.resp M.reason T.name T.specialization
tw37 A disk failure A hardware
tw83 B unknown B hardware
* A * * *
* B * * *
* C * * *
* * * A *
* * * B *
* * * C *
There
cannot be
other hardware
teams than
A and B
M.ID M.resp M.reason T.name T.specialization
tw37 A disk failure A hardware
tw83 B unknown B hardware
* * * * *
Database instance
allows for more promotion!
(for details see paper)
So much about the theory, but…
1. How can we implement this?
2. How fast is this?
– In comparison with query evaluation
3. How can we manage large sets of
statements?
23
How can we implement this?
• Ideally, a plugin inside a DBMS
– Promotion procedure benefits from fast access to data
• So far: Separate Java program
• Schema-level algebra can also be encoded in SQL
 Could compile normal queries into metadata queries
24
How fast is this? (1)
• Synthetic data
• Wikipedia has around 1000 lists declared as complete
(using a template or in natural language)
25
http://en.wikipedia.org/wiki/List_of_places_in_Carmarthenshire_%28categorised%29
• Manually extracted some and grouped them by topic
– Recurrent topics: Sports teams, political assemblies, geographical features,
songs, operas and other pieces of art
• Generated one table each about cities, schools and countries
26
city
name country state county
* USA Virginia *
* Germany * *
* Ukraine * *
* Bulgaria * *
* USA New York *
* UK Carmarthenshire *
* USA West Virginia Hampshire County
* Czech Moravian-Silesia Nový Jičín
* Slovenia * *
How fast is this? (2)
27
SELECT *
FROM country, city, school
WHERE country.capital=city.name
AND city.state=school.state
SQL runtime: 2040 ms (25891 records)
Completeness pattern runtime: 900 ms (46 patterns)
Median over 7 join queries:
• SQL runtime: 2040 ms
• Completeness pattern runtime: 460 ms
How fast is this? (3)
How can we manage large sets of
patterns?
Redundancies in workflows may lead to redundant patterns
- Introduce overhead and restrict comprehensibility
 Should be identified and removed
John reports first that all data for Monday of week 2 is complete,
later, that the data for the whole week 2 is complete
(Monday,2)
(*,2)
Trivial?
(Monday,*,hardware) (Wednesday,*,software)
(Tuesday,2,software) (*,*,hardware)
(Monday,2,*) (*,2,software) 28
Minimization of sets of patterns: Options
• Option 1: Pairwise comparison
• Option 2: Employment of index structures for quick entailment checking
(similar problem studied in theorem proving/AI)
– Path indexes
– Discrimination trees
• Option 3: Hashing
– Store all statements in a hashmap
– For each statement, all generalizations are generated (exponentially many!)
– A statement is most general, if none of its generalizations exists in the hashmap
(Mon, 1, sw)  (*, 1, sw), (Mon, *, sw), (Mon, 1, *), (*, *, sw), (Mon, *, *), (*, 1, *), (*, *, *)
• Options can be combined with sorting by number of wildcards
(*, *, *), (Mon, *, *), (*, 2, sw), (Tue, 1, hw)
 Later statements cannot entail earlier statements
29
Minimization of sets of patterns -
Results
30
(Pairwise comparison and path
indexes failed immediately)
Time/space tradeoff:
• Unsorted discrimination trees fasted
• Sorted hashing/discrimination trees most space efficient
Summary
• Completeness patterns are a natural way to describe
complete parts of databases and query answers
– Can be expressed in the same schema
• Modified the relational algebra
to manipulate completeness patterns
– Selection and projection easy
– Join may be expensive (in theory, in practice, usually not)
• Current work
– Correctness and completeness patterns
– Column-level patterns
31
Open Questions
• Automated ways to get large sets of statements
– Sensor networks
– Web extraction (e.g. from Wikipedia)
– Streams (e.g. transit data)
• What can be said if an answer is not be guaranteed to be
complete
– Probabilistic completeness assessment based on historical data
– Error bounds
• Algorithmic completeness of promotion
32
References
• Technical part today based on:
– Identifying the Extent of Completeness of Query Answers over
Partially Complete Databases, Simon Razniewski, Flip Korn,
Werner Nutt and Divesh Srivastava, SIGMOD 2015
• Other relevant papers:
– Spatial data completeness: Adding Completeness Information to
Query Answers over Spatial Data, Simon Razniewski and Werner
Nutt, SIGSPATIAL, 2014
– Completeness over processes: Verification of Query
Completeness over Processes, Simon Razniewski, Marco Montali
and Werner Nutt, BPM 2013
– Completeness of values: Completeness of Queries over SQL
Databases, Werner Nutt and Simon Razniewski, CIKM 2012
33
Acknowledgment
This research has been supported by the project “MAGIC”,
funded by the Province of Bozen-Bolzano, Italy

Contenu connexe

Dernier

Food_safety_Management_pptx.pptx in microbiology
Food_safety_Management_pptx.pptx in microbiologyFood_safety_Management_pptx.pptx in microbiology
Food_safety_Management_pptx.pptx in microbiologyHemantThakare8
 
Role of Gibberellins, mode of action and external applications.pptx
Role of Gibberellins, mode of action and external applications.pptxRole of Gibberellins, mode of action and external applications.pptx
Role of Gibberellins, mode of action and external applications.pptxjana861314
 
Pests of Sunflower_Binomics_Identification_Dr.UPR
Pests of Sunflower_Binomics_Identification_Dr.UPRPests of Sunflower_Binomics_Identification_Dr.UPR
Pests of Sunflower_Binomics_Identification_Dr.UPRPirithiRaju
 
CHROMATOGRAPHY PALLAVI RAWAT.pptx
CHROMATOGRAPHY  PALLAVI RAWAT.pptxCHROMATOGRAPHY  PALLAVI RAWAT.pptx
CHROMATOGRAPHY PALLAVI RAWAT.pptxpallavirawat456
 
EGYPTIAN IMPRINT IN SPAIN Lecture by Dr Abeer Zahana
EGYPTIAN IMPRINT IN SPAIN Lecture by Dr Abeer ZahanaEGYPTIAN IMPRINT IN SPAIN Lecture by Dr Abeer Zahana
EGYPTIAN IMPRINT IN SPAIN Lecture by Dr Abeer ZahanaDr.Mahmoud Abbas
 
The Sensory Organs, Anatomy and Function
The Sensory Organs, Anatomy and FunctionThe Sensory Organs, Anatomy and Function
The Sensory Organs, Anatomy and FunctionJadeNovelo1
 
Interpreting SDSS extragalactic data in the era of JWST
Interpreting SDSS extragalactic data in the era of JWSTInterpreting SDSS extragalactic data in the era of JWST
Interpreting SDSS extragalactic data in the era of JWSTAlexander F. Mayer
 
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxEnvironmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxpriyankatabhane
 
Speed Breeding in Vegetable Crops- innovative approach for present era of cro...
Speed Breeding in Vegetable Crops- innovative approach for present era of cro...Speed Breeding in Vegetable Crops- innovative approach for present era of cro...
Speed Breeding in Vegetable Crops- innovative approach for present era of cro...jana861314
 
Introduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxIntroduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxMedical College
 
Science (Communication) and Wikipedia - Potentials and Pitfalls
Science (Communication) and Wikipedia - Potentials and PitfallsScience (Communication) and Wikipedia - Potentials and Pitfalls
Science (Communication) and Wikipedia - Potentials and PitfallsDobusch Leonhard
 
LAMP PCR.pptx by Dr. Chayanika Das, Ph.D, Veterinary Microbiology
LAMP PCR.pptx by Dr. Chayanika Das, Ph.D, Veterinary MicrobiologyLAMP PCR.pptx by Dr. Chayanika Das, Ph.D, Veterinary Microbiology
LAMP PCR.pptx by Dr. Chayanika Das, Ph.D, Veterinary MicrobiologyChayanika Das
 
Oxo-Acids of Halogens and their Salts.pptx
Oxo-Acids of Halogens and their Salts.pptxOxo-Acids of Halogens and their Salts.pptx
Oxo-Acids of Halogens and their Salts.pptxfarhanvvdk
 
Observational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsObservational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsSérgio Sacani
 
Timeless Cosmology: Towards a Geometric Origin of Cosmological Correlations
Timeless Cosmology: Towards a Geometric Origin of Cosmological CorrelationsTimeless Cosmology: Towards a Geometric Origin of Cosmological Correlations
Timeless Cosmology: Towards a Geometric Origin of Cosmological CorrelationsDanielBaumann11
 
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPRPirithiRaju
 
Total Legal: A “Joint” Journey into the Chemistry of Cannabinoids
Total Legal: A “Joint” Journey into the Chemistry of CannabinoidsTotal Legal: A “Joint” Journey into the Chemistry of Cannabinoids
Total Legal: A “Joint” Journey into the Chemistry of CannabinoidsMarkus Roggen
 
Environmental acoustics- noise criteria.pptx
Environmental acoustics- noise criteria.pptxEnvironmental acoustics- noise criteria.pptx
Environmental acoustics- noise criteria.pptxpriyankatabhane
 
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests GlycosidesGLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests GlycosidesNandakishor Bhaurao Deshmukh
 

Dernier (20)

Food_safety_Management_pptx.pptx in microbiology
Food_safety_Management_pptx.pptx in microbiologyFood_safety_Management_pptx.pptx in microbiology
Food_safety_Management_pptx.pptx in microbiology
 
Role of Gibberellins, mode of action and external applications.pptx
Role of Gibberellins, mode of action and external applications.pptxRole of Gibberellins, mode of action and external applications.pptx
Role of Gibberellins, mode of action and external applications.pptx
 
Pests of Sunflower_Binomics_Identification_Dr.UPR
Pests of Sunflower_Binomics_Identification_Dr.UPRPests of Sunflower_Binomics_Identification_Dr.UPR
Pests of Sunflower_Binomics_Identification_Dr.UPR
 
CHROMATOGRAPHY PALLAVI RAWAT.pptx
CHROMATOGRAPHY  PALLAVI RAWAT.pptxCHROMATOGRAPHY  PALLAVI RAWAT.pptx
CHROMATOGRAPHY PALLAVI RAWAT.pptx
 
EGYPTIAN IMPRINT IN SPAIN Lecture by Dr Abeer Zahana
EGYPTIAN IMPRINT IN SPAIN Lecture by Dr Abeer ZahanaEGYPTIAN IMPRINT IN SPAIN Lecture by Dr Abeer Zahana
EGYPTIAN IMPRINT IN SPAIN Lecture by Dr Abeer Zahana
 
The Sensory Organs, Anatomy and Function
The Sensory Organs, Anatomy and FunctionThe Sensory Organs, Anatomy and Function
The Sensory Organs, Anatomy and Function
 
Interpreting SDSS extragalactic data in the era of JWST
Interpreting SDSS extragalactic data in the era of JWSTInterpreting SDSS extragalactic data in the era of JWST
Interpreting SDSS extragalactic data in the era of JWST
 
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxEnvironmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
 
Speed Breeding in Vegetable Crops- innovative approach for present era of cro...
Speed Breeding in Vegetable Crops- innovative approach for present era of cro...Speed Breeding in Vegetable Crops- innovative approach for present era of cro...
Speed Breeding in Vegetable Crops- innovative approach for present era of cro...
 
Introduction Classification Of Alkaloids
Introduction Classification Of AlkaloidsIntroduction Classification Of Alkaloids
Introduction Classification Of Alkaloids
 
Introduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxIntroduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptx
 
Science (Communication) and Wikipedia - Potentials and Pitfalls
Science (Communication) and Wikipedia - Potentials and PitfallsScience (Communication) and Wikipedia - Potentials and Pitfalls
Science (Communication) and Wikipedia - Potentials and Pitfalls
 
LAMP PCR.pptx by Dr. Chayanika Das, Ph.D, Veterinary Microbiology
LAMP PCR.pptx by Dr. Chayanika Das, Ph.D, Veterinary MicrobiologyLAMP PCR.pptx by Dr. Chayanika Das, Ph.D, Veterinary Microbiology
LAMP PCR.pptx by Dr. Chayanika Das, Ph.D, Veterinary Microbiology
 
Oxo-Acids of Halogens and their Salts.pptx
Oxo-Acids of Halogens and their Salts.pptxOxo-Acids of Halogens and their Salts.pptx
Oxo-Acids of Halogens and their Salts.pptx
 
Observational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsObservational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive stars
 
Timeless Cosmology: Towards a Geometric Origin of Cosmological Correlations
Timeless Cosmology: Towards a Geometric Origin of Cosmological CorrelationsTimeless Cosmology: Towards a Geometric Origin of Cosmological Correlations
Timeless Cosmology: Towards a Geometric Origin of Cosmological Correlations
 
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
6.1 Pests of Groundnut_Binomics_Identification_Dr.UPR
 
Total Legal: A “Joint” Journey into the Chemistry of Cannabinoids
Total Legal: A “Joint” Journey into the Chemistry of CannabinoidsTotal Legal: A “Joint” Journey into the Chemistry of Cannabinoids
Total Legal: A “Joint” Journey into the Chemistry of Cannabinoids
 
Environmental acoustics- noise criteria.pptx
Environmental acoustics- noise criteria.pptxEnvironmental acoustics- noise criteria.pptx
Environmental acoustics- noise criteria.pptx
 
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests GlycosidesGLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
 

An Overview of Data Completeness Assessment Techniques

  • 1. An Overview of Data Completeness Assessment Techniques Simon Razniewski Free University of Bozen-Bolzano, Italy
  • 2. Background • Diplom (~Master) from TU Dresden, Germany, 2010 • PhD from Free University of Bozen-Bolzano, Italy, 2014 – Spent some time at UCSD and AT&T Labs-Research • Now Assistant Professor in Bozen-Bolzano • Trilingual province – (German, Italian, Ladin) • Autonomous since 43 years • University founded in 1997 • 3500 students 2 Bolzano
  • 3. Background (2) • PhD centered on formal approaches to data completeness • Other research interests: – Data currency (see WebDB2015 paper) – Process mining – Data-driven (machine learning) approaches to data completeness – …. • Presentation today: Joint work with Werner Nutt, Divesh Srivastava and Flip Korn 3
  • 4. Continent Name Population (billion) Africa 1 America Null Asia 5 Australia 0.03 Continent Name Population (billion) Area (million km²) Africa 1 30 America Null 16 Asia 5 43 Australia 0.03 3 Europe 0.7 4 Data Completeness • Data quality commonly distinguishes dimensions – Correctness – Timeliness – Completeness • (In-)completeness is an issue in many settings, e.g. – Data from multiple sources – Optional data – Human-intensive workflows • Aspects of incompleteness – Schema – Records – Values Focus today on records, for values see [Razniewski&Nutt, CIKM 2012] 4
  • 5. What can one research? • How to avoid incompleteness – Information systems design – Process design • How to deal with incompleteness – Statistical procedures to predict missing data – Missing value imputation • How to understand incompleteness – How to describe it – How to reason about it 5
  • 6. Motivation: Data warehouse of a telecommunication company Warnings day week ID message Mon 1 tw37 high voltage Fri 1 tw37 high voltage Wed 2 tw37 overheat Tue 1 tw59 auto restart Fri 1 tw59 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart Maintenance ID resp reason tw37 A disk failure tw59 D software crash tw83 B unknown tw91 C update failure tw91 C network error Teams name specialization A hardware B hardware C network C software D network Admin John knows • Team table is complete (HR says so) • Maintenance is complete for teams A, B and C • their reporting systems export data automatically • Warnings is complete for all of Week 1, and Monday and Wednesday of Week 2 • Potential data loss due to a system failure on Tuesday • Data further than Wednesday maybe not fully loaded 6
  • 7. John wants to know “Give me all warnings in week 2 that are generated by objects in maintenance with a hardware team.” SELECT * FROM Warnings W JOIN Maintenance M ON W.ID = M.ID JOIN Teams T ON M.responsible = T.name WHERE W.week = 2 AND T.specialization = 'hardware' W.Day W.week W.ID W.message M.ID M.resp M.reason T.name T.specialization Wed 2 tw37 overheat tw37 A disk failure A hardware Mon 2 tw83 high voltage tw83 B unknown B hardware Tue 2 tw83 auto restart tw83 B unknown B hardware Is this all that hardware teams have done? 7
  • 8. John reasons “Give me all warnings in week 2 that are generated by objects in maintenance with a hardware team.” • Warnings is complete for Week 1 and Monday and Wednesday of Week 2 • Maintenance is complete for teams A, B and C • Team is complete  The query result definitely contains all warnings from – Monday for team A – Monday for team B – Monday for team C – Wednesday for team A – Wednesday for team B – Wednesday for team C 8 Warnings day week ID message Maintenance ID resp reason Teams name specialization
  • 9. John looks at the data  The query result definitely contains all warnings from – Monday for team A – Monday for team B – Monday for team C – Wednesday for team A – Wednesday for team B – Wednesday for team C • There are no other hardware teams than A and B  The query result is fully complete for Monday and Wednesday 9 Teams name specialization A hardware B hardware C network C software D network
  • 10. Questions “Warnings are complete for Week 1” 1. How can we formally describe complete parts of a database? “The query result contains all warnings from Monday of week 2 for team A” 2. How can we use database completeness information to identify complete parts of query answers? 10
  • 11. Related work Publication Description Language Focus of the work Motro, TODS 1989 Views Schema-level reasoning Levy, VLDB 1996 LC statements, similar to views Schema-level reasoning Fan & Geerts, PODS 2009 Various query languages (CQ-Datalog) Master data management, where an upper bound database exists Lang et al., SIGMOD 2014 Columns/operators Distributed databases on the web, operational failures during query execution 11
  • 12. Formalism: Patterns We have all warnings from week 1 We have all warnings from Monday of week 2 • Less expressive than previous formalisms • Can be expressed in the same schema as the data Warnings day week ID message Mon 1 tw37 high voltage Fri 1 tw37 high voltage Wed 2 tw37 overheat Tue 1 tw59 auto restart Fri 1 tw59 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart Warnings day week ID message Mon 1 tw37 high voltage Fri 1 tw37 high voltage Wed 2 tw37 overheat Tue 1 tw59 auto restart Fri 1 tw59 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart * 1 * * Warnings day week ID message Mon 1 tw37 high voltage Fri 1 tw37 high voltage Wed 2 tw37 overheat Tue 1 tw59 auto restart Fri 1 tw59 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart * 1 * * Mon 2 * * 12 Warnings day week ID message Mon 1 tw37 high voltage Fri 1 tw37 high voltage Wed 2 tw37 overheat Tue 1 tw59 auto restart Fri 1 tw59 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart * 1 * * Mon 2 * * Warnings day week ID message Mon 1 tw37 high voltage Fri 1 tw37 high voltage Wed 2 tw37 overheat Tue 1 tw59 auto restart Fri 1 tw59 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart * 1 * * Mon 2 * *
  • 13. John’s knowledge expressed by patterns Warnings day week ID message Mon 1 tw37 high voltage Fri 1 tw37 high voltage Wed 2 tw37 overheat Tue 1 tw59 auto restart Fri 1 tw59 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart * 1 * * Mon 2 * * Wed 2 * * Maintenance ID resp reason tw37 A disk failure tw59 D software crash tw83 B unknown tw91 C update failure tw91 C network error * A * * B * * C * Teams name specialization A hardware B hardware C network C software D network * * 13 Team table is complete Maintenance is complete for teams A, B and C Warnings is complete for all of Week 1, and Monday and Wednesday of Week 2
  • 14. John’s conclusions expressed by patterns “Give me all warnings in week 2 that are generated by objects in maintenance with a hardware team.” W.Day W.week W.ID W.message M.ID M.resp M.reason T.name T.specialization Wed 2 tw37 overheat tw37 A disk failure A hardware Mon 2 tw83 high voltage tw83 B unknown B hardware Tue 2 tw83 auto restart tw83 B unknown B hardware W.Day W.week W.ID W.message M.ID M.resp M.reason T.name T.specialization Wed 2 tw37 overheat tw37 A disk failure A hardware Mon 2 tw83 high voltage tw83 B unknown B hardware Tue 2 tw83 auto restart tw83 B unknown B hardware Mon * * * * A * A * 14  The query result contains all warnings from • Monday for team A • … W.Day W.week W.ID W.message M.ID M.resp M.reason T.name T.specialization Wed 2 tw37 overheat tw37 A disk failure A hardware Mon 2 tw83 high voltage tw83 B unknown B hardware Tue 2 tw83 auto restart tw83 B unknown B hardware Mon * * * * A * A * Mon * * * * B * B * Mon * * * * C * C * Wed * * * * A * A * Wed * * * * B * B * Wed * * * * C * C *
  • 15. How to compute the completeness patterns for queries? Queries are computed by relational algebra Here: Select, project, equijoin Schema reasoning: - Apply algebra operators to completeness patterns (analogous to query result computation) 15 𝑊𝑎𝑟𝑛𝑖𝑛𝑔𝑠 𝜎 𝑤𝑒𝑒𝑘=2 ⋈ 𝑊.𝐼𝐷=𝑀.𝐼𝐷 𝑀𝑎𝑖𝑛𝑡𝑒𝑛𝑎𝑛𝑐𝑒 ⋈ 𝑀.𝑟𝑒𝑠𝑝=𝑇.𝑛𝑎𝑚𝑒 𝜎𝑠𝑝𝑒𝑐= "ℎ𝑤" 𝑇𝑒𝑎𝑚𝑠
  • 16. ? ? 𝝈 𝒔𝒑𝒆𝒄= "𝒉𝒘" (𝑻) Teams name specialization A hardware B hardware C network C software D network * * name specialization A hardware B hardware * * Rule 1: Statements with * survive 16 Reasoning about selections name specialization A hardware B hardware
  • 17. 17 𝑊𝑎𝑟𝑛𝑖𝑛𝑔𝑠 𝜎 𝑤𝑒𝑒𝑘=2 ⋈ 𝑊.𝐼𝐷=𝑀.𝐼𝐷 𝑀𝑎𝑖𝑛𝑡𝑒𝑛𝑎𝑛𝑐𝑒 ⋈ 𝑀.𝑟𝑒𝑠𝑝=𝑇.𝑛𝑎𝑚𝑒 𝜎𝑠𝑝𝑒𝑐= "ℎ𝑤" 𝑇𝑒𝑎𝑚𝑠
  • 18. day week ID message Wed 2 tw37 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart ? 𝝈 𝒘𝒆𝒆𝒌=𝟐(𝑾) Rule 2: Irrelevant constants are ignored Rule 3: Selected constants survive and are promoted Warnings day week ID message Mon 1 tw37 high voltage Fri 1 tw37 high voltage Wed 2 tw37 overheat Tue 1 tw59 auto restart Fri 1 tw59 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart * 1 * * Mon 2 * * Wed 2 * * day week ID message Wed 2 tw37 overheat Mon 2 tw83 high voltage Tue 2 tw83 auto restart Mon 2 * * Wed 2 * * 18 Reasoning about selections (2) * *
  • 19. 19 𝑊𝑎𝑟𝑛𝑖𝑛𝑔𝑠 𝜎 𝑤𝑒𝑒𝑘=2 ⋈ 𝑊.𝐼𝐷=𝑀.𝐼𝐷 𝑀𝑎𝑖𝑛𝑡𝑒𝑛𝑎𝑛𝑐𝑒 ⋈ 𝑀.𝑟𝑒𝑠𝑝=𝑇.𝑛𝑎𝑚𝑒 𝜎𝑠𝑝𝑒𝑐= "ℎ𝑤" 𝑇𝑒𝑎𝑚𝑠
  • 20. M.ID M.resp M.reason T.name T.specialization tw37 A disk failure A hardware tw83 B unknown B hardware ? 𝑴 ⋈ 𝑴.𝒓𝒆𝒔𝒑=𝑻.𝒏𝒂𝒎𝒆 𝝈 𝒔𝒑𝒆𝒄= "𝒉𝒘" (𝑻) name specialization A hardware B hardware * * Maintenance ID resp reason tw37 A disk failure tw59 D software crash tw83 B unknown tw91 C update failure tw91 C network error * A * * B * * C * M.ID M.resp M.reason T.name T.specialization tw37 A disk failure A hardware tw83 B unknown B hardware * A * A * * B * B * * C * C * 20 Reasoning about joins Rule 1: Constants join with equal constants Rule 2: Wildcards join with anything Rule 3: Constants can be promoted M.ID M.resp M.reason T.name T.specialization tw37 A disk failure A hardware tw83 B unknown B hardware * A * * * * B * * * * C * * * * * * A * * * * B * * * * C *
  • 21. Algorithmic completeness Proven: Extended algebra gives all conclusions that hold on the schema level (reasoning only with the yellow metadata) • Independent of the algebra tree chosen 21
  • 22. 𝑴 ⋈ 𝑴.𝒓𝒆𝒔𝒑=𝑻.𝒏𝒂𝒎𝒆 𝝈 𝒔𝒑𝒆𝒄= "𝒉𝒘" (𝑻) name specialization A hardware B hardware * * Maintenance ID resp reason tw37 A disk failure tw59 D software crash tw83 B unknown tw91 C update failure tw91 C network error * A * * B * * C * 22 Looking at the data M.ID M.resp M.reason T.name T.specialization tw37 A disk failure A hardware tw83 B unknown B hardware * A * * * * B * * * * C * * * * * * A * * * * B * * * * C * There cannot be other hardware teams than A and B M.ID M.resp M.reason T.name T.specialization tw37 A disk failure A hardware tw83 B unknown B hardware * * * * * Database instance allows for more promotion! (for details see paper)
  • 23. So much about the theory, but… 1. How can we implement this? 2. How fast is this? – In comparison with query evaluation 3. How can we manage large sets of statements? 23
  • 24. How can we implement this? • Ideally, a plugin inside a DBMS – Promotion procedure benefits from fast access to data • So far: Separate Java program • Schema-level algebra can also be encoded in SQL  Could compile normal queries into metadata queries 24
  • 25. How fast is this? (1) • Synthetic data • Wikipedia has around 1000 lists declared as complete (using a template or in natural language) 25 http://en.wikipedia.org/wiki/List_of_places_in_Carmarthenshire_%28categorised%29
  • 26. • Manually extracted some and grouped them by topic – Recurrent topics: Sports teams, political assemblies, geographical features, songs, operas and other pieces of art • Generated one table each about cities, schools and countries 26 city name country state county * USA Virginia * * Germany * * * Ukraine * * * Bulgaria * * * USA New York * * UK Carmarthenshire * * USA West Virginia Hampshire County * Czech Moravian-Silesia Nový Jičín * Slovenia * * How fast is this? (2)
  • 27. 27 SELECT * FROM country, city, school WHERE country.capital=city.name AND city.state=school.state SQL runtime: 2040 ms (25891 records) Completeness pattern runtime: 900 ms (46 patterns) Median over 7 join queries: • SQL runtime: 2040 ms • Completeness pattern runtime: 460 ms How fast is this? (3)
  • 28. How can we manage large sets of patterns? Redundancies in workflows may lead to redundant patterns - Introduce overhead and restrict comprehensibility  Should be identified and removed John reports first that all data for Monday of week 2 is complete, later, that the data for the whole week 2 is complete (Monday,2) (*,2) Trivial? (Monday,*,hardware) (Wednesday,*,software) (Tuesday,2,software) (*,*,hardware) (Monday,2,*) (*,2,software) 28
  • 29. Minimization of sets of patterns: Options • Option 1: Pairwise comparison • Option 2: Employment of index structures for quick entailment checking (similar problem studied in theorem proving/AI) – Path indexes – Discrimination trees • Option 3: Hashing – Store all statements in a hashmap – For each statement, all generalizations are generated (exponentially many!) – A statement is most general, if none of its generalizations exists in the hashmap (Mon, 1, sw)  (*, 1, sw), (Mon, *, sw), (Mon, 1, *), (*, *, sw), (Mon, *, *), (*, 1, *), (*, *, *) • Options can be combined with sorting by number of wildcards (*, *, *), (Mon, *, *), (*, 2, sw), (Tue, 1, hw)  Later statements cannot entail earlier statements 29
  • 30. Minimization of sets of patterns - Results 30 (Pairwise comparison and path indexes failed immediately) Time/space tradeoff: • Unsorted discrimination trees fasted • Sorted hashing/discrimination trees most space efficient
  • 31. Summary • Completeness patterns are a natural way to describe complete parts of databases and query answers – Can be expressed in the same schema • Modified the relational algebra to manipulate completeness patterns – Selection and projection easy – Join may be expensive (in theory, in practice, usually not) • Current work – Correctness and completeness patterns – Column-level patterns 31
  • 32. Open Questions • Automated ways to get large sets of statements – Sensor networks – Web extraction (e.g. from Wikipedia) – Streams (e.g. transit data) • What can be said if an answer is not be guaranteed to be complete – Probabilistic completeness assessment based on historical data – Error bounds • Algorithmic completeness of promotion 32
  • 33. References • Technical part today based on: – Identifying the Extent of Completeness of Query Answers over Partially Complete Databases, Simon Razniewski, Flip Korn, Werner Nutt and Divesh Srivastava, SIGMOD 2015 • Other relevant papers: – Spatial data completeness: Adding Completeness Information to Query Answers over Spatial Data, Simon Razniewski and Werner Nutt, SIGSPATIAL, 2014 – Completeness over processes: Verification of Query Completeness over Processes, Simon Razniewski, Marco Montali and Werner Nutt, BPM 2013 – Completeness of values: Completeness of Queries over SQL Databases, Werner Nutt and Simon Razniewski, CIKM 2012 33
  • 34. Acknowledgment This research has been supported by the project “MAGIC”, funded by the Province of Bozen-Bolzano, Italy

Notes de l'éditeur

  1. These are really all, while for other days, additional records might show up
  2. This are patterns for single tables.
  3. Say: Efficient implementation of this one possible
  4. Global or not says whether a pattern is compared with all others, or only with the ones loaded so far