Using the Pachyderm Go client
The Pachyderm Go client enables you to communicate with Pachyderm through the Go API. Go is a popular programming language that has been developed by Google and has become widely popular among the developer community in recent years. In this chapter, we will learn how to enable the Pachyderm Go client and how to run basic Pachyderm operations using the Go client.
The main source files that you can use for reference are located in the https://github.com/pachyderm/pachyderm/tree/master/src/client directory of the Pachyderm source repository. These files include all the methods that you can use to communicate with Pachyderm objects and primitives—specifically, the following files:
- https://github.com/pachyderm/pachyderm/blob/master/src/client/client.go
- https://github.com/pachyderm/pachyderm/blob/master/src/client/pfs.go
- https://github.com/pachyderm/pachyderm/blob/master/src/client/pps.go
These files include most of the important...