Categorygithub.com/ArneProductions/DISYS-exercise-1
repositorypackage
1.0.0
Repository: https://github.com/arneproductions/disys-exercise-1.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

DISYS-Exercise-1

  • Let us create an RPC / REST service
    • Define service endpoints - student, course, teacher using the Swagger editor
    • Discuss what operations should be using GET, PUT, POST, DELETE
    • Implement an RPC / REST service in Golang, that exposes your course endpoint
    • Consume the RPC / REST course service endpoint by creating a client in Golang
  1. Let us examine the if our service is a micro service

    • Discuss which endpoints of your web service could have a different lifecycle / supporting team.
    • Discuss which operations could be asynchronous
    • Redesign your API to a set of microservices, and discuss your architectural choices.
    • Explain what is the difference between a RESTful API and a set of microservices.
  2. Let us go from HTTP REST to AVRO gRPC

    • Create an IDL for your course endpoint
    • Generate a gRPC client based on your IDL
    • Discuss, when gRPC should be favored, and when REST should be favored