PARALLEL EXECUTION IN A MONOLITH APPLICATION LARS STAMPE

  • Slides: 26
Download presentation
PARALLEL EXECUTION IN A MONOLITH APPLICATION LARS STAMPE VILLADSEN, SIMCORP A/S DYALOG USER CONFERENCE

PARALLEL EXECUTION IN A MONOLITH APPLICATION LARS STAMPE VILLADSEN, SIMCORP A/S DYALOG USER CONFERENCE 2017 © 2017

AGENDA • Ideal world and reality • Isolates and futures revisited • Sketch of

AGENDA • Ideal world and reality • Isolates and futures revisited • Sketch of solution • “Live Demo” • Would it not be nice if… 2 © 2017

IDEAL WORLD AND REALITY 3 © 2017

IDEAL WORLD AND REALITY 3 © 2017

IDEAL WORLD AND REALITY • Parts of our code is 25 years old •

IDEAL WORLD AND REALITY • Parts of our code is 25 years old • Almost 100 % traditional functions • A rewrite will most probably not be done on in APL • We have state and caches all over • We use []NA and. Net as an integral part of the application • We have load-balancing implemented via extra sessions communicating via TCP and/or database • Start of application takes 10+ seconds (even more for developers) 4 © 2017

ISOLATES AND FUTURES REVISITED 5 © 2017

ISOLATES AND FUTURES REVISITED 5 © 2017

ISOLATES AND FUTURES REVISITED • Morten have demoed these a lot of times: 6

ISOLATES AND FUTURES REVISITED • Morten have demoed these a lot of times: 6 © 2017

ISOLATES AND FUTURES REVISITED • Our impression of the reality in the application: 7

ISOLATES AND FUTURES REVISITED • Our impression of the reality in the application: 7 © 2017

SKETCH OF SOLUTION 8 © 2017

SKETCH OF SOLUTION 8 © 2017

SKETCH OF SOLUTION • Objectives • Require no installation for ordinary application developers •

SKETCH OF SOLUTION • Objectives • Require no installation for ordinary application developers • Gain scaling in number of CPU’s • Fit into coding standards • Have low maintenance 9 © 2017

SKETCH OF SOLUTION • Implementation • Implement ‘Class like’ constructor for each “Slave/Isolate/Worker. Bee”

SKETCH OF SOLUTION • Implementation • Implement ‘Class like’ constructor for each “Slave/Isolate/Worker. Bee” • Cut down start-up to a minimum • Use external shared codepage, Conga, Dyalog RPC WS and APLProcess • Implement distribution of ‘chunks’ to be executed in parallel. 10 © 2017

Sim. Corp Dimension WS 11 © 2017

Sim. Corp Dimension WS 11 © 2017

Sim. Corp Dimension WS Functions Global variables (simple) Static caches Namespaces Classes 12 ©

Sim. Corp Dimension WS Functions Global variables (simple) Static caches Namespaces Classes 12 © 2017

Sim. Corp Dimension WS Shared code page(SCF)Static caches(others) Functions Global variables (simple) Static caches

Sim. Corp Dimension WS Shared code page(SCF)Static caches(others) Functions Global variables (simple) Static caches (some) 8666�shared_code_file 13 ⊃¨�¨�NL¨ � 9 unchanged �WA bigger as all functions is outside WS © 2017 First call to SCF functions is sligthly slower Namespaces Classes

Sim. Corp Dimension WS SCF, APLProcess 'APLProcess'�CY wsid slaves[i]←�NEW APLProcess(wsid args runtime) 14 ©

Sim. Corp Dimension WS SCF, APLProcess 'APLProcess'�CY wsid slaves[i]←�NEW APLProcess(wsid args runtime) 14 © 2017

Sim. Corp Dimension WS SCF, APLProcess 'APLProcess'�CY wsid slaves[i]←�NEW APLProcess(wsid args runtime) wsid: ”rpcserver.

