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

updated readme with supported sources #2087

Merged
Changes from 2 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
16 changes: 9 additions & 7 deletions v2/sourcedb-to-spanner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
The [SourceDBToSpanner](src/main/java/com/google/cloud/teleport/v2/templates/SourceDbToSpanner.java) pipeline
ingests data by reading from a database via JDBC and writes the data to Cloud Spanner database.

Currently, this template works for a basic set of use cases. A not comprehensive
list of scenarios which are not yet supported.
to be implemented going forward
* Tables with non integer keys
* Support for additional sources
* Support for tables with foreign keys and interleaving
* Migrating sharded databases
Currently, this template works for tables of any size on the follow sources
* MySQL 8.0+ - String (upto 3 byte characters), Integer like (up to BigInteger
* including unsigned) and Binary/VarBinary primary keys.
* MySQL 5.7+ - Integer like (up to BigInteger including unsigned) and
* Binary/VarBinary primary keys.
* PostgreSQL 13+ - String (upto 3 byte characters) and Integer like (up to
BigInteger including unsigned) primary keys.

Tables without primary keys or primary keys not mentioned above are not supported.

## Getting Started

Expand Down
Loading