Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Fast & Functional (Scala Matsuri, JP)

Fast & Functional (Scala Matsuri, JP)

In this talk we are going to create a functional and blazingly fast microservice. We will use functional programming abstractions to quickly mix & match different HTTP libraries, state implementations and concurrency configurations. Each step will be followed by a performance analysis using different tools from JVM toolbox. This talk is for you if you want to see how cats IO monad, async-profiler, flame graphs and wrk are used together to create microseconds-fast Scala service for YouTube videos statistics.

Michał Płachta

June 29, 2019
Tweet

More Decks by Michał Płachta

Other Decks in Programming

Transcript

  1. @miciek AST & UNCTIONAL F F Room A, 14:00 In

    this talk we are going to create a functional and blazingly fast microservice in Scala. We will use f u n c t i o n a l p r o g r a m m i n g abstractions to quickly mix & match different HTTP libraries, state implementations and concurrency configurations. Each step will be followed by a performance analysis using different tools from JVM toolbox.
  2. @miciek Hello, I’d like to hear a functional programming joke

    関数型プログラミングの冗談を聴いたことがある
  3. @miciek OK. Why did the chicken cross the road? functional

    programming joke どうしてニワトリは道路路を渡るの?
  4. @miciek The best way to understand it comes from the

    idea of contravariant functor. It’s very simple really. 理理解するための最良の⽅方法は、 反変ファンクターの考えから来ています。
  5. @miciek As you probably know, a functor is just a

    mapping between categories that respects the category structure; a homomorphism, if you will. contravariant functor. ファンクターは圏の構造を保った写像で、 準同型写像とも⾔言われます
  6. @miciek Now, some constructions that we want to express look

    like functors but in some sense “turn morphisms around”. We call these contravariant functors. will. さて、私たちが表現したいいくつかの構造はファンクタのように⾒見見えます が、ある意味では「変形を逆転させる」のです。私たちはこれらの反変ファ ンクタと呼びます。
  7. @miciek As you have probably noticed, we can indeed define

    a contravariant functor as simply a covariant functor on opposite categories, invoking the obvious correspondence. Of course you have already noticed the obvious connection this has with the category theoretic generalization of topological presheaves — a presheaf on a topology is just a contravariant functor from the… 私たちは反変ファンクターを単に逆圏の共変ファンクターとして定義しなお すことができます。もちろん、これが圏論的なトポロジカルなプリシーフの ⼀一般化に関連していることにすでにお分かりですね (以下延々
  8. @miciek UNCTIONAL F very modular plug & play using functional

    mechanics quickly replacing modules without affecting the logic simple real-world service in Scala モジュール性、プラグアンドプレイ
  9. @miciek F 2nd meaning: DEV SPEED AST very modular plug

    & play Fast の第⼆二義は、開発速度
  10. @miciek In this talk… AST & UNCTIONAL F F modularity

    (the λ way!) plug & play simple real-world service in Scala
  11. @miciek Remember when… Old Ways Don’t Work …people watched TV

    みんながテレビを⾒見見ていた時代の古いやり⽅方は通⽤用しない
  12. @miciek Influencers 22 237 likes 2302 likes, 70 retweets 201

    232 views, 23987 likes 502 123 views, 2012 likes …and more 今のインフルエンサー
  13. @miciek Influencers items aggregation 1 201 882 views, 423 987

    likes …and more All tweets, youtube videos, etc for one product ⼀一つのプロダクトに関して全てのアイテムを集約
  14. @miciek Influencer Stats service collection of videos how many total

    views how many total likes 動画、PV、like 数など
  15. @miciek Requirement #1 Collections ability to add & update Collections

    of videos … COLLECTION 1 … COLLECTION 2 要件1: 動画のコレクションを作成、更更新できること
  16. @miciek Requirement #2 Fetch YouTube Stats ability to fetch individual

    video stats through YouTube API YouTube API 20 views, 2 likes 要件2: 個々の動画に関して統計を取得できること
  17. @miciek Requirement #3 Calculate Stats ability to calculate & return

    Collection statistics … 1 201 882 views, 423 987 likes 要件3: コレクション全体の統計情報を集計できること
  18. @miciek PURE Side-effect’y f input value output value f input

    value hard to keep separate hard to test easy to keep separate easy to test 副作⽤用はテストしづらい
  19. @miciek PURE ✓Save & Load Collections ✓Fetch YouTube Stats ✓HTTP

    Web Server ✓HTTP Client ✓Collection storage ✓Logging Side-effect’y ✓Calculate Stats f video #1 stats video #2 stats aggregated stats とは⾔言っても機能の多くは副作⽤用を伴う
  20. @miciek PURE ✓Save & Load Collections ✓Fetch YouTube Stats ✓HTTP

    Web Server ✓HTTP Client ✓Collection storage ✓Logging Side-effect’y ✓Calculate Stats ULTIMATE GOAL move as much as we can to the PURE side できる限り多くの機能を pure 側へと移⾏行行させる
  21. @miciek ULTIMATE GOAL move as much as we can to

    the PURE side できる限り多くの機能を pure 側へと移⾏行行させる
  22. @miciek ULTIMATE GOAL move as much as we can to

    the PURE side to test in isolation to reason in isolation to easily swap components (because they are isolated) 隔離された単体でテストしたり、論理理的に振る舞いを分析したり、 コンポーネントを差し替えるのが容易易な状態になるのが究極の⽬目標
  23. @miciek Pure logic f video #1 stats video #2 stats

    aggregated stats 純粋なロジック
  24. @miciek Pure logic … 1 201 882 views, 423 987

    likes easy to test easy to reason about PURE WIN!
  25. @miciek Can it be as easy as this? f input

    value output value NOPE では次のような関数は?
  26. @miciek Can it be as easy as this? 1. get

    collection collectionId 2. get videoIds from it 3. for each videoId, call YouTube API 4.call our pure calculate function (and log some things in between) f input value output value f input value output value いくつか問題があります。
  27. @miciek Can it be as easy as this? 1. get

    collection collectionId 2. get videoIds from it 3. for each videoId, call YouTube API 4. call our calculate function NOPE because side effects 副作⽤用があるからです。
  28. @miciek Side-effect’y stuff 1. get collection collectionId 2. get videoIds

    from it 3. for each videoId, call YouTube API 4. call our pure calculate function
  29. @miciek Side-effect’y stuff 1. get collection collectionId 2. get videoIds

    from it 3. for each videoId, call YouTube API 4. call our pure calculate function
  30. @miciek Side-effect’y stuff 1. get collection collectionId 2. get videoIds

    from it 3. for each videoId, call YouTube API 4. call our pure calculate function F doesn’t do anything F is chosen by the user モナドの F とだけ弱く指定します。
  31. @miciek We can’t constrain ourselves What we have What we

    want F doesn’t do anything F is chosen by the user 制限を後付けすることはできません。
  32. @miciek Constraints Liberate F doesn’t do anything F is chosen

    by the user Constraints Liberate Liberties Constrain 制限は解放し、⾃自由は制限する
  33. @miciek PURE ✓Collections interpreter ✓HTTP Web Server ✓HTTP Client interpreter

    ✓Collection storage interpreter ✓Logging interpreter Side-effect’y ✓Calculate Stats ✓Collections algebra ✓HTTP Client algebra ✓Logging algebra ✓getStats algorithm on F
  34. @miciek algebras ✓Collections interpreter ✓HTTP Client interpreter ✓Collection storage interpreter

    ✓Logging interpreter interpreters ✓Collections algebra ✓HTTP Client algebra ✓Logging algebra 代数 | インタプリタ
  35. @miciek algebra interpreters - AkkaHttp - Hammock (Apache) - Http4s

    - InMem LinkedList - InMem TrieMap - Log All - Max 1k/sec (dropping rest) plug & play 代数 | インタプリタ
  36. @miciek @miciek Warning Do not perform any of the following

    stunts on PRODUCTION. 注意! プロダクションで⾏行行ってはいけません
  37. @miciek wrk -t1 -c16 -d30s --latency URL We will use

    wrk 1 thread 16 connections 30 sec duration ベンチマークツール: wrk
  38. @miciek We will use async-profiler jps cd async-profiler ./profiler.sh -d

    10 -f <FILE> <PID> https://github.com/jvm-profiling-tools/async-profiler プロファイラ: async-profiler
  39. @miciek Version 1 # requests 99% latency avg latency req/s

    Version 1 ? ?ms ?ms ? -akka-http (client + server) -log all things -in mem linked list state
  40. @miciek Version 1 Results # requests 99% latency avg latency

    req/s Version 1 8510 82.41ms 56.47ms 283.12
  41. @miciek -don’t change the logic -just change the Logger interpreter

    -dropping logs if the rate is > 1k per second Version 2: Dropping logs
  42. @miciek Version 2 Results # requests 99% latency avg latency

    req/s Version 1 8510 82.41ms 56.47ms 283.12 Version 2 89 757 62.53ms 6.94ms 2986.26 DroppingLogger
  43. @miciek -don’t change the logic -change the VideoClient type class

    instance Version 3: Change the Video Client クライアントを代えてみる
  44. @miciek Version 3 Results # requests 99% latency avg latency

    req/s Version 1 8510 82.41ms 56.47ms 283.12 Version 2 89 757 62.53ms 6.94ms 2986.26 Version 3 96 564 13.05ms 5.06ms 3218.48 DroppingLogger Hammock (Apache)
  45. @miciek -don’t change the logic -cache results and call logic

    in separate thread Version 4: Statistics Caching
  46. @miciek Version 4 Results # requests 99% latency avg latency

    req/s Version 1 8510 82.41ms 56.47ms 283.12 Version 2 89 757 62.53ms 6.94ms 2986.26 Version 3 96 564 13.05ms 5.06ms 3218.48 Version 4 933 303 62.86ms 2.87ms 31 081.82 DroppingLogger Hammock (Apache) Stats Caching
  47. @miciek -don’t change the logic -change the underlying server from

    Akka HTTP to Http4s Version 5: Change the Server サーバーを代えてみる
  48. @miciek Version 5 Results # requests 99% latency avg latency

    req/s Version 1 8510 82.41ms 56.47ms 283.12 Version 2 89 757 62.53ms 6.94ms 2986.26 Version 3 96 564 13.05ms 5.06ms 3218.48 Version 4 933 303 62.86ms 2.87ms 31 081.82 Version 5 1 158 664 9.05ms 555.80µs 38 596.24 DroppingLogger Hammock (Apache) Stats Caching Http4s Server
  49. @miciek This is a BUS. You invented a BUS. Cheaper

    taxi that drives on fixed routes! それはバスです。あなたはバスを発⾒見見したのです。
  50. @miciek Algebras & Interpreters Not an INTERFACE. major difference: we

    can abstract over the effect type and constrain ourselves using F instead of CompletableFuture…
  51. @miciek -changed infrastructure details -…but our core logic (and tests)

    didn’t need to change! What have we done? plug & play quickly replacing non-core-logic modules インフラの詳細を変えましたが、コアロジックは変えていません!
  52. @miciek Modularity / Separation of concerns if we can.. replace

    the server implementation replace the state implementation replace the logging implementation replace the video client implementation add caching without changing the core logic (& tests) PURE WIN! コアロジックを変えることなく実装の差し替えに成功しました
  53. @miciek PURE ✓Collections interpreter ✓HTTP Web Server ✓HTTP Client interpreter

    ✓Collection storage interpreter ✓Logging interpreter Side-effect’y ✓Calculate Stats ✓Collections algebra ✓HTTP Client algebra ✓Logging algebra ✓getStats algorithm on F unit-tested integration-tested very constrained just F[_] no constraints Future, IO, …
  54. @miciek You learned… AST & UNCTIONAL F F modularity (the

    λ way!) plug & play simple real-world service in Scala モジュール性とプラグアンドプレイ