Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Improve transport configuration docs
Browse files Browse the repository at this point in the history
Signed-off-by: Мартынов Максим Сергеевич <[email protected]>
  • Loading branch information
dolfinus committed Apr 18, 2024
1 parent e3b5ef6 commit 334d37a
Show file tree
Hide file tree
Showing 4 changed files with 560 additions and 155 deletions.
6 changes: 3 additions & 3 deletions docs/client/java/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ You can make this file available to the client in three ways (the list also pres
3. Place an `openlineage.yml` under `.openlineage/` in the user's home directory (`~/.openlineage/openlineage.yml`).


### Environment Variables
## Environment Variables
The following environment variables are available:

| Name | Description | Since |
Expand All @@ -24,7 +24,7 @@ The following environment variables are available:
| OPENLINEAGE_DISABLED | When `true`, OpenLineage will not emit events. | 0.9.0 |


### Facets Configuration
## Facets Configuration

In YAML configuration file you can also specify a list of disabled facets that will not be included in OpenLineage event.

Expand All @@ -38,7 +38,7 @@ facets:
- spark_logicalPlan
```
### Transports
## Transports
import Transports from './partials/java_transport.md';
Expand Down
4 changes: 2 additions & 2 deletions docs/client/java/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ Maven:
<dependency>
<groupId>io.openlineage</groupId>
<artifactId>openlineage-java</artifactId>
<version>1.8.0</version>
<version>${OPENLINEAGE_VERSION}</version>
</dependency>
```

or Gradle:

```groovy
implementation 'io.openlineage:openlineage-java:1.8.0'
implementation("io.openlineage:openlineage-java:${OPENLINEAGE_VERSION}")
```

For more information on the available versions of the `openlineage-java`,
Expand Down
Loading

0 comments on commit 334d37a

Please sign in to comment.