digitalcourage.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Diese Instanz wird betrieben von Digitalcourage e.V. für die Allgemeinheit. Damit wir das nachhaltig tun können, erheben wir einen jährlichen Vorausbeitrag von 1€/Monat per SEPA-Lastschrifteinzug.

Server stats:

836
active users

#airflow

0 posts0 participants0 posts today

Just caught up with the recent Delta Lake webinar,

> Revolutionizing Delta Lake workflows on AWS Lambda with Polars, DuckDB, Daft & Rust

Some interesting hints there regarding lightweight processing of big-ish data. Easy to relate to any other framework instead of Lambda, e.g. #ApacheAirflow tasks

youtu.be/BR9oFD0QMAs

I think #Dave2D is a bit too excited about an #ionization-based #SolidStateCooler aka. "#fanless #fan"...

I just think it'll end up in #nieche devices that want to have the option to additionall boost power on a normally #PassiveCooling system to make it a #silent system without relying on convection alone.

Cuz #AirChemistry and #Physics ain't something #Ventiva can innovate themselves out of...

Check this out!

#DAGMonitor is an iOS app for data engineers that helps monitor and control DAGs on your server. With help of the app, data engineers can access server jobs, monitor task instances, rerun them and read through task logs. Simply specify the username and password in the app settings and connect to your company's network (if your server is available only from the corporate WiFi or VPN).

FEATURES AVAILABLE IN VERSION 1.0:
• Connect to server via API (simple user/password authentication supported)
• List DAGs and get info about paused ones
• Access DAG runs and monitor statuses
• List task instances for DAG run
• Clear status for a task instance
• Access task instance logs

apps.apple.com/me/app/dag-moni

App Store‎DAG Monitor‎DAG Monitor is an app for data engineers that helps monitor and control DAGs on your server. With help of the app, data engineers can access server jobs, monitor task instances, rerun them and read through task logs. FEATURES: • Connect to server via API • List DAGs and get info about paused ones •…
#data#iOS#dag

- In #Airflow my `response_check` callback does not run when `SimpleHttpOperator` receives HTTP 4xx
- Yes, it's bypassed for non 2xx codes. In order to run `response_check` you must configure `check_response` to `False`
- WAT?
- What?

```
task = SimpleHttpOperator(
extra_options={'check_response': False},
response_check=lambda ..., # now it runs
# ...
)
```