https://flyte.org logo
Join the conversationJoin Slack
Channels
announcements
ask-the-community
auth
conference-talks
contribute
databricks-integration
datahub-flyte
deployment
ecosystem-unionml
engineeringlabs
events
feature-discussions
flyte-bazel
flyte-build
flyte-console
flyte-deployment
flyte-documentation
flyte-github
flyte-ui-ux
flytekit
flytekit-java
flytelab
great-content
hacktoberfest-2022
helsing-flyte
in-flyte-conversations
introductions
jobs
konan-integration
linkedin-flyte
random
ray-integration
ray-on-flyte
release
scipy-2022-sprint
sig-large-models
workflow-building-ui-proj
writing-w-sfloris
Powered by Linen
flyte-github
  • g

    GitHub

    12/28/2022, 6:14 PM
    #3191 Change base image for flyte-binary image Pull request opened by jeevb flyteorg/flyte
  • g

    GitHub

    12/28/2022, 6:20 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyte/tree/master|master>
    by jeevb
    <https://github.com/flyteorg/flyte/commit/a0b8096f41cc95a58291fb959be0116186e38692|a0b8096f>
    - Change base image for flyte-binary image (#3191) flyteorg/flyte
  • g

    GitHub

    12/28/2022, 6:32 PM
    #1400 Delete model files Pull request opened by eapolinario Signed-off-by: Eduardo Apolinario eapolinario@users.noreply.github.com TL;DR Remove all mentions to model files Type ☐ Bug Fix ☑︎ Feature ☐ Plugin Are all requirements met? ☐ Code completed ☐ Smoke tested ☐ Unit tests added ☐ Code documentation added ☐ Any pending items have an associated Issue Complete description Tracking Issue https://github.com/flyteorg/flyte/issues/ Follow-up issue NA OR https://github.com/flyteorg/flyte/issues/ flyteorg/flytekit
  • g

    GitHub

    12/28/2022, 7:06 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyteadmin/tree/master|master>
    by pingsutw
    <https://github.com/flyteorg/flyteadmin/commit/d2215eda681d59e1ce99c6bad82814a4be79366d|d2215eda>
    - Doc hub proposal (#452) flyteorg/flyteadmin
  • g

    GitHub

    12/28/2022, 7:06 PM
    #452 Doc hub proposal Pull request opened by pingsutw on <!date^1656600153^{date_short}|2022-06-30T14:42:33Z> TL;DR Design Doc Database Schema Task Table Description Table Create a task/workflow description we have added description_entity to taskSpec / workflowSpec, so we'll register a description entity when we register a task / workflow. 1. Check if we have the same description entity.
    Select * from Description WHERE resource = task AND project = flytesnacks AND domain = development AND NAME = tf_wf AND version = xyz
    2. If the same description entity doesn't exist, then insert a new row to the Description Table. 3. update descriptionID in the specific row in the task table. Get task description Use descriptionID in the task table to find the specific description entity
    Select description.* LEFT JOIN task ON description.descriptionID = task.descriptionID AND description.project = task.project AND description.domain = task.domain AND description.name = task.name WHERE task.project = flytesnacks AND task.domain = development AND NAME = task.tf_wf AND task.version = a123456
    List task description
    Select description.* LEFT JOIN task ON description.descriptionID = task.descriptionID AND description.project = task.project AND description.domain = task.domain AND description.name = task.name WHERE task.project = flytesnacks AND task.domain = development AND NAME = task.tf_wf LIMIT 20
    Get / List the Task Added short description to task proto, so we'll get short description when we get / list the task. Type ☐ Bug Fix ☑︎ Feature ☐ Plugin Are all requirements met? ☑︎ Code completed ☑︎ Smoke tested ☑︎ Unit tests added ☐ Code documentation added ☐ Any pending items have an associated Issue Complete description ^^^ Tracking Issue flyteorg/flyte#531 Follow-up issue NA flyteorg/flyteadmin GitHub Actions: Goreleaser GitHub Actions: Build & Push Flytescheduler Image GitHub Actions: Build & Push Flyteadmin Image GitHub Actions: Bump Version ✅ 10 other checks have passed 10/14 successful checks
  • g

    GitHub

    12/28/2022, 7:20 PM
    #3192 Fixups for flyte-binary chart Pull request opened by jeevb on <!date^1672253798^{date_short}|2022-12-28T18:56:38Z> flyteorg/flyte GitHub Actions: trigger-single-binary-build GitHub Actions: trigger-sandbox-lite-build ✅ 8 other checks have passed 8/10 successful checks
  • g

    GitHub

    12/28/2022, 7:21 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyte/tree/master|master>
    by jeevb
    <https://github.com/flyteorg/flyte/commit/5c5c9e11510c20f70791e1b58795ed540d06c9eb|5c5c9e11>
    - Fixups for flyte-binary chart (#3192) flyteorg/flyte
  • g

    GitHub

    12/28/2022, 8:08 PM
    Release - v1.1.67 New release published by flyte-bot Changelog • d2215ed Doc hub proposal (#452) flyteorg/flyteadmin
  • g

    GitHub

    12/28/2022, 8:29 PM
    #3193 Update Flyte components Pull request opened by flyte-bot Updated flyte deployment • Updated GCP Flyte kustomize generated manifest file • Updated EKS Flyte kustomize generated manifest file • Updated Sandbox Flyte kustomize generated manifest file • Updated TEST Flyte kustomize generated manifest file • Updated GCP Flyte helm generated manifest file • Updated EKS Flyte helm generated manifest file • Updated Sandbox Flyte helm generated manifest file • Updated TEST Flyte helm generated manifest file • Auto-generated by [flyte-bot] flyteorg/flyte
  • g

    GitHub

    12/28/2022, 10:22 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyteidl/tree/master|master>
    by EngHabu
    <https://github.com/flyteorg/flyteidl/commit/ac5d3d8f4db7d2b235a522c3af1620009ff1bb4f|ac5d3d8f>
    - Add inital
    dask
    plugin IDL #minor (#339) flyteorg/flyteidl
  • g

    GitHub

    12/28/2022, 10:22 PM
    #339 Add inital `dask` plugin IDL #minor Pull request opened by bstadlbauer on <!date^1667329462^{date_short}|2022-11-01T19:04:22Z> TL;DR Adds the IDL for creating a
    DaskJob
    Type ☐ Bug Fix ☑︎ Feature ☐ Plugin Are all requirements met? ☑︎ Code completed ☐ Smoke tested ☐ Unit tests added ☐ Code documentation added ☐ Any pending items have an associated Issue Complete description Tracking Issue https://github.com/flyteorg/flyte/issues/ Follow-up issue NA flyteorg/flyteidl ✅ All checks have passed 13/13 successful checks
  • g

    GitHub

    12/28/2022, 10:23 PM
    Release - v1.4.0 New release published by flyte-bot Changelog • ac5d3d8 Add inital
    dask
    plugin IDL #minor (#339) flyteorg/flyteidl
  • g

    GitHub

    12/28/2022, 10:26 PM
    #657 Update Flyteidl version Pull request opened by flyte-bot Update Flyteidl version • Auto-generated by [flyte-bot] flyteorg/flyteconsole
  • g

    GitHub

    12/28/2022, 10:34 PM
    #3194 Refactor single-binary image builds Pull request opened by jeevb on <!date^1672262339^{date_short}|2022-12-28T21:18:59Z> flyteorg/flyte ✅ All checks have passed 11/11 successful checks
  • g

    GitHub

    12/28/2022, 10:53 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyte/tree/master|master>
    by jeevb
    <https://github.com/flyteorg/flyte/commit/61e5fa4f0861a98759a7025662ac056f40c3b21b|61e5fa4f>
    - Refactor single-binary image builds (#3194) flyteorg/flyte
  • g

    GitHub

    12/29/2022, 5:14 AM
    #3195 Switch to using stow for all supported backends in flyte-binary chart Pull request opened by jeevb flyteorg/flyte
  • g

    GitHub

    12/29/2022, 6:14 AM
    #3196 [Core feature] [Pod plugin] UX and example improvements Issue created by kumare3 Motivation: Why do you think this is important? Example for using Pod features is overly complicated. Also the pod plugin does not make it simply possible to add pod-spec related features like node-selector etc. it is possible to do this
    @task(
            task_config=Pod(
                pod_spec=V1PodSpec(
                    containers=[],
                    node_selector={"node_group": "memory"},
                ),
            ),
            requests=Resources(
                mem="1G",
            ),
        )
        def my_pod_task():
            ...
    Goal: What should the final outcome look like, ideally? Improve the example and point to the new pod plugin Describe alternatives you've considered NA Propose: Link/Inline OR Additional context No response Are you sure this issue hasn't been raised already? ☑︎ Yes Have you read the Code of Conduct? ☑︎ Yes flyteorg/flyte
  • g

    GitHub

    12/29/2022, 6:26 AM
    #3197 [Core feature] [flytekit] data plugins update Issue created by kumare3 Motivation: Why do you think this is important? Currently we have our own datapersistence layer. This is because we wanted to support aws cli and gsutil. I think we should drop support for aws cli and gsutil and completely migrate to using datafusion / arrow file system or fsspec On reading I see that the datafusion project has matured and has a fantastic rust object_Store crate which works great for Flytekit https://arrow.apache.org/docs/python/filesystems.html Goal: What should the final outcome look like, ideally? Flyte is enriched with the amazing integrations of arrow and the great growing ecosystem. Describe alternatives you've considered NA Propose: Link/Inline OR Additional context No response Are you sure this issue hasn't been raised already? ☑︎ Yes Have you read the Code of Conduct? ☑︎ Yes flyteorg/flyte
  • g

    GitHub

    12/29/2022, 9:18 AM
    1 new commit pushed to
    <https://github.com/flyteorg/flytekit-java/tree/master|master>
    by narape
    <https://github.com/flyteorg/flytekit-java/commit/993ce773159db565af792e1ba6b675541ebd8768|993ce773>
    - Auto generate node ID (#162) flyteorg/flytekit-java
  • g

    GitHub

    12/29/2022, 6:08 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyte/tree/master|master>
    by wild-endeavor
    <https://github.com/flyteorg/flyte/commit/9c4ec0a75342a5bcb7e17d5352f7983603127047|9c4ec0a7>
    - Switch to using stow for all supported backends in flyte-binary chart (#3195) flyteorg/flyte
  • g

    GitHub

    12/29/2022, 6:18 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyte/tree/master|master>
    by eapolinario
    <https://github.com/flyteorg/flyte/commit/91541365b0387324be6b24172b6977d193b0bc66|91541365>
    - Update Flyte components (#3193) flyteorg/flyte
  • g

    GitHub

    12/29/2022, 6:33 PM
    Release - Flyte v1.3.0-b6 milestone release New release published by flyte-bot Flyte v1.3.0-b6 Changelog Pull in Doc hub changes. flyteorg/flyte
  • g

    GitHub

    12/29/2022, 6:34 PM
    Deployment to github-pages by flyte-bot flyteorg/flyte
  • g

    GitHub

    12/29/2022, 8:08 PM
    #512 Fix gate node approve condition node interface binding validation Pull request opened by hamersaw TL;DR Currently, the
    ApproveCondition
    uses an empty node interface for validating variable bindings. This is incorrect, and results in a compilation failure. This PR uses upstream node bindings to discover the interface for the gate node in the case of an
    ApproveCondition
    . Type ☑︎ Bug Fix ☐ Feature ☐ Plugin Are all requirements met? ☑︎ Code completed ☑︎ Smoke tested ☐ Unit tests added ☐ Code documentation added ☐ Any pending items have an associated Issue Complete description ^^^ Tracking Issue NA Follow-up issue NA flyteorg/flytepropeller
  • g

    GitHub

    12/29/2022, 8:08 PM
    #3199 add separate step for binary tagging Pull request opened by wild-endeavor Signed-off-by: Yee Hing Tong wild-endeavor@users.noreply.github.com Tracking issue Describe your changes Check all the applicable boxes ☐ I updated the documentation accordingly. ☐ All new and existing tests passed. ☐ All commits are signed-off. Screenshots Note to reviewers flyteorg/flyte
  • g

    GitHub

    12/29/2022, 8:15 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyte/tree/master|master>
    by wild-endeavor
    <https://github.com/flyteorg/flyte/commit/ed63ea806af3c8e7131734d8acd6ecb9fe40032a|ed63ea80>
    - Add separate step for binary tagging in Flyte release (#3199) flyteorg/flyte
  • g

    GitHub

    12/29/2022, 9:54 PM
    #3200 Fixes for flyte-binary image release Pull request opened by jeevb on <!date^1672350361^{date_short}|2022-12-29T21:46:01Z> flyteorg/flyte GitHub Actions: Functional test GitHub Actions: trigger-single-binary-build ✅ 8 other checks have passed 8/10 successful checks
  • g

    GitHub

    12/29/2022, 9:56 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyte/tree/master|master>
    by wild-endeavor
    <https://github.com/flyteorg/flyte/commit/310f29addd9cb54c56cb4e0fd34aa1187cea6d3c|310f29ad>
    - Fixes for flyte-binary image release (#3200) flyteorg/flyte
  • g

    GitHub

    12/29/2022, 10:26 PM
    #3201 1.3 b7 change logs Pull request opened by wild-endeavor Empty changelog flyteorg/flyte
  • g

    GitHub

    12/29/2022, 10:26 PM
    1 new commit pushed to
    <https://github.com/flyteorg/flyte/tree/master|master>
    by wild-endeavor
    <https://github.com/flyteorg/flyte/commit/3df9fcf92a301b40b8528c41cece6f6dfc7c3e91|3df9fcf9>
    - 1.3 b7 change logs (#3201) flyteorg/flyte
Powered by Linen
Title
g

GitHub

12/29/2022, 10:26 PM
1 new commit pushed to
<https://github.com/flyteorg/flyte/tree/master|master>
by wild-endeavor
<https://github.com/flyteorg/flyte/commit/3df9fcf92a301b40b8528c41cece6f6dfc7c3e91|3df9fcf9>
- 1.3 b7 change logs (#3201) flyteorg/flyte
View count: 1