Coder Social home page Coder Social logo

Comments (3)

gibsondan avatar gibsondan commented on May 30, 2024

@marcilj I tried loading this file based on your example:

from dagster import (
    DefaultSensorStatus,
    Definitions,
    RunFailureSensorContext,
    RunRequest,
    job,
    op,
    run_failure_sensor,
)


@op
def fails():
    raise Exception("failure!")


@job
def my_job_fails():
    fails()


@run_failure_sensor(
    request_job=my_job_fails, minimum_interval_seconds=5, default_status=DefaultSensorStatus.RUNNING
)
def my_failure_sensor(context: RunFailureSensorContext):
    return RunRequest(job_name="my_job_fails")


defs = Definitions(sensors=[my_failure_sensor], jobs=[my_job_fails])
  • ran dagster dev
  • Launched the job, saw it fail, and viewed the sensor timeline

I can see the run being launched as expected in 1.7.3:
image

It sounds like that is different than what you are seeing - if you run those same steps do you get different results? Any other details or differences that might be helpful for us to reproduce what you're seeing?

from dagster.

marcilj avatar marcilj commented on May 30, 2024

Oh damm... you are totally right.

Tried it with that basic code, and ended up with a working sensor.

Ok, so found the issue, and this might be a feature. I was testing my sensor on a failed job from another Code Location.
What throw me off was that the record_timestamp was getting refreshed, but nothing else was happening.

Can you please tell me why would the record_timestamp get updated if the sensors technically shouldn't look at failed jobs from another code location?

Adding monitor_all_code_locations=True in @run_failure_sensor( request_job=send_event_to_datadog_job, monitor_all_code_locations=True ) fixed the issue.

Thank for the quick reply.

from dagster.

gibsondan avatar gibsondan commented on May 30, 2024

No problem - record_timestamp gets updated because the sensor is tailing the full event stream and filtering out invalid events.

from dagster.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.