Sim. Corp Dimension WS SCF, APLProcess 'APLProcess'�CY wsid slaves[i]←�NEW APLProcess(wsid args runtime) wsid: ”rpcserver. dws” �LX: start conga on port in ”args” 15 © 2017

Sim. Corp Dimension WS SCF, APLProcess, Conga communication 16 © 2017

Sim. Corp Dimension WS SCF, APLProcess, Conga communication 16 © 2017

Sim. Corp Dimension WS SCF, APLProcess, Conga Inject ”fast start-up function” and execute. This

Sim. Corp Dimension WS SCF, APLProcess, Conga Inject ”fast start-up function” and execute. This will attach to the SCF 17 © 2017

Sim. Corp Dimension WS SCF, APLProcess, Conga Repeat a ”reasonable” number of times …

Sim. Corp Dimension WS SCF, APLProcess, Conga Repeat a ”reasonable” number of times … 18 © 2017

Sim. Corp Dimension WS SCF, APLProcess, Conga (0 parallel. Each. Execute db. Select )¨

Sim. Corp Dimension WS SCF, APLProcess, Conga (0 parallel. Each. Execute db. Select )¨ args Call in parallel db. Select arg �(n⊃args) … db. Select arg �(2⊃args) db. Select arg �(1⊃args) 19 © 2017

Sim. Corp Dimension WS SCF, APLProcess, Conga (0 parallel. Each. Execute db. Select )

Sim. Corp Dimension WS SCF, APLProcess, Conga (0 parallel. Each. Execute db. Select ) args Call in parallel db. Select arg �(n⊃args) … db. Select arg �(2⊃args) db. Select arg �((n+1)⊃args) 20 © 2017

“LIVE DEMO” 22 © 2017

“LIVE DEMO” 22 © 2017

WOULD IT NOT BE NICE IF… 23 © 2017

WOULD IT NOT BE NICE IF… 23 © 2017

WOULD IT NOT BE NICE IF… 24 In C#: In APL: string[] lines =

WOULD IT NOT BE NICE IF… 24 In C#: In APL: string[] lines = File. Read. All. Lines(txt. Proxy. List. Path. Text); List<string> list_lines = new List<string>(lines); foreach (string line in list_lines) { //My Stuff } lines←�NGET txt. Proxy. List. Path. Text PARALLEL (In. Net 4. 0 released April 12 th 2010) PARALLEL? ? : string[] lines = File. Read. All. Lines(txt. Proxy. List. Path. Text); List<string> list_lines = new List<string>(lines); Parallel. For. Each(list_lines, line => { //Your stuff }); lines←�NGET txt. Proxy. List. Path. Text © 2017 : For line : In lines �. . . My stuff : End. For : For line : In. Parallel lines �. . . My stuff : End. For

QUESTIONS? Thank you (lars. s. villadsen@simcorp. com) 25 © 2017

QUESTIONS? Thank you (lars. s. villadsen@simcorp. com) 25 © 2017

© 2017

© 2017

LEGAL DISCLAIMER The contents of this presentation are for general information and illustrative purposes

LEGAL DISCLAIMER The contents of this presentation are for general information and illustrative purposes only and are used at the reader’s own risk. Sim. Corp uses all reasonable endeavours to ensure the accuracy of the information. However, Sim. Corp does not guarantee or warrant the accuracy, completeness, factual correctness, or reliability of any information in this publication and does not accept liability for errors, omissions, inaccuracies, or typographical errors. 28 © 2017 The views and opinions expressed in this publication are not necessarily those of Sim. Corp. © 2017 Sim. Corp A/S. All rights reserved. Without limiting rights under copyright, no part of this document may be reproduced, stored in, or introduced into a retrieval system, or transmitted in any form, by any means (electronic, mechanical, photocopying, recording, or otherwise), or for any purpose without the express written permission of Sim. Corp A/S.