19
1 PODS 2002 1 Models and Issues in Data Models and Issues in Data Stream Systems Stream Systems (with changes by CZ (with changes by CZ) Rajeev Motwani Stanford University (with Brian Babcock, Shivnath Babu, Mayur Datar, and Jennifer Widom) PODS 2002 2 Data Streams Data Streams Traditional DBMS – data stored in finite, persistent data sets data sets New Applications – data input as continuous, ordered data streams data streams – Network monitoring and traffic engineering Telecom call records – Network security – Financial applications – Sensor networks – Manufacturing processes Web logs and clickstreams – Massive data sets

Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

  • Upload
    others

  • View
    2

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

1

PODS 2002 1

Models and Issues in Data Models and Issues in Data Stream SystemsStream Systems

(with changes by CZ(with changes by CZ))Rajeev Motwani

Stanford University(with Brian Babcock, Shivnath Babu,Mayur Datar, and Jennifer Widom)

PODS 2002 2

Data StreamsData Streams• Traditional DBMS – data stored in finite,

persistent data setsdata sets

• New Applications – data input as continuous, ordered data streamsdata streams– Network monitoring and traffic engineering– Telecom call records– Network security – Financial applications– Sensor networks– Manufacturing processes– Web logs and clickstreams– Massive data sets

Page 2: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

2

PODS 2002 3

Data Stream Management SystemData Stream Management System

User/ApplicationUser/Application

Register QueryRegister Query

Stream QueryProcessor

ResultsResults

Scratch SpaceScratch Space(Memory and/or Disk)(Memory and/or Disk)

DataStream

ManagementSystem(DSMS)

PODS 2002 4

Sample ApplicationsSample Applications• Network security

(e.g., iPolicy, NetForensics/Cisco, Niksun)– Network packet streams, user session information– Queries: URL filtering, detecting intrusions & DOS

attacks & viruses

• Financial applications(e.g., Traderbot)– Streams of trading data, stock tickers, news feeds– Queries: arbitrage opportunities, analytics, patterns– SEC requirement on closing trades

Page 3: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

3

PODS 2002 5

Executive SummaryExecutive Summary• Data Stream Management Systems (DSMS)

– Highlight issues and motivate research– Not a tutorial or comprehensive survey

• Caveats– Personal view of emerging field? Stanford STREAM Project bias? Cannot cover all projects in detail

PODS 2002 6

DBMS versus DSMSDBMS versus DSMS• Persistent relations

• One-time queries

• Random access

• “Unbounded” disk store

• Only current state matters

• No real-time services

• Assume precise data

• Transient streams

• Continuous queries

• Sequential access

• Bounded main memory

• History/arrival-order is critical

• Real-time requirements

• Data stale/imprecise

Page 4: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

4

PODS 2002 7

Making Things ConcreteMaking Things Concrete

DSMS

Outgoing (call_ID, caller, time, event)Incoming (call_ID, callee, time, event)

event = start or end

CentralOffice

CentralOffice

ALICE BOB

PODS 2002 8

Query 1 (Query 1 (selfself--joinjoin))• Find all outgoing calls longer than 2 minutes

SELECT O1.call_ID, O1.callerFROM Outgoing O1, Outgoing O2WHERE (O2.time – O1.time > 2

AND O1.call_ID = O2.call_ID AND O1.event = startAND O2.event = end)

• Result requires unbounded storage

• Can provide result as data stream

• Can output after 2 min, without seeing end

Page 5: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

5

PODS 2002 9

Query 2 (Query 2 (joinjoin))• Pair up callers and callees

SELECT O.caller, I.calleeFROM Outgoing O, Incoming IWHERE O.call_ID = I.call_ID

• Can still provide result as data stream

• Requires unbounded temporary storage …

• … unless streams are near-synchronized

PODS 2002 10

Query 3 Query 3 ((groupgroup--by aggregationby aggregation))• Total connection time for each caller

SELECT O1.caller, sum(O2.time – O1.time)FROM Outgoing O1, Outgoing O2WHERE (O1.call_ID = O2.call_ID

AND O1.event = start AND O2.event = end)

GROUP BY O1.caller

• Join: a very inefficient solution (CZ)

• sum: some window must be specified

Page 6: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

6

PODS 2002 11

Outline of Remaining TalkOutline of Remaining Talk• Stream Models and DSMS Architectures

• Query Processing

• Runtime and Systems Issues

• Algorithms

• Conclusion

PODS 2002 12

Data ModelData Model• Append-only

– Call records

• Updates– Stock tickers

• Deletes– Transactional data

• Meta-Data– Control signals, punctuations

System Internals – probably need all above

Page 7: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

7

PODS 2002 13

Related Database TechnologyRelated Database Technology• DSMS must use ideas, but none is substitute

– Triggers, Materialized Views in Conventional DBMS– Main-Memory Databases– Distributed Databases– Pub/Sub Systems– Active Databases – Sequence/Temporal/Timeseries Databases – Realtime Databases– Adaptive, Online, Partial Results

• Novelty in DSMS– Semantics: input ordering, streaming output, …– State: cannot store unending streams, yet need history– Performance: rate, variability, imprecision, …

PODS 2002 14

Stream ProjectsStream Projects•• Amazon/CougarAmazon/Cougar (Cornell) – sensors

• Aurora (Brown/MIT) – sensor monitoring, dataflow

•• Hancock Hancock (AT&T) – telecom streams

• Niagara (OGI/Wisconsin) – Internet XML databases

•• OpenCQ OpenCQ (Georgia) – triggers, incr. view maintenance

• Stream (Stanford) – general-purpose DSMS

•• TapestryTapestry (Xerox) – pub/sub content-based filtering

• Telegraph (Berkeley) – adaptive engine for sensors

•• TribecaTribeca (Bellcore) – network monitoring

• ATLAS(UCLA) – Query power: DB/DS integration.

Page 8: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

8

PODS 2002 15

Aurora/STREAM OverviewAurora/STREAM Overview

Input streams

Users issuecontinuous andad-hoc queries

Administrator monitors query execution and adjusts

run-time parameters

Applications register continuous queries

Output streams

?x

? ? x

Waiting Op

Ready Op

Running Op

Synopses Query Plans

HistoricalStorage

PODS 2002 16

AdaptivityAdaptivity (Telegraph)(Telegraph)

• Runtime Adaptivity

• Multi-query Optimization

• Framework – implements arbitrary schemes

EDDYR

STeMs for joinOutputQueues

Input Streams

S

T

R S T

R x S x Tgrouped

filter (S.B)

groupedfilter (R.A)

Page 9: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

9

PODS 2002 17

QueryQuery--Split Scheme (Niagara)Split Scheme (Niagara)

• Aggregate subscription for efficiency

• Split – evaluate trigger only when file updated

• Triggers – multi-query optimization

constanttable

join

scan

split

scan

scan scan

trig.Act.i trig.Act.j

file i file j

Quotes.XMLSymbol = Const.Value

……

IBMIBMMSFTMSFT

file ifile ifile jfile j

…… ……

……

PODS 2002 18

Outline of Remaining TalkOutline of Remaining Talk• Stream Models and DSMS Architectures

• Query Processing

• Runtime and Systems Issues

• Algorithms

• Conclusion

Page 10: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

10

PODS 2002 19

Blocking OperatorsBlocking Operators• Blocking

– No output until entire input seen– Streams – input never ends

• Aggregates – output “update” stream

• Set Output (sort, group-by)– Intermediate nodes – try non-blocking analogs– Example – juggle for sort [Raman,R,Hellerstein]– Punctuations and constraints

• Join – sliding-window restrictions

PODS 2002 20

Punctuations Punctuations [Tucker, Maier, Sheard, Fegaras]

• Assertion about future stream contents

• Unblocks operators, reduces state

• Future Work– Inserted at source or internal (operator signaling)?– Does P unblock Q? Exists P? Rewrite Q?– Relation between P and memory for Q?

R.A<10R.A=10

P: S.A=10

State/Index

group-by

X

R S

Page 11: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

11

PODS 2002 21

Impact of Limited MemoryImpact of Limited Memory• Continuous streams grow unboundedly

• Queries may require unbounded memory

• [ABBMW 02]– a priori memory bounds for query– Conjunctive queries with arithmetic comparisons– Queries with join need domain restrictions– Impact of duplication elimination

• Open – general queries

PODS 2002 22

Approximate Query EvaluationApproximate Query Evaluation

• Why?– Handling load – streams coming too fast– Avoid unbounded storage and computation– Ad hoc queries need approximate history

• How? Sliding windows, synopsis, samples, load-shed

• Major Issues?– Metric for set-valued queries– Composition of approximate operators– How is it understood/controlled by user?– Integrate into query language– Query planning and interaction with resource allocation– Accuracy-efficiency-storage tradeoff and global metric

Page 12: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

12

PODS 2002 23

Sliding Window ApproximationSliding Window Approximation

• Why?– Approximation technique for bounded memory– Natural in applications (emphasizes recent data)– Well-specified and deterministic semantics

• Issues– Extend relational algebra, SQL, query optimization– Algorithmic work – Timestamps?

0 1 1 0 0 0 0 1 1 1 0 1 1 0 0 0 0 1 1 1 0 00 0 0 0 1 0 1 0 1 0

PODS 2002 24

TimestampsTimestamps• Explicit

– Injected by data source– Models real-world event represented by tuple– Tuples may be out-of-order, but if near-ordered can reorder

with small buffers

• Implicit– Introduced as special field by DSMS– Arrival time in system – Enables order-based querying and sliding windows

• Issues– Distributed streams?– Composite tuples created by DSMS?

Page 13: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

13

PODS 2002 25

Timestamps in Timestamps in JOIN JOIN OutputOutput

Approach 1• User-specified, with defaults

• Compute output timestamp

• Must output in order of timestamps

• Better for Explicit Timestamp

• Need more buffering

• Get precise semantics and user-understanding

Approach 2• Best-effort, no guarantee

• Output timestamp is exit-time

• Tuples arriving earlier more likely to exit earlier

• Better for Implicit Timestamp

• Maximum flexibility to system

• Difficult to impose precise semantics

Sx

RT

PODS 2002 26

Approximate via LoadApproximate via Load--SheddingShedding

Input Load-Shedding

• Sample incoming tuples

• Use when scan rate is bottleneck

• Positive – online aggregation [Hellerstein, Haas, Wang]

• Negative – join sampling [Chaudhuri, Motwani, Narasaya]

Output Load-Shedding

• Buffer input infrequent output

• Use when query processing is bottleneck

• Example – XJoin [Urhan, Franklin]

• Exploit synopses

Handles scan and processing rate mismatchHandles scan and processing rate mismatch

Page 14: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

14

PODS 2002 27

Stream Query Language?Stream Query Language?

• SQL extension

• Sliding windows as first-class construct– Awkward in SQL, needs reference to timestamps– SQL-99 allows aggregations over sliding windows

• Sampling/approximation/load-shedding/QoSsupport?

• Stream relational algebra and rewrite rules– Aurora and STREAM– Sequence/Temporal Databases

PODS 2002 28

Outline of Remaining TalkOutline of Remaining Talk• Stream Models and DSMS Architectures

• Query Processing

• Runtime and Systems Issues

• Algorithms

• Conclusion

Page 15: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

15

PODS 2002 29

DSMS InternalsDSMS Internals• Query plans: operators, synopses, queues

• Memory management– Dynamic Allocation – queries, operators, queues, synopses– Graceful adaptation to reallocation– Impact on throughput and precision

• Operator scheduling– Variable-rate streams, varying operator/query requirements– Response time and QoS– Load-shedding– Interaction with queue/memory management

PODS 2002 30

Queue Memory and Scheduling Queue Memory and Scheduling [Babcock, Babu, Datar, Motwani]

• Goal– Given – query plan and selectivity estimates– Schedule – tuples through operator chains

• Minimize total queue memory– Best-slope scheduling is near-optimal– Danger of starvation for some tuples

• Minimize tuple response time – Schedule tuple completely through operator chain– Danger of exceeding memory bound

• Open – graceful combination and adaptivity

Page 16: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

16

PODS 2002 31

Queue Memory and Scheduling Queue Memory and Scheduling [Babcock, Babu, Datar, Motwani]

Time

selectivity = 0.0

selectivity = 0.6

selectivity = 0.2N

et S

elec

tivity

s 1

s 2

s 3

best slopes 3

s 2

s 1

Input

Output

starvation point

PODS 2002 32

RateRate--Based & Based & QoSQoS OptimizationOptimization• [Viglas, Naughton]

– Optimizer goal is to increase throughput– Model for output-rates as function of input-rates – Designing optimizers?

• Aurora – QoS approach to load-shedding

% tuples delivered

QoS

QoS

Delay Ouput-value

QoS

Static: drop-based Runtime: delay-based Semantic: value-based

Page 17: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

17

PODS 2002 33

Outline of Remaining TalkOutline of Remaining Talk• Stream Models and DSMS Architectures

• Query Processing

• Runtime and Systems Issues

• Algorithms

• Conclusion

PODS 2002 34

SynopsesSynopses• Queries may access or aggregate past data

• Need bounded-memory history-approximation

• Synopsis?– Succinct summary of old stream tuples– Like indexes/materialized-views, but base data is unavailable

• Examples– Sliding Windows– Samples– Sketches – Histograms– Wavelet representation

Page 18: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

18

PODS 2002 35

Model of ComputationModel of Computation

10

11

10

1

00

11

Increas

ing time

Synopses/Data Structures

Data Stream

Memory: poly(1/e, log N)

Query/Update Time: poly(1/e, log N)

N: # tuples so far, or window size

e: error parameter

PODS 2002 36

Many other results …Many other results …• Histograms

– V-Opt Histograms[Gilbert, Guha, Indyk, Kotidis, Muthukrishnan, Strauss], [Indyk]

– End-Biased Histograms (Iceberg Queries)[Manku, Motwani], [Fang, Shiva, Garcia-Molina, Motwani, Ullman]

– Equi-Width Histograms (Quantiles)[Manku, Rajagopalan, Lindsay], [Khanna, Greenwald]

– WaveletsSeminal work [Vitter, Wang, Iyer] + many others!

• Data Mining– Stream Clustering

[Guha, Mishra, Motwani, O’Callaghan][O’Callaghan, Meyerson, Mishra, Guha, Motwani]

– Decision Trees [Domingos, Hulten], [Domingos, Hulten, Spencer]

Page 19: Models and Issues in Data Stream Systems (with changes by CZ · • Stream Models and DSMS Architectures • Query Processing • Runtime and Systems Issues • Algorithms • Conclusion

19

PODS 2002 37

Conclusion: Future WorkConclusion: Future Work• Query Processing

– Stream Algebra and Query Languages– Approximations– Blocking, Constraints, Punctuations

• Runtime Management– Scheduling, Memory Management, Rate Management– Query Optimization (Adaptive, Multi-Query, Ad-hoc)– Distributed processing

• Synopses and Algorithmic Problems

• Systems– UI, statistics, crash recovery and transaction management– System development and deployment

PODS 2002 38

Thank You!Thank You!