Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Artifacts #453

Draft
wants to merge 38 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
fcf0fcf
add single literal to get data
wild-endeavor May 16, 2023
8c15419
generate
wild-endeavor May 16, 2023
5eebe1c
eod
wild-endeavor May 20, 2023
d924f81
can generate
wild-endeavor May 23, 2023
1b9daee
merge
wild-endeavor May 23, 2023
204c7e2
more changes
wild-endeavor May 23, 2023
d4de2ab
adding to more places
wild-endeavor May 23, 2023
c4e4fa5
add a comment
wild-endeavor May 24, 2023
055d266
add artifact to typedinterface
wild-endeavor May 25, 2023
446445f
allow multiple aliases
wild-endeavor May 25, 2023
0a43235
move artifact id to id file, add to literal as oneof
wild-endeavor May 26, 2023
807d572
artifact id not artifact in literal
wild-endeavor May 26, 2023
8659a3a
add shell event message, add artifactspec to upload create request, u…
wild-endeavor Jun 1, 2023
3fc6e65
add an artifact ID map to admin's execution spec metadata
wild-endeavor Jun 2, 2023
f448d5a
[wip] (#425)
wild-endeavor Jul 13, 2023
21e60b2
generate
wild-endeavor Jul 13, 2023
ad36544
replace uri with proper key
wild-endeavor Jul 14, 2023
7938463
make a new set of cloud events that contain supplemental information
wild-endeavor Jul 19, 2023
1ed4ab6
updates
wild-endeavor Jul 20, 2023
c31faa4
merge master
wild-endeavor Jul 20, 2023
91d2c57
removing some unneeded core.
wild-endeavor Jul 27, 2023
77e1c04
add query to get
wild-endeavor Jul 27, 2023
c8f5cae
add get response wrapper
wild-endeavor Jul 28, 2023
c4dc728
just use a list for now to keep track of used artifacts
wild-endeavor Aug 1, 2023
f698291
Artifacts partitioned (#430)
wild-endeavor Aug 31, 2023
a5cbf57
add event for lineage
wild-endeavor Sep 4, 2023
ca7349d
partial generation
wild-endeavor Sep 5, 2023
23ba1af
finish generation
wild-endeavor Sep 5, 2023
fbde2f3
partial generation
wild-endeavor Sep 5, 2023
bde315f
Merge pull request #15 from unionai/artifacts-static-lineage
wild-endeavor Sep 7, 2023
1890b45
add a metadata field
wild-endeavor Sep 7, 2023
41d2368
partial
wild-endeavor Sep 11, 2023
a35ef98
any in lpmetadata'
wild-endeavor Sep 13, 2023
cae9288
add trigger endpoint and remove from event.proto
wild-endeavor Sep 13, 2023
78caf2c
Merge pull request #16 from unionai/triggers
wild-endeavor Sep 16, 2023
4a4e06d
Merge master (#446)
wild-endeavor Sep 27, 2023
4854ce7
Artifacts merge (#449)
wild-endeavor Sep 28, 2023
91afd01
Move add binding (#452)
wild-endeavor Oct 11, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ tmp/
__pycache__/

venv/
build/
7 changes: 6 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@
# Required
version: 2

# Build operating system
build:
os: ubuntu-22.04
tools:
python: "3.8"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: conf.py

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.8
install:
- requirements: doc-requirements.txt
289 changes: 171 additions & 118 deletions boilerplate/flyte/golang_support_tools/go.mod

Large diffs are not rendered by default.

1,037 changes: 474 additions & 563 deletions boilerplate/flyte/golang_support_tools/go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion boilerplate/flyte/golang_test_targets/download_tooling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -e
tools=(
"github.com/EngHabu/mockery/cmd/mockery"
"github.com/flyteorg/flytestdlib/cli/pflags@latest"
"github.com/golangci/golangci-lint/cmd/golangci-lint@latest"
"github.com/golangci/golangci-lint/cmd/golangci-lint"
"github.com/alvaroloes/enumer"
"github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc"
)
Expand Down
15 changes: 15 additions & 0 deletions clients/go/admin/mocks/isGetDataRequest_Query.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/pb-cpp/flyteidl/admin/agent.pb.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/pb-cpp/flyteidl/admin/event.pb.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

404 changes: 273 additions & 131 deletions gen/pb-cpp/flyteidl/admin/execution.pb.cc

Large diffs are not rendered by default.

133 changes: 133 additions & 0 deletions gen/pb-cpp/flyteidl/admin/execution.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading