Note for Golang Taipei Gathering #22


19:30~20:10: 陳敬翔 (Sean) - Go 的技能與安裝入門


20:20~21:00: VMFive - TA-CHING CHEN - Introduction to Fission

  • Slides
  • Fission: Fast Serverless Functions for Kubernetes
  • Function as a Service (FaaS)
    • Exmaple
    • Pros
      • developer focus on code snippets
      • short cold-start
      • horizontal scaling
      • pay as you go (!= cheap)
    • Cons
      • vendor lock-in
      • hard to test
      • environmental limitation
      • limited execution time per request
  • Fission
    • 支援 Go, Node.js, PHP7, Python3, .NET
      • Go 的部份是以 Go 1.8 plugin 的方式插入,如果要使用 Go 開發的話,記得要把版本升到 1.8
    • Live demo example
      • fission fn create --name GTG22 --env nodejs --code hello.js
      • fission route create --method GET --url /hello --function GTG22
      • fission fn edit --name GTG22
      • 看 log (講者貢獻的 PR,不到一個星期前才剛 merge 進 master branch)
        • fission fn logs --name GTG22
        • fission fn logs --name GTG22 -f
        • fission fn logs --name GTG22 -f -d # 看更詳細的 log (Debug mode)
    • Architecture
  • How to contribute
    • https://github.com/fission/fission/blob/master/CONTRIBUTING.md
    • 是個去年才開始的專案,所以有很多地方可以貢獻。文件寫的不錯,懂 Go 的話基本上可以很快做出一些貢獻。
    • Repo owner 是位印度人,但英文很好,也很積極的回應,做出貢獻還有可能得到神祕小禮物,例如一件來自美國的 T-shirt 之類的
    • 還不是個成熟的專案,還不建議用在 Production。
  • Conclusion
    • Short cold-start overhead (~100 ms)
    • Suitable for developers want to set up their own FaaS
    • Cutsomized environment image
    • Adjustable execution time
    • Cheaper than FaaS under heavy usage

Lighting Talks

  • 陳小熊 - Go 新手村冒險筆記
    • Slides: https://drive.google.com/file/d/0B158iGrlsSveNFVoUUF4ZTlsbVE/view
    • 生動活潑得介紹了 Golang 有哪些學習資源,包括線上課程、推薦書籍、Gopher Con 等等,為入門者提供了一個方向。
    • 還 Live Demo 了一個用 Golang 實作出來的線上讀書會平台
      • 想想我也是上次 GTG 才決定開始學 Golang 的,結果過了一個月了根本沒啥進展,感到慚愧 QQ


Share


Donation

如果覺得這篇文章對你有幫助, 除了留言讓我知道外, 或許也可以考慮請我喝杯咖啡, 不論金額多寡我都會非常感激且能鼓勵我繼續寫出對你有幫助的文章。

If this blog post happens to be helpful to you, besides of leaving a reply, you may consider buy me a cup of coffee to support me. It would help me write more articles helpful to you in the future and I would really appreciate it.


Related Posts