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
Copy file name to clipboardExpand all lines: setting-up/running-node/storage-providers.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Bacalhau has two ways to make use of external storage providers: Sources and Pub
8
8
{% tab title="S3" %}
9
9
Bacalhau allows you to use S3 or any S3-compatible storage service as an input source. Users can specify files or entire prefixes stored in S3 buckets to be fetched and mounted directly into the job execution environment. This capability ensures that your jobs have immediate access to the necessary data. See the [S3 source specification](../../references/jobs/job/task/sources/s3.md) for more details.
10
10
11
-
To use the S3 source, you will have to to specify the mandatory name of the S3 bucket and the optional parameters Key, Filter, Region, Endpoint, VersionID and ChechsumSHA256.
11
+
To use the S3 source, you will have to specify the mandatory name of the S3 bucket and the optional parameters Key, Filter, Region, Endpoint, VersionID and ChechsumSHA256.
12
12
13
13
Below is an example of how to define an S3 input source in YAML format:
14
14
@@ -61,7 +61,7 @@ InputSources:
61
61
{% tab title="Local" %}
62
62
The Local input source allows Bacalhau jobs to access files and directories that are already present on the compute node. This is especially useful for utilizing locally stored datasets, configuration files, logs, or other necessary resources without the need to fetch them from a remote source, ensuring faster job initialization and execution. See the [Local source specification](../../references/jobs/job/task/sources/local.md) for more details.
63
63
64
-
To use a local data source, you will have to to:
64
+
To use a local data source, you will have to:
65
65
66
66
1. Enable the use of local data when configuring the node itself by using the `Compute.AllowListedLocalPaths` configuration key, specifying the file path and access mode. For example
67
67
@@ -87,7 +87,7 @@ InputSources:
87
87
{% tab title="URL" %}
88
88
The URL Input Source provides a straightforward method for Bacalhau jobs to access and incorporate data available over HTTP/HTTPS. By specifying a URL, users can ensure the required data, whether a single file or a web page content, is retrieved and prepared in the job's execution environment, enabling direct and efficient data utilization. See the [URL source specification](../../references/jobs/job/task/sources/url.md) for more details.
89
89
90
-
To use a URL data source, you will have to to specify only URL parameter, as in the part of the declarative job description below:
90
+
To use a URL data source, you will have to specify only URL parameter, as in the part of the declarative job description below:
0 commit comments