You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: align spelling to US English and highlight config inheritance
Convert UK spellings across docs and ADRs to US forms and update the
spelling wordlist accordingly. Add a “Why teams use it” bullet on the
What is page for centralized framework configuration inheritance at runtime.
Copy file name to clipboardExpand all lines: docs/source/architecture/index.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,10 @@ The Lakeflow Framework is designed to support different organizational and data
14
14
* Federated domain-aligned teams, including data mesh and data product approaches
15
15
* Hybrid operating models that combine centralized governance with domain ownership
16
16
17
-
**Modelling paradigms**
17
+
**Modeling paradigms**
18
18
19
19
* Medallion architecture (Bronze, Silver, Gold)
20
-
* Common modelling patterns, including dimensional (facts/dimensions), Data Vault, enterprise canonical/3NF, and other custom enterprise models
20
+
* Common modeling patterns, including dimensional (facts/dimensions), Data Vault, enterprise canonical/3NF, and other custom enterprise models
21
21
22
22
These approaches can be implemented using the same Data Flow Spec-driven patterns, deployment process, and framework features documented in this guide.
│ ├── pipeline_configs/ # Global and env-specific pipeline config (required)
74
74
│ └── python/ # Spec-referenced Python modules and packages (optional)
75
75
├── databricks.yml
@@ -89,7 +89,7 @@ The ``src/`` directories serve distinct purposes:
89
89
- Purpose
90
90
* - ``src/dataflows/``
91
91
- All Data Flow Spec files. The framework reads every spec file recursively regardless
92
-
of sub-folder structure. See below for organisation options.
92
+
of sub-folder structure. See below for organization options.
93
93
* - ``src/init/pre/`` and ``src/init/post/``
94
94
- **Optional.** Lifecycle ``.py`` scripts executed before and after SDP declarations
95
95
inside ``initialize_pipeline()``. Run in sorted filename order; files starting
@@ -106,15 +106,15 @@ The ``src/`` directories serve distinct purposes:
106
106
* - ``src/python/``
107
107
- **Optional.** All customer Python referenced by Data Flow Specs —
108
108
``pythonModule``, ``pythonTransform.module``, and custom sinks. Added to
109
-
``sys.path`` at pipeline initialisation.
109
+
``sys.path`` at pipeline initialization.
110
110
111
111
.. seealso::
112
112
113
113
:doc:`/features/python/extensions` — full reference for ``src/libraries/``,
114
114
``src/python/``, ``src/init/``, and ``src/local/config/``, including examples,
115
115
deprecation notices, and the cluster library installation options.
116
116
117
-
It is the structure of the ``src/dataflows`` directory that is flexible and can be organised in the way that best suits your standards and ways of working. The Framework will:
117
+
It is the structure of the ``src/dataflows`` directory that is flexible and can be organized in the way that best suits your standards and ways of working. The Framework will:
118
118
119
119
* Read all the Data Flow Spec files under the ``src/dataflows`` directory, regardless of the folder structure. Filtering of the data flows is done when defining your Pipeline and is discussed in the :doc:`/build/bundle-steps` section.
120
120
* Expect that the schemas, transforms and expectations related to a Data Flow Spec are located in their respective ``schemas``, ``dml`` and ``expectations`` sub-directories within the Data Flow Spec's home directory.
0 commit comments