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: mddocs/docs/en/integrations/flink1/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Using [OpenLineage integration with Apache Flink 1.x](https://openlineage.io/doc
9
9
10
10
## Limitations
11
11
12
-
- Only `standalone-job` (application mode) is supported, but not `jobmanager` (session mode): [https://github.com/OpenLineage/OpenLineage/issues/2150](OpenLineageissue)
12
+
- Only `standalone-job` (application mode) is supported, but not `jobmanager` (session mode): (https://github.com/OpenLineage/OpenLineage/issues/2150)[OpenLineageissue]
Copy file name to clipboardExpand all lines: mddocs/docs/en/reference/database/index.md
+19-17Lines changed: 19 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,22 +16,22 @@ Migration script is a thin wrapper around [Alembic cli](https://alembic.sqlalche
16
16
17
17
## Partitions
18
18
19
-
After migrations are performed, it is required to run [`create-partitions-cli`](create-partitions-cli) which creates partitions for some tables in the database.
19
+
After migrations are performed, it is required to run [`create-partitions-cli`][create-partitions-cli] which creates partitions for some tables in the database.
20
20
By default, it creates monthly partitions, for current and next month. This can be changed by overriding command args.
21
21
22
22
This script should run on schedule, depending on partitions granularity.
23
23
Scheduling can be done by adding a dedicated entry to [crontab](https://help.ubuntu.com/community/CronHowto).
24
24
25
-
It's strongly recommended also to add old partitions cleanup script to cron [`cleanup-partitions-cli`](cleanup-partitions-cli).
25
+
It's strongly recommended also to add old partitions cleanup script to cron [`cleanup-partitions-cli`][cleanup-partitions-cli].
26
26
Scheduling setup is same is for creating of partitions.
27
27
28
28
## Analytic views
29
29
30
-
Along with migrations few analytics views are created. These are managed by [`refresh-analytic-views-cli`](refresh-analytic-views-cli), and should be executed by schedule.
30
+
Along with migrations few analytics views are created. These are managed by [`refresh-analytic-views-cli`][refresh-analytic-views-cli], and should be executed by schedule.
31
31
32
32
## Seeding
33
33
34
-
By default, database is created with no data. To seed database with some examples, use [`db-seed-cli`](db-seed-cli).
34
+
By default, database is created with no data. To seed database with some examples, use [`db-seed-cli`][db-seed-cli].
35
35
36
36
## Requirements
37
37
@@ -64,19 +64,21 @@ By default, database is created with no data. To seed database with some example
64
64
65
65
Options can be set via `.env` file or `environment` section in `docker-compose.yml`
66
66
67
-
=== "docker-compose.yml"
67
+
??? note "docker-compose.yml"
68
68
69
-
```yaml
70
-
.. literalinclude:: ../../../docker-compose.yml
71
-
:emphasize-lines: 1-69,176
72
-
```
69
+
```yaml hl_lines="1-69 176" linenums="1"
70
+
----8<----
71
+
docker-compose.yml
72
+
----8<----
73
+
```
73
74
74
-
=== ".env.docker"
75
+
??? note ".env.docker"
75
76
76
-
```yaml
77
-
.. literalinclude:: ../../../.env.docker
78
-
:emphasize-lines: 1-5,23
79
-
```
77
+
```ini hl_lines="1-5 23" linenums="1"
78
+
----8<----
79
+
.env.docker
80
+
----8<----
81
+
```
80
82
81
83
- Add scripts to crontab:
82
84
@@ -110,7 +112,7 @@ By default, database is created with no data. To seed database with some example
110
112
...
111
113
```
112
114
113
-
- Configure [`Database connection`](configuration-database) using environment variables, e.g. by creating `.env` file:
115
+
- Configure [`Database connection`][configuration-database] using environment variables, e.g. by creating `.env` file:
114
116
115
117
```console title="/some/.env"
116
118
@@ -177,5 +179,5 @@ By default, database is created with no data. To seed database with some example
0 commit comments