Actions
Idea #8964
closed[SDKs] Design more idiomatic and convenient Go SDK
Status:
Closed
Priority:
Normal
Assigned To:
-
Category:
SDKs
Target version:
-
Start date:
Due date:
Story points:
-
Description
Related issues
Updated by Tom Clegg over 8 years ago
- Description updated (diff)
- Category set to SDKs
Some wish-list items:
- stub API server (for testing client code without bringing up a real server)
- stub Keep server
- use more stdlib interfaces like Reader and Writer
- create new client from env vars
- create new client from config file
- thread safety (and clear docs about which things are thread-safe)
- configurable logging
- no globals (should be able to run tests in parallel -- except, where necessary, "run test server"-like integration tests that rely on external state)
- convenient event listener that automatically reconnects after failures (without missing any events) and offers a "timestamp of most recent message" function to test freshness
Updated by Tom Clegg over 8 years ago
TBD: the existing SDK uses map[string]string for request bodies, so you can do things like "update 'state' attribute to 'Running', without touching other attributes". When we use real types for arvados database records, though, we send all attributes with every update request, which can result in unnecessary lost updates. A better way to avoid lost updates is to use Etag and If-Matches. This would have to be implemented on both the client side and the API side.
Updated by Peter Amstutz over 7 years ago
- Status changed from New to In Progress
Updated by Peter Amstutz about 6 years ago
- Related to Idea #14467: [SDK] Merge Go ArvadosClient and arvados.Client and migrate to arvados.Client added
Updated by Peter Amstutz almost 5 years ago
- Status changed from In Progress to Closed
Actions