Skip to content

Commit fe080d9

Browse files
authored
Merge pull request #4703 from bamaer/4702
fix doc headings. fixes #4702
2 parents b642993 + 058bd17 commit fe080d9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/hop-user-manual/modules/ROOT/pages/how-to-guides/joins-lookups.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ under the License.
2222

2323
Hop offers a lot of options to enrich and combine data, among other things through joins and lookups. This guide explains the differences between the various joins and lookups, and will help you to choose the right transform for your pipelines.
2424

25-
=== Joins
25+
== Joins
2626

2727
Joins are a way to merge data from two or more different streams in your pipeline. Joins typically require you to select a set of fields (the join keys) to join the streams on. The data in all streams that are involved in the join needs to be sorted on the join keys.
2828

@@ -80,7 +80,7 @@ allows you to run a query against a database using data obtained from previous t
8080

8181
|===
8282

83-
=== Lookups
83+
== Lookups
8484

8585
Lookups are a way to let you enrich your pipeline's stream with additional fields from external sources. The transforms allow you to choose which additional fields will be retrieved from the lookup source.
8686

@@ -146,7 +146,7 @@ The stream lookup accepts data from any pipeline stream, but since the data need
146146
|===
147147

148148

149-
=== Lookup Caching
149+
== Lookup Caching
150150

151151
The xref:pipeline/transforms/combinationlookup.adoc[Combination lookup/update], xref:pipeline/transforms/dimensionlookup.adoc[Dimension lookup/update] and xref:pipeline/transforms/databaselookup.adoc[Database lookup] allow you to cache data. Cached data is stored in memory to speed up the lookup process.
152152

docs/hop-user-manual/modules/ROOT/pages/workflow/workflows.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ under the License.
2020

2121
= Workflows
2222

23-
=== Workflow overview
23+
== Workflow overview
2424

2525
Workflows are one of the core building blocks in Apache Hop. Where pipelines do the heavy data lifting, workflows take care of the orchestration work: prepare the environment, fetch remote files, perform error handling and executing child workflows and pipelines.
2626

@@ -35,7 +35,7 @@ Even though there is some visual resemblance, workflows and pipelines operate ve
3535
* Workflow actions do not pass data over hops. Each workflow action has a `success` or `failure` exit status. This exit status is used to choose the routing through the workflow.
3636
* Hops between actions in a workflow have a status: depending on the exit status of the previous action, a workflow hop can follow the success (green), failure (orange) or unconditional (black) hop. An unconditional hop ignores the exit status of the previous action and is followed whether the previous action failed or succeeded.
3737

38-
=== Example workflow walk-through
38+
== Example workflow walk-through
3939

4040
Like all workflows, the example workflow shown below starts with the `start` action.
4141

@@ -51,7 +51,7 @@ If the temporary files are removed successfully, we move on to the "success" act
5151

5252
image:hop-gui/workflow/basic-workflow.png[Workflows - basic workflows, width="65%"]
5353

54-
=== Next steps
54+
== Next steps
5555

5656
The following pages take you deeper into the process of building and running workflows:
5757

0 commit comments

Comments
 (0)