Hi all! I've recently run into the fun task intros...
# ask-community
s
Hi all! I've recently run into the fun task introspection time issue, where its taking minutes to almost an hour for task parameter introspection.
Copy code
Task parameter introspection took 132.505 seconds , exceeding `PREFECT_TASK_INTROSPECTION_WARN_THRESHOLD` of 10.0. Try wrapping large task parameters with `prefect.utilities.annotations.quote` for increased performance, e.g. `my_task(quote(param))`. To disable this message set `PREFECT_TASK_INTROSPECTION_WARN_THRESHOLD=0`.
Does anyone know how I can turn task introspection off in general? I've already wrapped my task inputs in
quote
and that doesnt solve the issue
Aaaah I think its actually just this outstanding issue: https://github.com/PrefectHQ/prefect/issues/11480
In which case I wil now remove my billion quotes as NotUseful
👍 1