Fedir Skitsko

Results 74 comments of Fedir Skitsko

Here is some logs from k8s celery worker: ```bash The delivery info for this task is: {'exchange': '', 'routing_key': 'dagster'} Traceback (most recent call last): File "/usr/local/lib/python3.10/site-packages/celery/worker/consumer/consumer.py", line 659, in...

Looks like the problem is here: https://github.com/dagster-io/dagster/blob/d307f1a5818bc25fb00fbff81d0a75669a4ab5c1/python_modules/libraries/dagster-celery/dagster_celery/executor.py#L128 while `celery_k8s_job_executor` is using different routing_key https://github.com/dagster-io/dagster/blob/master/python_modules/libraries/dagster-celery-k8s/dagster_celery_k8s/executor.py#L233 .... solution, make custom CeleryK8sRunLauncher launcher?....

ok, the fix is here: https://github.com/dagster-io/dagster/blob/master/helm/dagster/templates/deployment-celery-queues.yaml#L64 change `dagster_celery_k8s.app` to `dagster_celery.app` This should be synchronized and we need to give the ability to change executor on the helm side.

> If you're looking to use `CeleryK8sRunLauncher` for Celery with Kubernetes > > Then you'll want to use > > ``` > from dagster_celery_k8s import celery_k8s_job_executor > ``` > >...

Please reopen this ticket. As of April 2024 the [bitnami/mongodb](https://hub.docker.com/r/bitnami/mongodb/tags) Docker image DOES NOT support arm64. /reopen @carrodher @javsalgar

ok, I was able to fix it running commands separately ``` ctlptl create registry registry --port=5005 ctlptl create cluster k3d --registry=registry ``` ``` tilt doctor - Cluster Local Registry: &RegistryHosting{Host:127.0.0.1:5005,HostFromClusterNetwork:registry:5000,HostFromContainerRuntime:registry:5000,Help:https://k3d.io/stable/usage/registries/#using-a-local-registry,SingleName:,}...

@vschoener have you found how to use vscode-jest with lerna?

@axelnormand agree, this config in root works good for me: jest.config.js ` module.exports = { projects: ["/packages/**/jest.config.js"] }; `

I am exploring the possibility of replacing Tilt's `live_update` feature with Dagger to eliminate the need for Dockerfiles. Specifically, I aim to establish a host-container synchronization mechanism that mounts a...