EemincanozcanAdd Huawei Cloud provider
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
Fix some typos on the kubernetes documentation (#29936) * Fix some typos on kubernetes doc. Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com> --------- Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com> Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> | 3 年前 | |
Replace blockquote + Note: with RST note in docs (#29709) | 3 年前 | |
Adding ContinuousTimetable and support for @continuous schedule_interval (#29909) --------- Co-authored-by: Jarek Potiuk <jarek@potiuk.com> | 3 年前 | |
Cleanup and do housekeeping with plugin examples (#28537) This PR performs housekeeping of the plugin examples: * makes the examples independent of Hive being installed * adds "has_access" in the examples * removes the misleading "metastore" (which is hive metastore not Airflow Metastore as used in other places This way our example will be much easier to apply by anyone. | 3 年前 | |
Update workday example (#30026) * Update workday example Benefit of this change is that a) it provides a solution to a common use case for Airflow users, and b) it separates out the logic of determining whether to schedule on a given day from the common logic used by Airflow to request what the next scheduled date/time is. | 3 年前 | |
Add Landing Times entry to UI docs (#29511) * Add Landing Times entry to UI docs Explains how Landing Times are calculated and how they relate to task adoption time. Includes a screenshot of the Landing Times tab. * Updated to move celery-specific entries to the configuration page | 3 年前 | |
Update Airflow version to 2.5.2 (#30111) * Update Airflow version to 2.5.2 * Update Chart airflow version | 3 年前 | |
Doc: Add hyperlinks to Github PRs for Release Notes (#24532) Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> | 4 年前 | |
Move apache-airflow docs to subdirectory (#12715) | 5 年前 | |
Update pipeline.rst - Fix query in merge_data() task (#29158) * Update pipeline.rst - Fix query in merge_data() task The alias for the subquery was missing in the merge_data() function's query, so it just needed to be added. Otherwise, the employees table remains empty. I found the error in the postgres container logs: 2023-01-25 08:00:03 2023-01-25 14:00:03.256 UTC [70428] ERROR: subquery in FROM must have an alias at character 74 2023-01-25 08:00:03 2023-01-25 14:00:03.256 UTC [70428] HINT: For example, FROM (SELECT ...) [AS] foo. 2023-01-25 08:00:03 2023-01-25 14:00:03.256 UTC [70428] STATEMENT: 2023-01-25 08:00:03 INSERT INTO employees 2023-01-25 08:00:03 SELECT * 2023-01-25 08:00:03 FROM ( 2023-01-25 08:00:03 SELECT DISTINCT * 2023-01-25 08:00:03 FROM employees_temp 2023-01-25 08:00:03 ) 2023-01-25 08:00:03 ON CONFLICT ("Serial Number") DO UPDATE 2023-01-25 08:00:03 SET "Serial Number" = excluded."Serial Number"; Thank you! * Update docs/apache-airflow/tutorial/pipeline.rst Co-authored-by: Josh Fell <48934154+josh-fell@users.noreply.github.com> --------- Co-authored-by: Josh Fell <48934154+josh-fell@users.noreply.github.com> | 3 年前 | |
Prefer the local Quick Start in docs (#25888) | 3 年前 | |
Adding more information regarding top level code (#30040) --------- Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> | 3 年前 | |
Update ref anchor for env var link in Connection how-to doc (#29816) In the "Managing Connections" how-to doc, the "environment variables" links in the doc point to the "Security of connections in the database" section rather than the "Storing connections in environment variables" section. | 3 年前 | |
Use object instead of array in config.yml for config template (#28417) This makes it easier to navigate the document in IDE. | 3 年前 | |
Add automatically generated ERD schema for the MetaData DB (#26217) On a popular :) request by the users, we've added this automatically generated ERD diagram of Airflow Database. It is automatically generated by pre-commit (only when the migrations change). | 3 年前 | |
Capitalize dag to DAG (#29064) | 3 年前 | |
Add Huawei Cloud provider | 3 年前 | |
Fixup some punctuation and grammar (#29342) After noticing one punctuation mistake around "however", I figured there must be more. So I fixed them, and some other stuff adjacent to them. | 3 年前 | |
Move project and license docs down in menu to start with developer-focused docs (#28956) | 3 年前 | |
Restructure Docs (#27235) A big restructuring of our docs to make them easier to reason about - in a much more logical and consistent way. Likel other updates and content changes will be needed to make it even better. | 3 年前 | |
Mark license block in doc as text (#28965) Sphinx was helpfully (but incorrectly) adding Python syntax highlighting to the block. This marks the block explicitly as pure text to avoid that. | 3 年前 | |
Fixup some punctuation and grammar (#29342) After noticing one punctuation mistake around "however", I figured there must be more. So I fixed them, and some other stuff adjacent to them. | 3 年前 | |
Add examples and howtos about sensors (#27333) The examples and docs were missing for a number of built-in sensors. This documentation and examples do not add much but at least give the user information that there are such sensors available when they look at our documentation. | 3 年前 | |
Remove "bad characters" from our codebase (#24841) * Remove "bad characters" from our codebase We had plenty of "bad characters" in our codebase that were not invited and came here by accident. We want to get rid of those "bad characters" once and for all. | 4 年前 | |
Add Niko to committers (#28712) | 3 年前 | |
Add Documentation for notification feature extension (#29191) * Add Documentation for notification feature extension * fixup! Add Documentation for notification feature extension * Update docs/apache-airflow/howto/notifications.rst Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> * apply suggestions from code review --------- Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> | 3 年前 | |
Add Public Interface description to Airflow documentation (#28300) Airflow is a complex system and since it is a platform, it is supposed to be extended by the users by writing custom code wherever they miss functionality in Airflow's core or its providers. This page is an attempt to have a single place where we can express our intention of what is the Public Interface of Airflow that the user can depend on when implementing such customizations. This is never 100% possible, we know that some users workflows might depend on stuff that is internal implementation details or behaviours, however the user doing so should be aware of the risk they are taking by relying on something that was not intentionally exposed. This page is intended to serve as a guideline for the users who would like to make a decision to rely on some of the Airflow behaviours, so that they know whether the API they want to rely on were explicitly intended by Airflow community to expose as Public, or not. Co-authored-by: Bas Harenslak <basph@users.noreply.github.com> Co-authored-by: Bas Harenslak <basph@users.noreply.github.com> | 3 年前 | |
Remove "bad characters" from our codebase (#24841) * Remove "bad characters" from our codebase We had plenty of "bad characters" in our codebase that were not invited and came here by accident. We want to get rid of those "bad characters" once and for all. | 4 年前 | |
Replace changelog/updating with release notes and towncrier now (#22003) | 4 年前 | |
| 5 年前 | ||
Fixed grammatical issue (#29253) | 3 年前 | |
Correct version label for data interval variables in documentation (#29704) * Correct date for data interval variables * Update prev interval variable docs | 3 年前 | |
Add Landing Times entry to UI docs (#29511) * Add Landing Times entry to UI docs Explains how Landing Times are calculated and how they relate to task adoption time. Includes a screenshot of the Landing Times tab. * Updated to move celery-specific entries to the configuration page | 3 年前 |