Skip to content

Commit 0a8dbff

Browse files
september release (#305)
* september release * Changes for JS' feedback * Apply suggestions from code review Co-authored-by: John Williams <[email protected]> * add link to CM docs --------- Co-authored-by: John Williams <[email protected]>
1 parent f230867 commit 0a8dbff

17 files changed

+135
-6
lines changed

snooty.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,9 @@ vpc = ":abbr:`VPC (Virtual Private Cloud)`"
129129
yaml = ":abbr:`YAML (Yet Another Markup Language)`"
130130

131131
[[banners]]
132-
targets = ["index.txt", "release-notes/data-lake.txt", "get-started.txt", "tutorial/add-dataset-pipeline.txt", "release-notes/data-lake.txt", "limitations.txt"]
132+
targets = ["*"]
133133
variant = "info"
134134
value = """\
135-
**Looking for documentation for what used to be called "Atlas \
136-
Data Lake"?** \
137-
Atlas Data Lake is now called Atlas Data Federation. To learn \
138-
more about the renamed federated query engine service, see \
139-
:atlas:`Atlas Data Federation </data-federation>`.\
135+
**Data Lake is deprecated.** \
136+
As of September 2024, Data Lake is deprecated and will reach end-of-life. It will be removed on September 30, 2025. If you use Data Lake, you should migrate to alternative solutions before the service is removed. To learn more, see :ref:`data-lake-deprecation-guide`.\
140137
"""

source/administration/config-dataset-retention.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. meta::
2+
:robots: noindex, nosnippet
3+
14
.. _config-dataset-retention:
25

36
==================================

source/administration/delete-datalake-pipeline.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. meta::
2+
:robots: noindex, nosnippet
3+
14
.. _delete-pipeline:
25

36
===============================

source/administration/edit-data-pipeline.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. meta::
2+
:robots: noindex, nosnippet
3+
14
.. _edit-dataset-pipeline:
25

36
================================

source/administration/ingest-data-on-demand.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. meta::
2+
:robots: noindex, nosnippet
3+
14
.. _ingest-on-demand:
25

36
================================

source/administration/pause-resume-data-extraction.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. meta::
2+
:robots: noindex, nosnippet
3+
14
.. _pause-resume-data-ingestion:
25

36
=================================================

source/administration/view-datalake-pipelines.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. meta::
2+
:robots: noindex, nosnippet
3+
14
.. _view-pipeline:
25

36
==============================

source/data-lake-deprecation.txt

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
:noprevnext:
2+
3+
.. _data-lake-deprecation-guide:
4+
5+
=================================
6+
{+adl+} Deprecation Guide
7+
=================================
8+
9+
.. default-domain:: mongodb
10+
11+
{+adl+} is an analytic storage service that extracts data from |service|
12+
clusters into cloud object stores for querying. For extracting and
13+
storing |service| Cluster data in cloud object storage, consider the
14+
following alternatives:
15+
16+
- :ref:`Export Cloud Backup Snapshot <adl-deprecation-export-snapshot>`
17+
- :ref:`Atlas Data Federation $out <adl-deprecation-adf-out>`
18+
19+
For querying data stored in a cloud object storage, consider the
20+
following alternatives:
21+
22+
- :ref:`Query a Backup Snapshot <adl-deprecation-query-snapshot>`
23+
- :ref:`Atlas Data Federation Query <adl-deprecation-query-with-adf>`
24+
- :ref:`Cloud Native Query Engines <adl-deprecation-query-engines>`
25+
26+
.. _adl-deprecation-export-snapshot:
27+
28+
Export Cloud Backup Snapshot
29+
----------------------------
30+
31+
You can export your |service| cluster Cloud Backup snapshots to
32+
|aws| |s3| or Azure Blob Storage. You can manually export
33+
individual snapshots or set up an export policy to automatically export
34+
your snapshots. To learn more, see |service| :atlas:`documentation
35+
</backup/cloud-backup/export/>`.
36+
37+
.. _adl-deprecation-adf-out:
38+
39+
Atlas Data Federation ``$out``
40+
------------------------------
41+
42+
The :pipeline:`$out` stage takes documents returned by the aggregation
43+
pipeline and writes them to a specified collection. In {+adf+},
44+
you can use ``$out`` to write data from your cluster to |aws| |s3|
45+
or Azure Blob Storage. This allows you to make copies of your
46+
data at a point in time and store it in cloud object storage. To learn
47+
more, see :atlas:`Query Federated Data with $out
48+
</data-federation/supported-unsupported/pipeline/out/>`.
49+
50+
.. _adl-deprecation-query-snapshot:
51+
52+
Query a Backup Snapshot
53+
-----------------------
54+
55+
MongoDB Cloud Manager provides :mms-docs:`queryable backups
56+
</tutorial/query-backup>`. This functionality allows you to query
57+
specific backup snapshots more quickly. You can use the queryable
58+
backups to do the following:
59+
60+
- Restore a subset of data within the MongoDB deployment.
61+
- Compare previous versions of data against the current data.
62+
- Identify the best point in time to restore a system by comparing data
63+
from multiple snapshots.
64+
65+
.. _adl-deprecation-query-with-adf:
66+
67+
Atlas Data Federation Query
68+
---------------------------
69+
70+
{+adf+} can query data in an |aws| |s3| bucket or Azure Blob Storage
71+
container and HTTP URL. To learn more about how to deploy and query a
72+
{+fdi+}, see the following resources:
73+
74+
:atlas:`Deploy a {+fdi+} </data-federation/tutorial/deploy/>`
75+
:atlas:`Query a {+fdi+} </data-federation/query/query-federated-database/>`
76+
77+
.. _adl-deprecation-query-engines:
78+
79+
Cloud Native Query Engines
80+
--------------------------
81+
82+
There are several cloud-native services designed to query cloud object
83+
storage, such as the following:
84+
85+
- `AWS Athena <https://aws.amazon.com/athena/>`__
86+
- `Azure Synapse <https://azure.microsoft.com/en-us/products/synapse-analytics>`__
87+
- `Google BigQuery <https://cloud.google.com/bigquery>`__

source/get-started.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. meta::
2+
:robots: noindex, nosnippet
3+
14
:noprevnext:
25

36
.. _data-lake-getting-started:

source/index.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. meta::
2+
:robots: noindex, nosnippet
3+
14
.. _atlas-data-lake:
25

36
=====================

0 commit comments

Comments
 (0)