-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Record TFX output artifacts in Metadata store (#884)
* WIP: ML Metadata in KFP * Move metadata tracking to its own package. * Clean up * Address review comments, update travis.yml * Add dependencies for building in Dockerfile * Log errors but continue to update run when metadata storing fails. * Update workspace to get latest ml-metadata version. * Update errors
- Loading branch information
1 parent
dd1b11e
commit ba64bd3
Showing
17 changed files
with
453 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = ["metadata_store.go"], | ||
importpath = "github.com/kubeflow/pipelines/backend/src/apiserver/metadata", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//backend/src/common/util:go_default_library", | ||
"@com_github_argoproj_argo//pkg/apis/workflow/v1alpha1:go_default_library", | ||
"@com_github_golang_protobuf//jsonpb:go_default_library_gen", | ||
"@com_github_golang_protobuf//proto:go_default_library", | ||
"@google_ml_metadata//ml_metadata/metadata_store:metadata_store_go", | ||
"@google_ml_metadata//ml_metadata/proto:metadata_store_go_proto", | ||
], | ||
) | ||
|
||
go_test( | ||
name = "go_default_test", | ||
srcs = ["metadata_store_test.go"], | ||
embed = [":go_default_library"], | ||
deps = [ | ||
"@com_github_golang_protobuf//proto:go_default_library", | ||
"@com_github_google_go_cmp//cmp:go_default_library", | ||
"@google_ml_metadata//ml_metadata/proto:metadata_store_go_proto", | ||
], | ||
) |
Oops, something went wrong.