GitHub
05/22/2023, 6:49 PMStructuredDataset
. This can be very limiting in cases where we want to take advantage of specific features from a given library.
Some common use-cases
• Predicate pushdown when reading hive-style partitions
• Writing partitioned tables
• Appending to a BigQuery table instead of overwriting it
Goal: What should the final outcome look like, ideally?
I would like to take advantage of StructuredDataset's portability without losing important features of the underlying libraries.
Describe alternatives you've considered
The alternative would be using FlyteDirectory
or FlyteFile
.
@task
def t(ff: StructuredDataset):
# we have a pyspark DataFrame
df = StructuredDataset(pyspark.sql.DataFrame).all()
ff = FlyteFile.new_remote_file()
df.write.parquet(ff.path, partitionBy=["country"])
return ff
Propose: Link/Inline OR Additional context
Some examples...
# filter hive partitioned parquet with pandas to avoid loading it all into memory
def t_pandas():
df = sd.open(pd.DataFrame).all(filters=[("year", ">=", 2021)])
# write a hive partitioned table
def t_pandas()
...
return StructuredDataset(dataframe=df, partition_cols=['year', 'month', 'day'])
# append to a table instead of overwrite it
def t_write_bq():
...
return StructuredDataset(df, uri="bq:/", append=True)
# support polars streaming
def t_polars_stream():
...
return StructuredDataset(dataframe=df, streaming=True)
# read with low memory setting
def t_polars_low_mem(sd: StructuredDataset):
df = sd.open(pl.DataFrame).all(low_mem=True)
Are you sure this issue hasn't been raised already?
☑︎ Yes
Have you read the Code of Conduct?
☑︎ Yes
flyteorg/flyteGitHub
05/22/2023, 7:21 PMGitHub
05/22/2023, 7:33 PM<https://github.com/flyteorg/flyteadmin/tree/master|master>
by katrogan
<https://github.com/flyteorg/flyteadmin/commit/ed4d771f311f2633d1bc4f61aaefdf7830b8b1d8|ed4d771f>
- Save execution namespace in system metadata (#568)
flyteorg/flyteadminGitHub
05/22/2023, 7:51 PMmaxArrayJobSize
there is a panic during task execution with stacktrace:
```
Workflow[apfelstrudeldevelopmentapfelstrudel.flyte.workflows.search_workflow_fragmentlevel.hpo_deeplearning_cpu] failed. RuntimeExecutionError: max number of system retry attempts [51/50] exhausted. Last known status message: failed at Node[n1]. RuntimeExecutionError: failed during plugin execution, caused by: failed to execute handle for plugin [k8s-array]: panic when executing a plugin [k8s-array]. Stack: [goroutine 232 [running]:
runtime/debug.Stack()
/usr/local/go/src/runtime/debug/stack.go:24 +0x65
github.com/flyteorg/flytepropeller/pkg/controller/nodes/task.Handler.invokePlugin.func1.1()
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/handler.go:390 +0xfe
panic({0x2276320, 0x3f6e0d0})
/usr/local/go/src/runtime/panic.go:838 +0x207
github.com/flyteorg/flytestdlib/bitarray.(*BitSet).IsSet(...)
/go/pkg/mod/github.com/flyteorg/flytestdlib@v1.0.15/bitarray/bitset.go:33
github.com/flyteorg/flyteplugins/go/tasks/plugins/array/core.InitializeExternalResources({0x2b96d18, 0xc01dd23a70}, {0x2ba3080?, 0xc00b0aa2c0?}, 0xc01652ab40, 0x279b758)
/go/pkg/mod/github.com/flyteorg/flyteplugins@v1.0.45/go/tasks/plugins/array/core/metadata.go:33 +0x1e1
github.com/flyteorg/flyteplugins/go/tasks/plugins/array/k8s.Executor.Handle({{0x7f74cd1c7128, 0xc0007ae680}, {{0x2b89030, 0xc004753760}}, {{0x2b89030, 0xc004753810}}}, {0x2b96d18, 0xc01dd23a70}, {0x2ba3080, 0xc00b0aa2c0})
/go/pkg/mod/github.com/flyteorg/flyteplugins@v1.0.45/go/tasks/plugins/array/k8s/executor.go:96 +0x268
github.com/flyteorg/flytepropeller/pkg/controller/nodes/task.Handler.invokePlugin.func1(0x1?, {0x2b96d18, 0xc01dd236e0}, {0x2b99458?, 0xc0048ee810?}, 0x0?)
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/handler.go:397 +0x178
github.com/flyteorg/flytepropeller/pkg/controller/nodes/task.Handler.invokePlugin({{0x2b98958, 0xc0014c90f8}, {0x2b83398, 0xc0014baa60}, 0xc001683920, 0xc001683950, 0xc001683980, {0x2b98998, 0xc020838640}, 0xc0003a4000, ...}, ...)
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/handler.go:399 +0x9a
github.com/flyteorg/flytepropeller/pkg/controller/nodes/task.Handler.Handle({{0x2b98958, 0xc0014c90f8}, {0x2b83398, 0xc0014baa60}, 0xc001683920, 0xc001683950, 0xc001683980, {0x2b98998, 0xc020838640}, 0xc0003a4000, ...}, ...)
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/task/handler.go:672 +0x1de5
github.com/flyteorg/flytepropeller/pkg/controller/nodes/dynamic.dynamicNodeTaskNodeHandler.handleParentNode({{0x2b9a388, 0xc0004000d0}, {{0xc0005b29c0, {{...}, 0x0}, {0xc000fa4000, 0x4, 0x4}}, {0xc0005b29e0, {{...}, ...}, ...}, ...}, ...}, ...)
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/dynamic/handler.go:70 +0xd8
github.com/flyteorg/flytepropeller/pkg/controller/nodes/dynamic.dynamicNodeTaskNodeHandler.Handle({{0x2b9a388, 0xc0004000d0}, {{0xc0005b29c0, {{...}, 0x0}, {0xc000fa4000, 0x4, 0x4}}, {0xc0005b29e0, {{...}, ...}, ...}, ...}, ...}, ...)
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/dynamic/handler.go:224 +0x9d0
github.com/flyteorg/flytepropeller/pkg/controller/nodes.(*nodeExecutor).execute(0xc0003e20c0, {0x2b96d18, 0xc01dd23050}, {0x2b98798, 0xc000a38280}, 0xc0318a0000, {0x2baced0?, 0xc004faa4e0?})
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/executor.go:460 +0x157
github.com/flyteorg/flytepropeller/pkg/controller/nodes.(*nodeExecutor).handleQueuedOrRunningNode(0xc0003e20c0, {0x2b96d18, 0xc01dd23050}, 0xc0318a0000, {0x2b98798?, 0xc000a38280?})
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/executor.go:593 +0x227
github.com/flyteorg/flytepropeller/pkg/controller/nodes.(*nodeExecutor).handleNode(0xc0003e20c0, {0x2b96d18, 0xc01dd23050}, {0x2b7b760, 0xc00a42cf00}, 0xc0318a0000, {0x2b98798?, 0xc000a38280})
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/executor.go:820 +0x3c5
github.com/flyteorg/flytepropeller/pkg/controller/nodes.(*nodeExecutor).RecursiveNodeHandler(0xc0003e20c0, {0x2b96d18, 0xc01dd22a20}, {0x2ba7398, 0xc043119770}, {0x2b7b760, 0xc00a42cf00}, {0x2b96ff0?, 0xc00a42cf00?}, {0x2ba4d50, ...})
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/executor.go:1018 +0x705
github.com/flyteorg/flytepropeller/pkg/controller/nodes.(*nodeExecutor).handleDownstream(0x26ae306?, {0x2b96d18, 0xc01dd22a20}, {0x2ba7398, 0xc043119770}, {0x2b7b760, 0xc00a42cf00?}, {0x2b96ff0?, 0xc00a42cf00}, {0x2ba4d50, ...})
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/executor.go:858 +0x3c5
github.com/flyteorg/flytepropeller/pkg/controller/nodes.(*nodeExecutor).RecursiveNodeHandler(0xc0003e20c0, {0x2b96d18, 0xc01dd22a20}, {0x2ba7398, 0xc043119770}, {0x2b7b760, 0xc00a42cf00}, {0x2b96ff0?, 0xc00a42cf00?}, {0x2ba4d50, ...})
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/executor.go:1025 +0x935
github.com/flyteorg/flytepropeller/pkg/controller/nodes.(*nodeExecutor).handleDownstream(0x26ae306?, {0x2b96d18, 0xc01dd22a20}, {0x2ba7398, 0xc043119770}, {0x2b7b760, 0xc00a42cf00?}, {0x2b96ff0?, 0xc00a42cf00}, {0x2ba4d50, ...})
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/executor.go:858 +0x3c5
github.com/flyteorg/flytepropeller/pkg/controller/nodes.(*nodeExecutor).RecursiveNodeHandler(0xc0003e20c0, {0x2b96d18, 0xc01dd22a20}, {0x2ba7398, 0xc043119770}, {0x2b7b760, 0xc00a42cf00}, {0x2b96ff0?, 0xc00a42cf00?}, {0x2ba4d50, ...})
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/nodes/executor.go:1025 +0x935
github.com/flyteorg/flytepropeller/pkg/controller/workflow.(*workflowExecutor).handleRunningWorkflow(0xc0008a9dc0, {0x2b96d18, 0xc01dd22a20}, 0xc00a42cf00)
/go/src/github.com/flyteorg/flytepropeller/pkg/controller/workflow/executor.go:147 +0x1b3
<http://github.com/flyteorg/flytepropeller/pkg/controller/workflow.(*workflowExecutor).HandleFlyteWorkflow(0xc0008a9dc0|github.com/flyteorg/flytepropeller/pkg/controller/workf…
flyteorg/flyteGitHub
05/22/2023, 8:04 PMDetermineDiscoverability
function does not fail before attempting to initialize ExternalResources
for the maptask subtasks.
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
fixes flyteorg/flyte#3709
Follow-up issue
NA
flyteorg/flyteplugins
✅ All checks have passed
7/7 successful checksGitHub
05/22/2023, 8:11 PMGitHub
05/22/2023, 8:41 PMimage▾
GitHub
05/22/2023, 8:45 PMn0-0-n0-n1-0-dn0
and again below TYPE
, there's a progress bar that doesn't show anything, just a shimmering thing that indicates that maybe one day we'll see something.
image▾
GitHub
05/22/2023, 8:49 PMimage▾
GitHub
05/22/2023, 8:55 PM<https://github.com/flyteorg/flyteconsole/tree/master|master>
by jsonporter
<https://github.com/flyteorg/flyteconsole/commit/356b2af44fa3f522af4fe5f08b89a04a2bfb3314|356b2af4>
- Bug: union val missing for LP relaunch (#762)
flyteorg/flyteconsoleGitHub
05/22/2023, 8:56 PMimage▾
GitHub
05/22/2023, 9:03 PMGitHub
05/22/2023, 9:22 PM<https://github.com/flyteorg/flyteadmin/tree/master|master>
by pmahindrakar-oss
<https://github.com/flyteorg/flyteadmin/commit/7915ae843e24683e3ad7dab90030218323019827|7915ae84>
- Update startedAt timestamp only if not set (#567)
flyteorg/flyteadminGitHub
05/22/2023, 9:49 PM<https://github.com/flyteorg/flyte/tree/master|master>
by wild-endeavor
<https://github.com/flyteorg/flyte/commit/5ab8cb887a5a7051070cb93fca603ed1f22f2f74|5ab8cb88>
- [Patch] v1.6.1 release base (#3697)
flyteorg/flyteGitHub
05/22/2023, 10:04 PMGitHub
05/22/2023, 10:12 PMGitHub
05/22/2023, 10:13 PMGitHub
05/23/2023, 3:55 AMv2.31.0
2.31.0 (2023-05-22)
Security
• Versions of Requests between v2.3.0 and v2.30.0 are vulnerable to potential forwarding ofheaders to destination servers when following HTTPS redirects.Proxy-Authorization
When proxies are defined with user info (https://user:pass@proxy:8080), Requests will construct aheader that is attached to the request to authenticate with the proxy.Proxy-Authorization
In cases where Requests receives a redirect response, it previously reattached theheader incorrectly, resulting in the value being sent through the tunneled connection to the destination server. Users who rely on defining their proxy credentials in the URL are strongly encouraged to upgrade to Requests 2.31.0+ to prevent unintentional leakage and rotate their proxy credentials once the change has been fully deployed.Proxy-Authorization
Users who do not use a proxy or do not supply their proxy credentials through the user information portion of their proxy URL are not subject to this vulnerability.
Full details can be read in our Github Security Advisory and CVE-2023-32681.
v2.30.0
2.30.0 (2023-05-03)
Dependencies
• ⚠️ Added support for urllib3 2.0. ⚠️
This may contain minor breaking changes so we advise careful testing and reviewing https://urllib3.readthedocs.io/en/latest/v2-migration-guide.html prior to upgrading.
Users who wish to stay on urllib3 1.x can pin to.urllib3<2
v2.29.0
2.29.0 (2023-04-26)
Improvements
• Requests now defers chunked requests to the urllib3 implementation to improve standardization. (#6226)
• Requests relaxes header component requirements to support bytes/str subclasses. (#6356)... (truncated) Changelog Sourced from requests's changelog.
2.31.0 (2023-05-22)
Security
• Versions of Requests between v2.3.0 and v2.30.0 are vulnerable to potential forwarding ofheaders to destination servers when following HTTPS redirects.Proxy-Authorization
When proxies are defined with user info (https://user:pass@proxy:8080), Requests will construct aheader that is attached to the request to authenticate with the proxy.Proxy-Authorization
In cases where Requests receives a redirect response, it previously reattached theheader incorrectly, resulting in the value being sent through the tunneled connection to the destination server. Users who rely on defining their proxy credentials in the URL are strongly encouraged to upgrade to Requests 2.31.0+ to prevent unintentional leakage and rotate their proxy credentials once the change has been fully deployed.Proxy-Authorization
Users who do not use a proxy or do not supply their proxy credentials through the user information portion of their proxy URL are not subject to this vulnerability.
Full details can be read in our Github Security Advisory and CVE-2023-32681.
2.30.0 (2023-05-03)
Dependencies
• ⚠️ Added support for urllib3 2.0. ⚠️
This may contain minor breaking changes so we advise careful testing and reviewing https://urllib3.readthedocs.io/en/latest/v2-migration-guide.html prior to upgrading.
Users who wish to stay on urllib3 1.x can pin to.urllib3<2
2.29.0 (2023-04-26)
Improvements
• Requests now defers chunked requests to the urllib3 implementation to improve standardization. (#6226)
• Requests relaxes header component requirements to support bytes/str subclasses. (#6356)
2.28.2 (2023-01-12)... (truncated) Commits • `147c851` v2.31.0 • `74ea7cf` Merge pull request from GHSA-j8r2-6x86-q33q • `3022253` test on pypy 3.8 and pypy 3.9 on windows and macos (#6424) • `b639e66` test on py3.12 (#6448) • `d3d5044` Fixed a small typo (#6452) • `2ad18e0` v2.30.0 • `f2629e9` Remove strict parameter (#6434) • `87d63de` v2.29.0 • `51716c4` enable the warnings plugin (#6416) • `a7da1ab` try on ubuntu 22.04 (#6418) • Additional commits viewable in compare view Dependabot compatibility score Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.
* * *
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
• @dependabot rebase
will rebase this PR
• @dependabot recreate
will recreate this PR, overwriting any edits that have been made to it
• @dependabot merge
will merge this PR after your CI passes on it
• @dependabot squash and merge
will squash and merge this PR after your CI passes on it
• @dependabot cancel merge
will cancel a previously requested merge and block automerging
• @dependabot reopen
will reopen this PR if it is closed
• @dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
• @dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
• @dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
• @dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yo…
flyteorg/flytelab
GitHub Actions: Push to GHCR
GitHub Actions: build-and-deploy
✅ 3 other checks have passed
3/5 successful checksGitHub
05/23/2023, 12:29 PMTraceback (most recent call last):
File "debug_remote.py", line 45, in <module>
flyte_workflow_execution = remote.fetch_execution(project=project, domain=domain, name=execution)
File "/opt/micromamba/envs/OHLI/lib/python3.8/site-packages/flytekit/remote/remote.py", line 362, in fetch_execution
self.client.get_execution(
File "/opt/micromamba/envs/OHLI/lib/python3.8/site-packages/flytekit/remote/remote.py", line 192, in client
self._client = SynchronousFlyteClient(self.config.platform, **self._kwargs)
File "/opt/micromamba/envs/OHLI/lib/python3.8/site-packages/flytekit/clients/raw.py", line 44, in __init__
self._channel = wrap_exceptions_channel(cfg, upgrade_channel_to_authenticated(cfg, get_channel(cfg)))
File "/opt/micromamba/envs/OHLI/lib/python3.8/site-packages/flytekit/clients/auth_helper.py", line 165, in get_channel
credentials = grpc.ssl_channel_credentials(load_cert(cfg.ca_cert_file_path))
File "/opt/micromamba/envs/OHLI/lib/python3.8/site-packages/grpc/__init__.py", line 1611, in ssl_channel_credentials
_cygrpc.SSLChannelCredentials(root_certificates, private_key,
File "src/python/grpcio/grpc/_cython/_cygrpc/credentials.pyx.pxi", line 143, in grpc._cython.cygrpc.SSLChannelCredentials.__cinit__
TypeError: expected certificate to be bytes, got <class 'OpenSSL.crypto.X509'>
The issue is in flytekit.clients.auth_helper where we have
credentials = grpc.ssl_channel_credentials(load_cert(cfg.ca_cert_file_path))
The problem ist that load_cert
returns an OpenSSL.crypto.X509 object, but grpc.ssl_channel_credentials
expects a bytes string. So, we need to modify the call as follows (to encode the X509 object as bytes):
credentials = grpc.ssl_channel_credentials(crypto.dump_certificate(crypto.FILETYPE_PEM, load_cert(cfg.ca_cert_file_path)))
Alternatively, we could modify load_cert
to return bytes.
Expected behavior
Providing a CA root certificate in the flyte config via admin.caCertFilePath should not result in any errors.
Additional context to reproduce
No response
Screenshots
No response
Are you sure this issue hasn't been raised already?
☑︎ Yes
Have you read the Code of Conduct?
☑︎ Yes
flyteorg/flyteGitHub
05/23/2023, 3:33 PMoutput = foo_task(
param=value
).with_overrides(
requests=Resources(mem="32Gi", cpu="4", ephemeral_storage="4Gi")
)
flyteconsole does not show the correct overridden requests
and it seems it only show the values set in decorator, for example:
@task(
requests=Resources(mem="16Gi", cpu="4", ephemeral_storage="4Gi"),
)
Expected behavior
flyteconsole shows the correct overridden values.
Additional context to reproduce
No response
Screenshots
Screenshot 2023-05-23 at 17 32 03▾
GitHub
05/23/2023, 4:25 PM<https://github.com/flyteorg/flyteconsole/tree/master|master>
by ursucarina
<https://github.com/flyteorg/flyteconsole/commit/b15640ad3674a737c54fe3ff77b3abeede4c8dd5|b15640ad>
- chore: hide map task runtime info (#766)
flyteorg/flyteconsoleGitHub
05/23/2023, 4:38 PMGitHub
05/23/2023, 5:15 PMpip
dependencies of this project.
Changes included in this PR
• Changes to the following files to upgrade the vulnerable dependencies to a fixed version:
• doc-requirements.txt
⚠️ Warning
virtualenv 20.23.0 has requirement importlib-metadata>=6.4.1; python_version < "3.8", but you have importlib-metadata 6.0.0.
virtualenv 20.23.0 has requirement platformdirs<4,>=3.2, but you have platformdirs 2.6.2.
virtualenv 20.23.0 has requirement filelock<4,>=3.11, but you have filelock 3.9.0.
sphinxext-remoteliteralinclude 0.4.0 has requirement MarkupSafe<=2.0.1; python_version < "3.8", but you have MarkupSafe 2.1.2.
Sphinx 4.5.0 requires sphinxcontrib-htmlhelp, which is not installed.
Sphinx 4.5.0 requires sphinxcontrib-applehelp, which is not installed.
Vulnerabilities that will be fixed
By pinning:
(*) Note that the real score may have changed since the PR was raised.
Some vulnerabilities couldn't be fully fixed and so Snyk will still find them when the project is tested again. This may be because the vulnerability existed within more than one direct dependency, but not all of the affected dependencies could be upgraded.
Check the changes in this PR to ensure they won't cause issues with your project.
* * *
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.
For more information: https://camo.githubusercontent.com/a74b133eea7258f32507fcf19d357fd80f1667d3a34a5ff54909762f48a19b1f/68747470733a2f2f6170692e7365676d656e742e696f2f76312f706978656c2f747261636b3f646174613d65794a33636d6c305a55746c65534936496e4a79576d785a634564485932527954485a7362306c596430645563566734576b4652546e4e434f5545774969776959573576626e6c746233567a535751694f694a6d596a67314e324532596930795a6d49344c5451314f5749744f57497a4f5330304e6a6379595451774e6a68694d4467694c434a6c646d567564434936496c425349485a705a58646c5a434973496e42796233426c636e52705a584d694f6e736963484a4a5a434936496d5a694f44553359545a694c544a6d596a67744e44553559693035596a4d354c5451324e7a4a684e4441324f4749774f434a3966513d3d
🧐 View latest project report
🛠️ Adjust project settings
📚 Read more about Snyk's upgrade and patch logic
* * *
Learn how to fix vulnerabilities with free interactive lessons:
🦉 Learn about vulnerability in an interactive lesson of Snyk Learn.
flyteorg/flyte
DCO: DCO
✅ 5 other checks have passed
5/6 successful checksGitHub
05/23/2023, 5:23 PMpip
dependencies of this project.
Changes included in this PR
• Changes to the following files to upgrade the vulnerable dependencies to a fixed version:
• doc-requirements.txt
Vulnerabilities that will be fixed
By pinning:
(*) Note that the real score may have changed since the PR was raised.
Some vulnerabilities couldn't be fully fixed and so Snyk will still find them when the project is tested again. This may be because the vulnerability existed within more than one direct dependency, but not all of the affected dependencies could be upgraded.
Check the changes in this PR to ensure they won't cause issues with your project.
* * *
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.
For more information: https://camo.githubusercontent.com/ff43ce03d493d00b2ee3ee6d98bd9be73375a69a332516db201f622bf8f8e264/68747470733a2f2f6170692e7365676d656e742e696f2f76312f706978656c2f747261636b3f646174613d65794a33636d6c305a55746c65534936496e4a79576d785a634564485932527954485a7362306c596430645563566734576b4652546e4e434f5545774969776959573576626e6c746233567a535751694f694a6d4e5749345a4463354e43307a5a4451774c545178597a63744f44466d4d79316b4e7a5130596a6777596d566b593249694c434a6c646d567564434936496c425349485a705a58646c5a434973496e42796233426c636e52705a584d694f6e736963484a4a5a434936496d5931596a686b4e7a6b304c544e6b4e4441744e44466a4e7930344d57597a4c5751334e4452694f4442695a57526a59694a3966513d3d
🧐 View latest project report
🛠️ Adjust project settings
📚 Read more about Snyk's upgrade and patch logic
* * *
Learn how to fix vulnerabilities with free interactive lessons:
🦉 Learn about vulnerability in an interactive lesson of Snyk Learn.
flyteorg/flyteidl
GitHub Actions: Generate Swagger Code
DCO: DCO
✅ 10 other checks have passed
10/12 successful checksGitHub
05/23/2023, 5:53 PM<https://github.com/flyteorg/flyteadmin/tree/master|master>
by wild-endeavor
<https://github.com/flyteorg/flyteadmin/commit/15d5c7bb568b570890b1c696f0d01466ea6bef2d|15d5c7bb>
- Tiny url improvements (#565)
flyteorg/flyteadminGitHub
05/23/2023, 6:36 PMGitHub
05/23/2023, 7:12 PMpyflyte
hang if grpcio==1.55.0 is installed, e.g. https://gist.github.com/eapolinario/17a9d966aec1be6932573996bc209c81.
Tracking this on the gprc side in grpc/grpc#33218
Expected behavior
pyflyte commands that invoke flyteadmin should not hang.
Additional context to reproduce
No response
Screenshots
No response
Are you sure this issue hasn't been raised already?
☑︎ Yes
Have you read the Code of Conduct?
☑︎ Yes
flyteorg/flyteGitHub
05/23/2023, 8:37 PMGitHub
05/23/2023, 11:06 PMGitHub
05/24/2023, 12:06 AM