top | item 21174378

API design: Which version of versioning is right for you?

51 points| moks | 6 years ago |cloud.google.com | reply

15 comments

order
[+] jmartrican|6 years ago|reply
One issue I see with HTTP header versioning, is that now I have to add the HTTP version header into my routing logic. I already have to take domain, sub-domain, protocol, HTTP-verb, application context, and path into account when considering routing of HTTP requests. When defining my API signature, I would now need to include more than just the URL path and verb, I would need to include the version header value. I can imagine troubleshooting with other engineers.. "wait can you look through the logs and verify the http version header you used for that request."

Also, I really like when one piece of data can serve dual purpose use. In this case, the URL, which is highly visible, contains the version in it. So the one string of data reveals more information to me.

[+] segmondy|6 years ago|reply

   func metrics(w http.ResponseWriter, r *http.Request) {
   }
   func AddV1Routes(r *mux.Router) {
    r.HandleFunc("/metrics/", metrics).Methods("GET")
    r.HandleFunc("/v1func/", v1func).Methods("GET")
   }
   func AddV2Routes(r *mux.Router) {
    r.HandleFunc("/metrics/", metrics).Methods("GET")
    r.HandleFunc("/v2func/", v1func).Methods("GET")
   }


  r := mux.NewRouter()
  AddV1Routes(r.PathPrefix("/api/v1").Subrouter())
  AddV2Routes(r.PathPrefix("/api/v2").Subrouter())
  handler := c.Handler(r)
  http.ListenAndServe(":5000", handler
With a pattern like this, you can just decide which functions to group by version.
[+] justicezyx|6 years ago|reply
So many texts no one line of example? I am totally confused...
[+] dlkinney|6 years ago|reply
His talk at Google Next 18 was much more clear:

https://www.youtube.com/watch?v=P0a7PwRNLVU

It might feel a bit aimless at first, but he pulls it together about halfway through. By the end makes good, insightful points. Definitely worth the watch.

[+] catlifeonmars|6 years ago|reply
A lot of the problems related to organization of entities and type description can be solved by using out-of-band type metadata (i.e. GraphQL). It’s not a panacea by any means, and may not be the right fit for many APIs, but I’m surprised it wasn’t mentioned at all, considering that the article is about API design.
[+] wellpast|6 years ago|reply
Or no versioning.

Create new endpoint URIs for new semantics.

Use vocabulary-based (property-based) entities and never change word (property) semantics.

Contrary to its unpopularity (or because of?), this “strategy”* is far far simpler to maintain and evolve than is “versioning”.

*I say “strategy” because this is more commonsense: it’s how we do things in the real world anyway.

[+] braindeath|6 years ago|reply
I think this is still versioning. You just end up versioning with the endpoint URI. Eg many names that end -2 or -3.
[+] chrisweekly|6 years ago|reply
Could you please give an example of these property-based entities, or link to an API that follows this approach? I think I understand your suggestion but want to be sure. New endpoints for new semantics seems rock-solid to me along same lines as content-addressable / immutable build artifacts which I endorse.
[+] awkim|6 years ago|reply
Google's great at fast tracking APIs to their end of life.