Deveshi
03/04/2021, 2:14 PMMatej Války
03/04/2021, 5:02 PMyashovardhan chaturvedi
03/04/2021, 6:10 PMsashank
03/04/2021, 6:19 PMHenry
03/04/2021, 6:38 PMOussama Zouaghia
03/04/2021, 8:24 PMuser
03/05/2021, 12:18 AMyuhan
03/05/2021, 12:33 AMZuhair Ikram
03/05/2021, 1:49 AMdagster
? The other two boxes represent hosts with like an agent or a “lite” version of dagster. The agent kicks off processes on the host when main dagster scheduler tells it to.Cesar Benitez
03/05/2021, 11:09 AMCesar Benitez
03/05/2021, 11:09 AMFlavien
03/05/2021, 1:15 PMdagster.yaml
file:
run_storage:
module: dagster_postgres.run_storage
class: PostgresRunStorage
config:
postgres_db:
username:
env: POSTGRES_USER
password:
env: POSTGRES_PASSWORD
hostname:
env: POSTGRES_HOST
db_name:
env: POSTGRES_USER
port: 5432
event_log_storage:
module: dagster_postgres.event_log
class: PostgresEventLogStorage
config:
postgres_db:
username:
env: POSTGRES_USER
password:
env: POSTGRES_PASSWORD
hostname:
env: POSTGRES_HOST
db_name:
env: POSTGRES_USER
port: 5432
scheduler:
module: dagster.core.scheduler
class: DagsterDaemonScheduler
schedule_storage:
module: dagster_postgres.schedule_storage
class: PostgresScheduleStorage
config:
postgres_db:
username:
env: POSTGRES_USER
password:
env: POSTGRES_PASSWORD
hostname:
env: POSTGRES_HOST
db_name:
env: POSTGRES_USER
port: 5432
run_launcher:
module: dagster.core.launcher
class: DefaultRunLauncher
run_coordinator:
module: dagster.core.run_coordinator
class: QueuedRunCoordinator
compute_logs:
module: dagster.core.storage.local_compute_log_manager
class: LocalComputeLogManager
config:
base_dir: ${DAGSTER_HOME}/logs
local_artifact_storage:
module: dagster.core.storage.root
class: LocalArtifactStorage
config:
base_dir: ${DAGSTER_HOME}/artifacts
telemetry:
enabled: false
When I run dagit -f hello.py
I get the following error:
alembic.util.exc.CommandError: Path doesn't exist: '/home/flavien/sandbox/dagster-101/.venv/lib/python3.8/site-packages/dagster_postgres/alembic'. Please use the 'init' command to create a new scripts folder.
Can anyone help ?user
03/05/2021, 3:56 PMalex
03/05/2021, 4:01 PMThomas Adams
03/05/2021, 4:03 PMDeveshi
03/05/2021, 4:23 PMJeff Hulbert
03/05/2021, 4:31 PMbklau-bos
03/05/2021, 11:15 PMantonl
03/06/2021, 1:01 AMdagster.Dict[str, dagster.Field(dagster.Permissive())]
?Xu Zhang
03/06/2021, 2:31 PMCaio Belfort
03/06/2021, 5:06 PMgeoHeil
03/07/2021, 1:50 PMpip install -e .
is not installing the optional dependencies which are needed to run the tutorial. 2) https://github.com/dagster-io/dagster/tree/master/examples/airline_demo/airline_demo does not contain the repository.yaml
file and thus executing a call to dagit
fails. How can I get the tutorial to work? (for (1) I guess I have installed the necessary dependencies manually, but so far am stuck on (2).Rubén Lopez Lozoya
03/08/2021, 8:40 AMYan
03/08/2021, 11:35 AMViacheslav Nefedov
03/08/2021, 12:22 PMdavidolrik
03/08/2021, 1:49 PMCaio Belfort
03/08/2021, 2:38 PMSteve Pletcher
03/08/2021, 2:56 PMBen Torvaney
03/08/2021, 5:37 PMKirk Stennett
03/08/2021, 5:59 PMstartupProbe
sections in the values.yaml but the helm install doesn't work. It looks like the templates/deployment-user.yaml
enforces that field here: https://github.com/dagster-io/dagster/blob/master/helm/dagster/templates/deployment-user.yaml#L112-L141. I got it working by pulling it locally and removing that block, but is there a way to get it running without doing this? Or am I missing something?