From 8c96ab1f89afe6233e37f93297ac095a742bddbd Mon Sep 17 00:00:00 2001 From: Github Action Date: Mon, 11 Mar 2024 21:22:22 +0000 Subject: [PATCH] doc update for tag `main` --- 404.html | 22 + api/catalog/index.html | 22 + .../delta_table_alterer/index.html | 22 + api/delta_table/delta_table_merger/index.html | 63 +- .../delta_table_optimizer/index.html | 22 + api/delta_table/index.html | 22 + api/delta_table/metadata/index.html | 22 + api/delta_writer/index.html | 22 + api/exceptions/index.html | 22 + api/schema/index.html | 22 + api/storage/index.html | 22 + delta-lake-best-practices/index.html | 22 + delta-lake-big-data-small-data/index.html | 22 + .../architecture-of-delta-table/index.html | 22 + .../delta-lake-acid-transactions/index.html | 22 + .../delta-lake-file-skipping/index.html | 22 + index.html | 22 + integrations/delta-lake-arrow/index.html | 28 +- integrations/delta-lake-dagster/index.html | 2159 +++++++++++++++++ integrations/delta-lake-dask/index.html | 28 +- integrations/delta-lake-datafusion/index.html | 22 + integrations/delta-lake-pandas/index.html | 22 + integrations/delta-lake-polars/index.html | 22 + search/search_index.json | 2 +- sitemap.xml | 77 +- sitemap.xml.gz | Bin 586 -> 592 bytes .../index.html | 22 + usage/constraints/index.html | 22 + usage/create-delta-lake-table/index.html | 22 + .../index.html | 22 + usage/examining-table/index.html | 22 + usage/installation/index.html | 22 + usage/loading-table/index.html | 22 + usage/managing-tables/index.html | 22 + usage/optimize/delta-lake-z-order/index.html | 22 + .../index.html | 22 + usage/overview/index.html | 22 + usage/querying-delta-tables/index.html | 22 + usage/writing/index.html | 22 + .../index.html | 22 + why-use-delta-lake/index.html | 22 + 41 files changed, 3059 insertions(+), 46 deletions(-) create mode 100644 integrations/delta-lake-dagster/index.html diff --git a/404.html b/404.html index ae2fee5b81..6166bd7fff 100644 --- a/404.html +++ b/404.html @@ -1265,6 +1265,8 @@ + + @@ -1328,6 +1330,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/catalog/index.html b/api/catalog/index.html index e37bf28d70..08adb8cc7d 100644 --- a/api/catalog/index.html +++ b/api/catalog/index.html @@ -1341,6 +1341,8 @@ + + @@ -1404,6 +1406,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/delta_table/delta_table_alterer/index.html b/api/delta_table/delta_table_alterer/index.html index fadb50c6c1..a0e02f165d 100644 --- a/api/delta_table/delta_table_alterer/index.html +++ b/api/delta_table/delta_table_alterer/index.html @@ -1345,6 +1345,8 @@ + + @@ -1408,6 +1410,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/delta_table/delta_table_merger/index.html b/api/delta_table/delta_table_merger/index.html index 5c3bf40d75..e2c6d53920 100644 --- a/api/delta_table/delta_table_merger/index.html +++ b/api/delta_table/delta_table_merger/index.html @@ -1394,6 +1394,8 @@ + + @@ -1457,6 +1459,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • @@ -1871,6 +1893,11 @@

    Delete a matched row from the table only if the given predicate (if specified) is true for the matched row. If not specified it deletes all matches.

    +
    + Note +

    Column names with special characters, such as numbers or spaces should be encapsulated +in backticks: "target.123column" or "target.my column"

    +

    Parameters:

    @@ -1993,6 +2020,11 @@

    Update a matched table row based on the rules defined by updates. If a predicate is specified, then it must evaluate to true for the row to be updated.

    +
    + Note +

    Column names with special characters, such as numbers or spaces should be encapsulated +in backticks: "target.123column" or "target.my column"

    +

    Parameters:

    @@ -2066,10 +2098,10 @@

    from deltalake import DeltaTable, write_deltalake
     import pyarrow as pa
     
    -data = pa.table({"x": [1, 2, 3], "y": [4, 5, 6]})
    +data = pa.table({"x": [1, 2, 3], "1y": [4, 5, 6]})
     write_deltalake("tmp", data)
     dt = DeltaTable("tmp")
    -new_data = pa.table({"x": [1], "y": [7]})
    +new_data = pa.table({"x": [1], "1y": [7]})
     
     (
          dt.merge(
    @@ -2077,7 +2109,7 @@ 

    predicate="target.x = source.x", source_alias="source", target_alias="target") - .when_matched_update(updates={"x": "source.x", "y": "source.y"}) + .when_matched_update(updates={"x": "source.x", "`1y`": "source.`1y`"}) .execute() ) {'num_source_rows': 1, 'num_target_rows_inserted': 0, 'num_target_rows_updated': 1, 'num_target_rows_deleted': 0, 'num_target_rows_copied': 2, 'num_output_rows': 3, 'num_target_files_added': 1, 'num_target_files_removed': 1, 'execution_time_ms': ..., 'scan_time_ms': ..., 'rewrite_time_ms': ...} @@ -2111,6 +2143,11 @@

    + Note +

    Column names with special characters, such as numbers or spaces should be encapsulated +in backticks: "target.123column" or "target.my column"

    +

    Parameters:

    @@ -2215,6 +2252,11 @@

    + Note +

    Column names with special characters, such as numbers or spaces should be encapsulated +in backticks: "target.123column" or "target.my column"

    +

    Parameters:

    @@ -2291,6 +2333,11 @@

    + Note +

    Column names with special characters, such as numbers or spaces should be encapsulated +in backticks: "target.123column" or "target.my column"

    +

    Parameters:

    @@ -2411,6 +2458,11 @@

    + Note +

    Column names with special characters, such as numbers or spaces should be encapsulated +in backticks: "target.123column" or "target.my column"

    +

    Parameters:

    @@ -2535,6 +2587,11 @@

    + Note +

    Column names with special characters, such as numbers or spaces should be encapsulated +in backticks: "target.123column" or "target.my column"

    +

    Parameters:

    diff --git a/api/delta_table/delta_table_optimizer/index.html b/api/delta_table/delta_table_optimizer/index.html index e9b3ffce53..75a90a7d4e 100644 --- a/api/delta_table/delta_table_optimizer/index.html +++ b/api/delta_table/delta_table_optimizer/index.html @@ -1345,6 +1345,8 @@ + + @@ -1408,6 +1410,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/delta_table/index.html b/api/delta_table/index.html index 11d6821136..372f4d2a46 100644 --- a/api/delta_table/index.html +++ b/api/delta_table/index.html @@ -1278,6 +1278,8 @@ + + @@ -1341,6 +1343,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/delta_table/metadata/index.html b/api/delta_table/metadata/index.html index b330f9a411..a2fbbe2138 100644 --- a/api/delta_table/metadata/index.html +++ b/api/delta_table/metadata/index.html @@ -1373,6 +1373,8 @@ + + @@ -1436,6 +1438,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/delta_writer/index.html b/api/delta_writer/index.html index 2253dc2638..054295fe52 100644 --- a/api/delta_writer/index.html +++ b/api/delta_writer/index.html @@ -1365,6 +1365,8 @@ + + @@ -1428,6 +1430,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/exceptions/index.html b/api/exceptions/index.html index 28495c05f8..fbf7573431 100644 --- a/api/exceptions/index.html +++ b/api/exceptions/index.html @@ -1346,6 +1346,8 @@ + + @@ -1409,6 +1411,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/schema/index.html b/api/schema/index.html index 5c48c1ea09..977c374558 100644 --- a/api/schema/index.html +++ b/api/schema/index.html @@ -1684,6 +1684,8 @@ + + @@ -1747,6 +1749,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/api/storage/index.html b/api/storage/index.html index b851599a4c..8ac776b060 100644 --- a/api/storage/index.html +++ b/api/storage/index.html @@ -1359,6 +1359,8 @@ + + @@ -1422,6 +1424,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/delta-lake-best-practices/index.html b/delta-lake-best-practices/index.html index 4fd99924b9..2bb629ba94 100644 --- a/delta-lake-best-practices/index.html +++ b/delta-lake-best-practices/index.html @@ -1395,6 +1395,8 @@ + + @@ -1458,6 +1460,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/delta-lake-big-data-small-data/index.html b/delta-lake-big-data-small-data/index.html index 87d673b725..29f83e235c 100644 --- a/delta-lake-big-data-small-data/index.html +++ b/delta-lake-big-data-small-data/index.html @@ -1353,6 +1353,8 @@ + + @@ -1416,6 +1418,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/how-delta-lake-works/architecture-of-delta-table/index.html b/how-delta-lake-works/architecture-of-delta-table/index.html index cfadda57c4..cad00fd4b2 100644 --- a/how-delta-lake-works/architecture-of-delta-table/index.html +++ b/how-delta-lake-works/architecture-of-delta-table/index.html @@ -1278,6 +1278,8 @@ + + @@ -1341,6 +1343,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/how-delta-lake-works/delta-lake-acid-transactions/index.html b/how-delta-lake-works/delta-lake-acid-transactions/index.html index 51331c3e47..41b9eca812 100644 --- a/how-delta-lake-works/delta-lake-acid-transactions/index.html +++ b/how-delta-lake-works/delta-lake-acid-transactions/index.html @@ -1278,6 +1278,8 @@ + + @@ -1341,6 +1343,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/how-delta-lake-works/delta-lake-file-skipping/index.html b/how-delta-lake-works/delta-lake-file-skipping/index.html index b37c711b52..24493431dd 100644 --- a/how-delta-lake-works/delta-lake-file-skipping/index.html +++ b/how-delta-lake-works/delta-lake-file-skipping/index.html @@ -1276,6 +1276,8 @@ + + @@ -1339,6 +1341,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/index.html b/index.html index 31d47818dc..99c6f808a3 100644 --- a/index.html +++ b/index.html @@ -1276,6 +1276,8 @@ + + @@ -1339,6 +1341,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • diff --git a/integrations/delta-lake-arrow/index.html b/integrations/delta-lake-arrow/index.html index d4fdcb1309..08271eef76 100644 --- a/integrations/delta-lake-arrow/index.html +++ b/integrations/delta-lake-arrow/index.html @@ -14,7 +14,7 @@ - + @@ -1280,6 +1280,8 @@ + + @@ -1416,6 +1418,26 @@ +
  • + + + + + Dagster + + + + +
  • + + + + + + + + +
  • @@ -1806,13 +1828,13 @@

    Conclusion

    -
    +
  • + + + + + Dagster + + + + +
  • + + + + + + + + @@ -1871,7 +1893,7 @@

    Contribute to dask-deltalake<