Ena Škopelja
02/27/2023, 3:42 PM~/.flyte/config.yaml
but can't figure out the proper formatAugie Palacios
02/27/2023, 9:18 PMTaoufik Dachraoui
02/28/2023, 12:12 PMEli Bixby
02/28/2023, 2:18 PMFranco Bocci
02/28/2023, 3:17 PMJay Phan
02/28/2023, 3:23 PMEduardo Matus
02/28/2023, 3:37 PMThe TensorFlow library was compiled to use AVX instructions
Any specific version to install tensorflow?Ketan (kumare3)
Jimmy Du
02/28/2023, 7:24 PMjustin hallquist
02/28/2023, 9:03 PM2023-02-28T15:52:39-05:00 tar: Removing leading `/' from member names
2023-02-28T15:53:09-05:00
2023-02-28T15:53:31-05:00 2023-02-28 20:53:31.706 | INFO STARTED TASK
this is ubiquitous across all of our tasks and we're running a rather deep DAG
locally, in serial (no --remote) it runs blazing fast (couple minutes)
however, with the ~1min stall on each pod, it takes > 30minutes
we'd rather not recombine tasks together if we don't need to so is there something we're missing here?Michael Tinsley
03/01/2023, 9:12 AMFabio Grätz
03/01/2023, 10:14 AMJoão Lobo Guerra Neto
03/01/2023, 10:19 AM10:23:51.39
10:23:51.39 *Welcome to the Bitnami minio container*
10:23:51.39 Subscribe to project updates by watching *<https://github.com/bitnami/bitnami-docker-minio>*
10:23:51.39 Submit issues and feature requests at *<https://github.com/bitnami/bitnami-docker-minio/issues>*
10:23:51.39
10:23:51.40 INFO ==> ** Starting MinIO setup **
/opt/bitnami/scripts/libminio.sh: line 317: /data/.access_key: Permission denied
This my spec configuration:
spec:
selector:
matchLabels:
app: minio
template:
metadata:
labels:
app: minio
spec:
containers:
- env:
- name: MINIO_ACCESS_KEY
value: xxxxxxxxxxxxxxx # I'm hiding my values
- name: MINIO_SECRET_KEY
value: xxxxxxxxxxxxxxx # I'm hiding my values
- name: MINIO_DEFAULT_BUCKETS
value: definedcrowd
image: <http://ecr.flyte.org/bitnami/minio:2021.10.13-debian-10-r0|ecr.flyte.org/bitnami/minio:2021.10.13-debian-10-r0>
name: minio
ports:
- containerPort: 9000
name: minio
- containerPort: 9001
name: minio-console
volumeMounts:
- mountPath: /data
name: minio-storage
securityContext:
fsGroup: 1001
fsGroupChangePolicy: OnRootMismatch
runAsUser: 1001
volumes:
- name: minio-storage
persistentVolumeClaim:
claimName: minio-storage-pv-claim
lgladh
03/01/2023, 11:12 AMError generating encrypted accesstoken cookie [SECURE_COOKIE_ERROR] Error creating secure cookie, caused by: securecookie: the value is too long
Error setting encrypted JWT cookie [SECURE_COOKIE_ERROR] Error creating secure cookie, caused by: securecookie: the value is too long
Any advice on how I can continue is much appreciated.Aswanth Krishnan
03/01/2023, 11:26 AMJoão Lobo Guerra Neto
03/01/2023, 1:33 PMFhuad Balogun
03/01/2023, 2:41 PMRuntimeExecutionError: failed during plugin execution, caused by: failed to check existence of futures file: [User] Failed to do HEAD on futures file
Andrew Korzhuev
03/01/2023, 3:10 PMraise AssertionError("The cached values aren't the same as the current call arguments")
There isn’t much context to why it happened, what should I look for to debug it? The workflow has a datetime parameter to it, which was renamed between versions, but I don’t think it should stop it from deployingRobin Eklund
03/01/2023, 3:10 PMpyflyte package
+ flytectl register
to only use pyflyte register
when deploying flyte workflows - but now i get an authentication error. With flytectl
i could authenticate by writing a secret to ~/.flyte/client_secret
but seems this is not working for pyflyte
Maybe someone else had similar issues?Reda Oulbacha
03/01/2023, 3:48 PMYee
Nicholas LoFaso
03/01/2023, 4:58 PMtask_config=Pod()
as we needed to customize some of the k8s spec. Usually for simpler tasks we set requests
and limits
for the task
decorator
It seems like the way we should be setting these values may have changed based on this? I’m reviewing this documentation nowFrank Shen
03/01/2023, 7:58 PMPeter Sulcs
03/01/2023, 9:11 PM❯ pyflyte run --remote example.py training_workflow --hyperparameters '{"C": 0.1}'
Go to <http://localhost:30080/console/projects/flytesnacks/domains/development/executions/fa1c65afdde414c7d961> to see execution in the console.
syntax when you have custom dependencies as specified in requirements.txt
. I got excited that the run command was somehow passing scikit-learn
along, but now I see that scikit-learn
is simply preinstalled in the base image. I am curious if there a way to handle custom dependencies without dropping out of the simple pyflyte run
command and without having to have a "kitchen sink" style base image?Taoufik Dachraoui
03/02/2023, 11:59 AMBroder Peters
03/02/2023, 1:34 PMLaura Lin
03/02/2023, 3:46 PMLaura Lin
03/02/2023, 4:19 PMFabio Grätz
03/02/2023, 5:29 PMBaseModel
(which has several benefits over data classes which is why our ML engineers asked for this).
from pydantic import BaseModel
class Conf(BaseModel):
...
@task
def train(conf: Conf):
...
Assuming there is a class BaseModelTransformer(TypeTransformer[BaseModel]):
, would it be invoked if the user specifies train(conf: Conf)
or only in case they specify train(conf: BaseModel)
?Victor Gustavo da Silva Oliveira
03/02/2023, 5:42 PM[Errno 2] No such file or directory: '/tmp/flytep4bezuvh/local_flytekit/d8e1f470ac5ed7ac3141ab1b6d83a854/6W2MGqmQ.jpg'
Can anybody help me with this?