Skip to content

Commit

Permalink
Announce PipelineWise structure change (#1172)
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-pie committed Jul 23, 2024
1 parent 97d2abd commit f099e7f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# PipelineWise
<span style="color:red">
<h1>Notice</h1>
</span>
To better serve Wise business and customer needs, PipelineWise is shrinking.
Going forward many components of PipelineWise will be removed or incorporated in the main repo

The last version before this decision is [v0.64.0](https://github.com/transferwise/pipelinewise/tree/v0.64.0)

## PipelineWise

[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pipelinewise-tap-mysql.svg)](https://pypi.org/project/pipelinewise-tap-mysql/)
[![License: Apache2](https://img.shields.io/badge/License-Apache2-yellow.svg)](https://opensource.org/licenses/Apache-2.0)
Expand Down Expand Up @@ -88,8 +96,8 @@ PipelineWise images are built on each release and available on [Dockerhub](https
```

#### Build your own docker image
1. Build an executable docker image that has every required dependency and is isolated from your host system.

1. Build an executable docker image that has every required dependency and is isolated from your host system.

By default, the image will build with *all* connectors. In order to keep image size small, we strongly recommend you change it to just the connectors you need by supplying the `--build-arg` command:

Expand Down
2 changes: 1 addition & 1 deletion dev-project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Go to the main folder of the repository (the parent of this one) and To create l

```sh
$ cd dev-project/
$ docker-compose up --build
$ docker compose up --build
```

Wait until `PipelineWise Dev environment is ready in Docker container(s).` message. At the first run this can
Expand Down
5 changes: 3 additions & 2 deletions dev-project/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ services:

# MySQL service container used as test source database
db_mysql_source:
image: mariadb:10.6.17
image: mariadb:10.6.18
container_name: pipelinewise_dev_mysql_source
ports:
- ${TAP_MYSQL_PORT_ON_HOST}:${TAP_MYSQL_PORT}
Expand All @@ -66,6 +66,7 @@ services:
- ./my/ca-cert.pem:/etc/my.cnf.d/certificates/ca-cert.pem
command: >
--default-authentication-plugin=mysql_native_password
--performance_schema=ON
--server-id=1
--log-bin=mysql-bin
--binlog-format=ROW
Expand All @@ -85,7 +86,7 @@ services:
- pipelinewise_network

db_mysql_source_replica:
image: mariadb:10.6.17
image: mariadb:10.6.18
container_name: pipelinewise_dev_mysql_source_replica
ports:
- ${TAP_MYSQL_REPLICA_PORT_ON_HOST}:${TAP_MYSQL_REPLICA_PORT}
Expand Down
6 changes: 6 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Notice
======
To better serve Wise business and customer needs, PipelineWise is shrinking.
Going forward many components of PipelineWise will be removed or incorporated in the main repo

The last version before this decision is `v0.64.0 <https://github.com/transferwise/pipelinewise/tree/v0.64.0>`_

.. image:: img/pipelinewise-with-text.png
:width: 300
Expand Down

0 comments on commit f099e7f

Please sign in to comment.