Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hotfix][doc] Fix doc site with 404 #2322

Merged
merged 4 commits into from
Jul 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.7-slim
RUN apt-get update
RUN apt-get -y install git
RUN pip3 install -U sphinx==4.1.1 myst-parser==0.15.2 pygments==2.10.0 sphinx-rtd-theme==0.5.2 sphinx-autobuild==2021.3.14 gitpython==3.1.18
RUN pip3 install -U sphinx==4.1.1 myst-parser==0.15.2 pygments==2.10.0 sphinx-rtd-theme==0.5.2 sphinx-autobuild==2021.3.14 gitpython==3.1.18 pyyaml==6.0
EXPOSE 8001
CMD ["sphinx-autobuild", "--host", "0.0.0.0", "--port", "8001", "/home/flink-cdc/docs", "/home/flink-cdc/docs/_build/html"]
2 changes: 1 addition & 1 deletion docs/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set -x
# step-1: install dependencies
apt-get update
apt-get -y install git rsync python3-pip python3-git python3-stemmer python3-virtualenv python3-setuptools
python3 -m pip install -U sphinx==4.1.1 myst-parser==0.15.2 pygments==2.10.0 sphinx-rtd-theme==0.5.2
python3 -m pip install -U sphinx==4.1.1 myst-parser==0.15.2 pygments==2.10.0 sphinx-rtd-theme==0.5.2 pyyaml==6.0

export REPO_NAME="${GITHUB_REPOSITORY##*/}"

Expand Down
22 changes: 11 additions & 11 deletions docs/content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ The following table shows the version mapping between Flink<sup>®</sup> CDC Con

The following table shows the current features of the connector:

| Connector | No-lock Read | Parallel Read | Exactly-once Read | Incremental Snapshot Read |
|----------------------------------------------|---------------------|------------------|-------------------|----------------------------|
| [mongodb-cdc](connectors/mongodb-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [mysql-cdc](connectors/mysql-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [oracle-cdc](connectors/oracle-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [postgres-cdc](connectors/postgres-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [sqlserver-cdc](connectors/sqlserver-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [oceanbase-cdc](connectors/oceanbase-cdc.md) | ❌ | ❌ | ❌ | ❌ |
| [tidb-cdc](connectors/tidb-cdc.md) | ✅ | ❌ | ✅ | ❌ |
| [db2-cdc](connectors/db2-cdc.md) | ❌ | ❌ | ✅ | ❌ |
| [vitess-cdc](connectors/vitess-cdc.md) | ✅ | ❌ | ✅ | ❌ |
| Connector | No-lock Read | Parallel Read | Exactly-once Read | Incremental Snapshot Read |
|----------------------------------------------|--------------|---------------|-------------------|---------------------------|
| [mongodb-cdc](connectors/mongodb-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [mysql-cdc](connectors/mysql-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [oracle-cdc](connectors/oracle-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [postgres-cdc](connectors/postgres-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [sqlserver-cdc](connectors/sqlserver-cdc.md) | ✅ | ✅ | ✅ | ✅ |
| [oceanbase-cdc](connectors/oceanbase-cdc.md) | ❌ | ❌ | ❌ | ❌ |
| [tidb-cdc](connectors/tidb-cdc.md) | ✅ | ❌ | ✅ | ❌ |
| [db2-cdc](connectors/db2-cdc.md) | ❌ | ❌ | ✅ | ❌ |
| [vitess-cdc](connectors/vitess-cdc.md) | ✅ | ❌ | ✅ | ❌ |

## Usage for Table/SQL API

Expand Down
Loading