-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: Featured Workshops | ||
time_start: 2024-09-11 14:30 | ||
layout: list-workshops | ||
description: We will be offering hands-on workshops so you can get practical experience with Airflow tools and managed offerings. | ||
--- | ||
|
||
### We will be offering hands-on workshops so you can get practical experience with Airflow tools and managed offerings. | ||
|
||
* Format & duration: Workshops are instructor led, 2-3 hours long, bring your own device. | ||
* Sign up for workshops will open on August 5th for attendees who have a Conference + Workshop pass. | ||
* We plan to offer 3-4 different workshops on September 11th (2:30-5:30pm) and another 3-4 workshops on September 12th (2-5pm). Workshops offered will be different each day. | ||
|
||
These are the currently confirmed workshops ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
content/sessions/2024/workshop-broadcom.md → ...sions/2024/workshops/workshop-broadcom.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: "DAG writing best practices workshop" | ||
speakers: | ||
- Kenten Danas | ||
track: | ||
- Workshop | ||
room: | ||
time_start: 2024-09-10 9:00:00 | ||
time_end: 2024-09-10 9:25:00 | ||
summary: "Learn how to design your DAGs for easy readability and maintenance, how to make your DAGs dynamic in an efficient and scalable way, and how to avoid common pitfalls that can cause performance issues." | ||
--- | ||
|
||
Because Airflow is 100% code, knowing the basics of Python is all it takes to get started writing DAGs. However, writing DAGs that are efficient, secure, and scalable requires some Airflow-specific finesse. It’s no surprise that one of the most requested topics in this year’s Airflow survey was more Airflow best practices content. We hear you, and we’ve got you covered with this hands-on workshop on DAG writing best practices. | ||
|
||
Whether you’re writing traditional ELT/ETL pipelines or complex ML workflows, you’ll learn how to make Airflow work best for your use case. We’ll teach you best practices including things like how to design your DAGs for easy readability and maintenance, how to make your DAGs dynamic in an efficient and scalable way, and how to avoid common pitfalls that can cause performance issues. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{{ define "main" }} | ||
|
||
<section class="section {{ .Type }}"> | ||
<div class="container"> | ||
<div class="list-content">{{.Content}}</div> | ||
<div class="row"> | ||
|
||
{{ range .Data.Pages.ByDate.Reverse }} | ||
<div class="col-sm-6"> | ||
{{ .Render "post" }} | ||
</div> | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<article class="blog-article mb-4 border border-secondary"> | ||
{{ with .Params.image }}<img src="{{ . | absURL }}" alt="{{ .Title | markdownify }}" class="img-fluid">{{ end }} | ||
<div class="content py-5 px-4"> | ||
<h4 class="my-3"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h4> | ||
<p><em>By {{ with .Params.speakers }}{{ delimit . ", " " & " }}{{ end }}</em></p> | ||
<p class="mb-4">{{ .Summary }}</p> | ||
</div> | ||
</article> |