decreasing your coffee consumption by incremental (code ... · cyber-physical system demonstrator...

33
Decreasing your Coffee Consumption by Incremental (Code) Regeneration Ákos Horváth, Ábel Hegedüs IncQueryLabs Ltd. István Ráth, Dániel Varró Budapest University of Technology and Economics Ádám Balogh Ericsson Hungary Ltd.

Upload: others

Post on 02-Jun-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Decreasing your Coffee Consumption by

Incremental (Code) RegenerationÁkos Horváth, Ábel Hegedüs

IncQueryLabs Ltd.István Ráth, Dániel Varró

Budapest University of Technology and EconomicsÁdám Balogh

Ericsson Hungary Ltd.

Page 2: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Outline of the talk

Motivation and Background

Incrementality in transformations

Incremental transformation

•Different realizations

•Additional features

Evaluation

•Runtime performance

Conclusion

•Current status

•Future work

Main Contributorso Zoltán Ujhelyio Ábel Hegedüso Márton Búro Róbert Dóczio Péter Lunko István Rátho Ákos Horváth

Page 3: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Model transformations

Incrementality in transformations

Page 4: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Incrementality in model transformations:The common understanding

SRC TRGTRACE

MotivationReq. 1: Source model sizes in the range of millions (e.g., AUTOSAR)Req. 2: Transformation times may take hours in case of complex transformationsReq. 3: Chaining of model transformation

Page 5: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Incrementality in model transformationsOur understanding and the current aim

SRC TRGTRACE

Interpretation: when a change occurs, …Source incrementality: “re-read as little as possible”

Req. 1: Source model sizes

Target incrementality: “re-write as little as possible”Req. 2: Complex transformation execution

Req. 3: Transformation chaining requires both target and source incrementality

One way synchronization

Page 6: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Model transformations (cont.)

Type of incremental approaches (as we understand)

Page 7: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

No Incrementality: Batch Transformations

1. First transformation

2. Source model changes

3. Re-execute from scratchfor all source models

SRC1

SRC2

TRG1TRACE1

TRG2TRACE2

Page 8: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

“Dirty” Incrementality

1. First transformation

2. Source model changes

3. Re-execute from scratchonly for changed modelsegments

SRC1

SRC2

TRG1TRACE1

TRG2TRACE2

Pros:• Coarse grain

incrementalityCons:• Complex MT can be slow• Cleanup (after an error)?• Chaining?• Source and target

incrementality?

Page 9: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Incrementality by traceability

1. First transformation

2. Source model changes

4. Re-execute MT only foruntraceable elements

SRC1

SRC2

TRG1TRACE1

TRG2TRACE2

3. Detect missing trace links

Pros:• Fine grain incrementality

(source and target)• Better performance• Chaining (req. 3.)Cons:• Highly depends on

traceability links• Smart queries needed

Page 10: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Query result based transformations

1. First transformation

2. Source model changes

4. Fire rule activations(in relevant context)

SRC1

SRC2

TRG1TRACE1

TRG2TRACE2

3. Detect new activations

Pros:• Refined context: driven by

query result set changes• Chaining (req. 3)

Cons:• Language-level

restrictions

Page 11: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Realization of M2M Steps

VIATRAModel-to-model transformations inCyber Physical Systems demonstrator

Page 12: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

EMF-IncQuery and Viatra based transformations

EMF-IncQuery• Planned release 1.0: 2015.06.30 (graduation)• “an incremental model query engine”

New VIATRA• http://eclipse.org/viatra , “an event-driven and reactive model transformation

platform”• High-performance model transformation engine built on IncQuery

technology• Unique feature: supports batch, incremental transformation over a unified

virtual machine infrastructure (EVM)• Full Java and EMF compatibility• API inspired by Xtend and Xbase• Tightly integrated into Xtend• Planned release 0.7: 2015. 06. 30

Page 13: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Cyber-physical system demonstratorThe CPS system describes a set of stateful applications allocated to hosts in order to fulfill requests

• Application types and instanceso Each type specifies a state machine with states and transitions

• Host types and communicating instanceso Limited resources, e.g. CPU, memory

• Transitions may send or wait for signalso Sending is addressed to application types

https://github.com/IncQueryLabs/incquery-examples-cpsCyber Physical Ecore Model

Target CodeDeployment model

M2M M2T

Page 14: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Batch Simple and Optimized

Based on XtendReads the SRC model and generates both Traceability and target elementsOptimized uses • some caches for traceability elements• Optimized based on generated java code

SRC1

TRG1

TRACE1

Xtendreads generates

Page 15: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Batch IncQuery

SRC1

TRG1

TRACE1Δ

1. Source model changes

XtendNotifications

sent2. Notifications

sent

3. Deletes trace and target

models

3. Regeneration is triggered

Page 16: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Batch IncQuery

SRC1

TRG1

TRACE1Δ

Reexecutestransformation

1. Source model changes

Notifications sent

2. Notifications sent

4. Trace and Target are

regenerated

Xtend

Reads query results

3. Deletes trace and target

models

3. Regeneration is triggered

Page 17: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Batch IncQuery

Based on Xtend and IncQueryBoth Traceability and Source model is queried using IncQuery• Cache sets are kept synchronized with changes• Transformations just reads results• Uses IncQuery only where useful

SRC1

TRG1

TRACE1Δ

Reexecutestransformation

Xtend

Reads query results

Page 18: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Change Monitor + IncQuery(dirty incremental)

SRC1

TRG1

TRACE1

ReexecutestransformationXtend

Reads query results

Change Monitor

R1

R2

R3

1. Source model changes

Notifications sent

2. Notifications sent

4. Executes rules on dirty segment

3. Calculates dirty model

segmentΔ

0.Transformation rules

4. New parts created,

old modified

Δ dirty part

Page 19: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Change Monitor + IncQuery(dirty incremental)

Based on Custom Change monitorCalculation of dirty segment is hand code defines level of incrementality• Handling of deletion/creation can be cumbersome

EMF-IncQuery is used to receive notification on changes

SRC1

TRG1

TRACE1

ReexecutestransformationXtend

Reads query results

Change

Monitor

R1

R2

Δ dirty part

Δ

Page 20: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Explicit Traceability

SRC1

TRG1

TRACE1Δ Δ

EVM

Δ match sets

R1

R2

R3

1 2 3

1

1 2

Fires rule activation

3

2. Missing Trace link “negative

notifications”

1. Source model changes

Notifications sent

2. Notifications sent

3. New activations

appear

0.Transformation rules

0. Rule Activations

3. Target model changed

4. Everything starts over

Page 21: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Explicit Traceability

Based on IncQuery and EVM (Event-Driven Virtual Machine)Model modifications defined in XtendKeeps rule activation life-cycle by EVM• Mainly queries traceability model• Follows what is happening with source model

Execution triggering is controlled separately from activation• Single rule• Delayed for multiple rules (e.g., EMF transaction end)

SRC1

TRG1

TRACE1Δ Δ

EVM

Δ match sets

R1

R2

R3

1 2

3

1

1 2

Fires rule activation

3

Page 22: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Query based traceability

SRC1

TRG1

TRACE1Δ

EVM

Δ changed match sets

R1

R2

R3

1 2 3

1 2

Fires rule activation

3

2. Match set changes propagated

1. Source model changes

Notifications sent

2. Notifications sent

3. New activations

appear

3. Target model changed

0. Rule Activations from

the start of transformation

(reference point)

Page 23: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Query based traceability

SRC1

TRG1

TRACE1

EVM

Δ changed match sets

R1

R2

R3

1 2

1 2

Fires rule activation

1. Source model changes

Notifications sent

2. Notifications sent

3. Target model changed

3

3

Δ

5. Transformation

continues

2. Match set changes propagated

0. Rule Activations from

the start of transformation

(reference point)

3. New activations

appear

4. New referencepoint is set

Page 24: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Query based traceability

Traceability is kept by state of match setsKeeps rule activation life-cycle by EVM• Traceability by appeared/disappeared/updated matches

based on previous “reference point”• Rule activation only queries source model

Execution triggering is controlled separately from activation

SRC1

TRG1

TRACE1

EVM

R1

R2

R3

1 2 3

1 2

Fires rule

activation

3

Δ changed match sets

Δ

Page 25: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Transformation

Viatra (API) for model transformation definition

Provides a user-friendly API over EVM for defining transformation rules

Supports• Batch execution• Query based traceability

Rule definition• Pre condition – EMF-IncQuery pattern• Action – any Java compatible code,

usually Xtend

SRC1

TRG1

TRACE1

EVM

R1

R2

R3

1 2

1

1 2

Fires rule activation

Part of the upcoming Viatra 0.7 release• Much more to see

http://www.eclipse.org/viatra/

1 2 3

1 2

3

Δ changed match sets

ΔVIATRA

Page 26: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Additional features

Viatra• Transformation chains defined in MWE2

o Extensible language feature API for Viatra incremental and

batch transformationso Explicit workflow for control

CPS case study specific• M2T code generation for Java

based on change monitor Template based JDT based

o Not much difference in performance

Page 27: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Evaluation

Performance benchmarks

Page 28: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Test scenario

Scale SRC Objects SRC References TRG Objects TRG References Trace Objects Trace References

SUM Objects

SUM References

1 395 772 366 736 354 720 1115 2228

2 849 1821 773 1535 762 1535 2384 4891

4 1694 4697 1534 2972 1522 3056 4750 10725

8 3604 17111 3266 6108 3254 6520 10124 29739

16 7820 89193 7124 12395 7112 14236 22056 115824

32 17714 594181 16308 24837 16297 32605 50319 651623

64 43795 4424529 40960 50028 40948 81908 125703 4556465

For all four transformations• Batch

o simple and optimizedo IncQuery and Viatra

• Incremental o Change monitor basedo EVM: explicit traceability and query

result based (qbr)o Viatra: query based

Executions• First transformation execution• Small modification + (re)execution

Four different model scenarios• Industrial (presented below)• Client-Server • Publish-Subscribe

Environment• New desktop machine with 16 GB

RAM

Parameters• 10 GB Heap• Maximum 10 minutes execution

times for complete chain

Trace model’s size similar to target model

Page 29: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Runtime for first transformation

Batch IncQuery + Batch Viatra are the

fastest

Incremental approaches are within

~200%

Logarithmic scale!

Page 30: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Modification and second transformation

As expected incremental transformationdoes well in (re)execution

Logarithmic scale!

Page 31: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

ConclusionConclusion

CPS demonstrator helps transformation engineers to• Helps to identify key features of different approaches• Provide hints for fine-tuning

o Hybrid approach Batch+IncQuery for first transformation Explicit traceability for (re)execution

• Viatra + EMF-IncQuery provides o a mature stack to execute a wide variety of

incremental (and batch) transformationsFuture work

Viatra as a generic model transformation framework? much more is under the hood• Complex Event processing• Design Space Exploration• EclipeCon Europe 2015?• http://www.eclipse.org/viatra/

Page 32: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order

Final pointsViatra• 0.7 will be out soon• Generic transformation engine for batch and incremental

transformation chains• http://www.eclipse.org/viatra/

• The examples with all test results and more details are available formo https://github.com/IncQueryLabs/incquery-examples-cps/o Contributors:

Main: IncQuery Labs Ltd, Auxilliary:. Ericsson A.B., BME-FTSRG Supporting projects: Ericsson internal project

Your contributions (feedback, forum posts, ideas, bugzillas, patches) are very welcome!• To what direction should we enhance the demonstrator and the

Viatra transformation API?

32

Page 33: Decreasing your Coffee Consumption by Incremental (Code ... · Cyber-physical system demonstrator The CPS system describes a set of stateful applications allocated to hosts in order