Slide 1

Slide 1 text

Creating a microservice for the 1st time with go Henrique Vicente

Slide 2

Slide 2 text

Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. golang.org Robert Griesemer, Rob Pike and Ken Thompson started sketching the goals for a new language on the white board on September 21, 2007.

Slide 3

Slide 3 text

Go is a programming language designed by Google to help solve Google's problems, and Google has big problems. https://talks.golang.org/2012/splash.article

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

An attempt to combine the ease of programming of an interpreted, dynamically typed language with the efficiency and safety of a statically typed, compiled language.

Slide 6

Slide 6 text

Influenced by • C family (basic syntax) • Pascal / Modula / Oberon family (declarations, packages) • Newsqueak, Limbo (concurrency) • Unix

Slide 7

Slide 7 text

Design • Multi-value returns • No exception handling. Pleasant error handling.
 http://blog.golang.org/error-handling-and-go • Gourotines instead of threads • Object-oriented? Yes and no.
 No type hierarchy. Interfaces. • No pointer arithmetic for safety:
 no memory illegal address risk • Garbage collected

Slide 8

Slide 8 text

No content

Slide 9

Slide 9 text

No content

Slide 10

Slide 10 text

Quality tools • go fmt • go lint • go vet • go test • go tool cover

Slide 11

Slide 11 text

go get github.com/henvic/picel • Programming time?

Slide 12

Slide 12 text

No content

Slide 13

Slide 13 text

• Package main: executable program • Others: shared libraries • Imports:
 - don’t use relative internally
 - use the path to where the repo is published • Subpackages = subdirectories

Slide 14

Slide 14 text

No content

Slide 15

Slide 15 text

No content

Slide 16

Slide 16 text

No official package manager • The designers of the language decided not to do it for a reason. • But what if you want to guarantee a specific package version?
 
 https://code.google.com/p/go-wiki/wiki/ PackageManagementTools

Slide 17

Slide 17 text

many alternatives • godeps • gpm: https://github.com/pote/gpm

Slide 18

Slide 18 text

Building • go build • You get a single binary by default. • gox tool to build to multiple platforms easily
 or just use https://gobuilder.me/

Slide 19

Slide 19 text

The go way • Unused variable? • Unused import? • Unused?
 
 = No compiling :( … :) • Just discovered: fix it automagically :)
 http://godoc.org/golang.org/x/tools/cmd/goimports
 Productivity += 1000 • godoc -http=:6000 to see the docs on your computer or use godoc.org

Slide 20

Slide 20 text

No content

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

$GOPATH • Go likes to have all your src, pkg, bin inside a $GOPATH • But don’t worry. This doesn’t matter for end users of your application, given you’re release compiled binaries.

Slide 24

Slide 24 text

No content

Slide 25

Slide 25 text

Useful packages, methods • fmt.Println(“like console.log”) • fmt.Sprintf(“%+v is %v old”, person, person.Age()) • flag: ./cmd -backend “https://google.com/”
 Flag: backend, value: https://google.com/ • number, err := strcov.Atoi(“2442”)
 number is 2442 (int), err is nil

Slide 26

Slide 26 text

OOP: image.Name()
 with multiple return params Code: https://goo.gl/Ma2ITn

Slide 27

Slide 27 text

No content

Slide 28

Slide 28 text

“Dockerifying • Docker is built in go • We’ve a microservice that is designed to work with default options • Why not build a docker container for it?

Slide 29

Slide 29 text

Dockerfile FROM golang:onbuild MAINTAINER Henrique Vicente RUN apt-get update RUN apt-get install -y \ imagemagick \ webp EXPOSE 8123

Slide 30

Slide 30 text

Docker Hub Registry • Add repo for automatic building on Docker Hub Registry to have your package certified • You can install with
 docker pull henvic/picel • See also Dockerfile.dev

Slide 31

Slide 31 text

Some nice go projects srvdir

Slide 32

Slide 32 text

Questions?