Skip to content

Commit 50cc64a

Browse files
authored
Merge pull request #891 from keboola/devin/1773996726-cleanup-julia-references
docs: remove references to Julia transformations and workspaces
2 parents e4f9542 + 89ed41f commit 50cc64a

4 files changed

Lines changed: 13 additions & 19 deletions

File tree

catalog/multi-project/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ come to the company, they can simply create a new project, use the shared data w
7878
working immediately. If the word "everyone" in the above statement is undesired, then the access can be tied down by using a different
7979
[sharing type](/catalog/#sharing-types). The multi architecture setup also creates an interface. If the Oracle DBAs need to change
8080
anything in the database schema, they can do that in an unlimited number of arbitrarily sized steps, provided that the shared data
81-
remains same. For that they can use the entire power of SQL, Python, R and Julia transformations combined. This is a much more flexible
81+
remains same. For that they can use the entire power of SQL, Python, and R transformations combined. This is a much more flexible
8282
solution then the traditional way of creating views. Then there is, of course, the advantage that you can work with the Oracle data
8383
even when the server is down; but that's integral part of Keboola.
8484

overview/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ making it easier to connect with other parts of the system and third-party appli
5353

5454
### Transformations & Workspaces
5555
[Transformations](/transformations/) allow you to manipulate data in your project. They are the tasks you want to perform and enable you to write custom scripts
56-
in [SQL](https://en.wikipedia.org/wiki/SQL) (Snowflake, Redshift, BigQuery, etc.), dbt, [Julia](https://julialang.org/), [Python](https://www.python.org/about/),
56+
in [SQL](https://en.wikipedia.org/wiki/SQL) (Snowflake, Redshift, BigQuery, etc.), dbt, [Python](https://www.python.org/about/),
5757
and [R](https://www.r-project.org/about.html).
5858

5959
All transformations operate on a copy of Storage data in an isolated environment — a [workspace](/workspace/), guaranteeing safety for your
6060
analyses and experimentation. Workspaces support collaborations and can be shared.
6161

6262
- **SQL workspaces** are accessible through the database provider's IDE or your preferred SQL IDE.
63-
- **Python, R, or Julia workspaces** are available through Keboola's hosted and managed Jupyter Lab environment.
63+
- **Python and R workspaces** are available through Keboola's hosted and managed JupyterLab environment.
6464

6565
### Applications
6666
Unlike free-form transformations, [applications](/components/applications/) are **predefined blocks** that enable users to perform advanced tasks such as

transformations/index.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The schema below shows a high-level overview of transformations:
3030
{: .image-popup}
3131
![Transformations schema](/transformations/transformations-schema.svg)
3232

33-
A transformation is represented by a **transformation script** (SQL, Julia, Python, R), which you
33+
A transformation is represented by a **transformation script** (SQL, Python, R), which you
3434
can use to manipulate your data. To ensure the safety of the data in Storage, a transformation
3535
operates in a separate **staging Storage** created for each transformation.
3636

@@ -69,9 +69,8 @@ A backend is the engine running the transformation script. It is a database serv
6969
[Microsoft Synapse](https://azure.microsoft.com/en-us/services/synapse-analytics/) on Azure Stack),
7070
[BigQuery](https://cloud.google.com/bigquery),
7171
or a language interpreter
72-
([Julia](https://julialang.org/),
73-
[Python](https://www.python.org/about/),
74-
[R](https://www.r-project.org/about.html).
72+
([Python](https://www.python.org/about/),
73+
[R](https://www.r-project.org/about.html)).
7574

7675
How do you decide **which backend is appropriate for each task**? A rule of thumb is that SQL performs better
7776
for joining tables, filtering data, grouping, and simple aggregations. Script languages are more suitable
@@ -107,8 +106,8 @@ use with a database client of your choice. You can do the same for Snowflake. In
107106
to the [Snowflake web interface](https://docs.snowflake.com/en/user-guide/ui-snowsight-gs). Therefore, you can
108107
develop transformations without downloading and installing a database client.
109108

110-
You can also use a workspace represented by an isolated [JupyterLab](https://jupyterlab.readthedocs.io/en/latest/) instance for Julia,
111-
Python, and R transformations.
109+
You can also use a workspace represented by an isolated [JupyterLab](https://jupyterlab.readthedocs.io/en/latest/) instance for
110+
Python and R transformations.
112111

113112
## Transformations Features
114113

@@ -118,11 +117,7 @@ Python, and R transformations.
118117
<th>Availability/Limitations</th>
119118
</tr>
120119
<tr>
121-
<th rowspan='8'>Backend</th>
122-
<th>Julia Transformations</th>
123-
<td>Planned</td>
124-
</tr>
125-
<tr>
120+
<th rowspan='7'>Backend</th>
126121
<th><a href='/transformations/python-plain/'>Python Transformations</a></th>
127122
<td>✓</td>
128123
</tr>
@@ -276,4 +271,4 @@ When triggered
276271

277272
With the [read-only input mapping](/transformations/mappings/#read-only-input-mapping) feature, you can access all buckets (your own or linked) in transformations. Your transformation user
278273
has read-only access to buckets (and their tables), so you can access such data. So, there is no need to specify standard input mapping
279-
for your transformations. The name of the backend object (database, schema, etc.) depends on the backend you use, and it contains the bucket ID (not the bucket name).
274+
for your transformations. The name of the backend object (database, schema, etc.) depends on the backend you use, and it contains the bucket ID (not the bucket name).

tutorial/ad-hoc/index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ features related to doing ad-hoc analysis.
1111

1212
This part of the tutorial shows how to work with arbitrary data in Python
1313
in a completely unrestricted way. Although our examples use the Python language,
14-
the very same can be achieved using R or Julia.
14+
the very same can be achieved using R.
1515

1616
Before you start, you should have a basic understanding of the [Python language](https://www.python.org/).
1717

@@ -277,14 +277,13 @@ simply copy&paste it into a [Transformation](/tutorial/manipulate/).
277277

278278
The above tutorial is done in the [Python language](https://www.python.org/) using the
279279
[Jupyter Notebook](https://jupyter.org/). The same can be done in the
280-
[R language](https://www.r-project.org/) using [RStudio](https://rstudio.com/),
281-
or in [Julia](https://julialang.org/) using [Jupyter Notebook](https://jupyter.org/).
280+
[R language](https://www.r-project.org/) using [RStudio](https://rstudio.com/).
282281
For more information about workspaces (including disk and memory limits), see the
283282
[corresponding documentation](/workspace/).
284283

285284
## Final Note
286285
This is the end of our stroll around Keboola. On our walk, we missed quite a few things:
287-
Applications, Python, R and Julia transformations, Redshift and Snowflake features, to name a few.
286+
Applications, Python and R transformations, Redshift and Snowflake features, to name a few.
288287
However, teaching you everything was not really the point of this tutorial.
289288
We wanted to show you how Keboola can help in connecting different systems together.
290289

0 commit comments

Comments
 (0)