Skip to content

Commit

Permalink
rename occurrences of execute/executing to run/running
Browse files Browse the repository at this point in the history
  • Loading branch information
nunogoncalves03 committed Dec 9, 2024
1 parent 1d5ebb1 commit 7ba9428
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[meta]
authors=["singlestore"]
title="Executing Notebooks from Another Notebook with Fusion SQL"
title="Running Notebooks from Another Notebook with Fusion SQL"
description="""\
Learn how to execute Notebooks from another Notebook
Learn how to run Notebooks from another Notebook
in SingleStoreDB Cloud using Fusion SQL.
"""
icon="files"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
" </div>\n",
" <div id=\"text\" style=\"padding: 5px; margin-left: 10px;\">\n",
" <div id=\"badge\" style=\"display: inline-block; background-color: rgba(0, 0, 0, 0.15); border-radius: 4px; padding: 4px 8px; align-items: center; margin-top: 6px; margin-bottom: -2px; font-size: 80%\">SingleStore Notebooks</div>\n",
" <h1 style=\"font-weight: 500; margin: 8px 0 0 4px;\">Executing Notebooks from Another Notebook with Fusion SQL</h1>\n",
" <h1 style=\"font-weight: 500; margin: 8px 0 0 4px;\">Running Notebooks from Another Notebook with Fusion SQL</h1>\n",
" </div>\n",
"</div>"
]
Expand All @@ -22,7 +22,7 @@
"id": "18ed6021",
"metadata": {},
"source": [
"In this notebook, we demonstrate how to use **[Fusion SQL](https://www.singlestore.com/spaces/getting-started-with-fusion-sql/)** to execute a notebook from another notebook, either within the **same session** (useful to avoid code duplication) or in a **new session** (useful for parallel execution)."
"In this notebook, we demonstrate how to use **[Fusion SQL](https://www.singlestore.com/spaces/getting-started-with-fusion-sql/)** to run a notebook from another notebook, either within the **same session** (useful to avoid code duplication) or in a **new session** (useful for parallel execution)."
]
},
{
Expand Down Expand Up @@ -104,9 +104,9 @@
"id": "4f0cbad1",
"metadata": {},
"source": [
"## Executing the Sample Notebook in the Current Session\n",
"## Running the Sample Notebook in the Current Session\n",
"\n",
"In this example, we will execute the previously created sample notebook within the current session. This approach is useful for avoiding code duplication in your notebooks, such as environment setup or reusable functions."
"In this example, we will run the previously created sample notebook within the current session. This approach is useful for avoiding code duplication in your notebooks, such as environment setup or reusable functions."
]
},
{
Expand Down Expand Up @@ -136,7 +136,7 @@
"id": "9c08ff46",
"metadata": {},
"source": [
"Next, we execute the notebook and confirm that the `sample_var` variable set in the sample notebook is accessible in the current session:"
"Next, we run the notebook and confirm that the `sample_var` variable set in the sample notebook is accessible in the current session:"
]
},
{
Expand All @@ -160,9 +160,9 @@
"id": "1a059fcb",
"metadata": {},
"source": [
"## Executing the Sample Notebook in a New Session\n",
"## Running the Sample Notebook in a New Session\n",
"\n",
"Instead of executing a notebook in the current session, we can run it in a new session \u2014 either synchronously or asynchronously \u2014 using jobs. This approach is useful for parallel execution or running code in a separate runtime environment.\n",
"Instead of running a notebook in the current session, we can run it in a new session \u2014 either synchronously or asynchronously \u2014 using jobs. This approach is useful for parallel execution or running code in a separate runtime environment.\n",
"\n",
"<div class=\"alert alert-block alert-warning\">\n",
" <b class=\"fa fa-solid fa-exclamation-circle\"></b>\n",
Expand Down

0 comments on commit 7ba9428

Please sign in to comment.