Hello, My local instance of Dagster is writing ev...
# ask-community
t
Hello, My local instance of Dagster is writing event_logs (but nothing else) to DAGSTER_HOME despite storage being set in dagster.yaml (to a local sqlite instance). Is this a bug?
s
Hi Terry, Have you read https://docs.dagster.io/deployment/dagster-instance#configuration-reference I’m not super-familiar with the details of instance configuration, but it’s possible this answers your question-- are you sure you’re not seeing the raw op compute logs?
t
Thanks @sean No unfortunately it's not that simple. I have storage and compute storage defined in a sqlite and localcomputemanager respectively. I tried defining event_storage configuration in additon to storage but dagster didn't like that.
s
Is it possible for you to post your
dagster.yaml
?
t
storage:
sqlite:
base_dir: /home/terry/dagster_sqlite_storage
compute_logs:
module: dagster.core.storage.local_compute_log_manager
class: LocalComputeLogManager
config:
base_dir: /home/terry/dagster_compute_log_storage
local_artifact_storage:
module: dagster.core.storage.root
class: LocalArtifactStorage
config:
base_dir: /home/terry/dagster_artifact_storage