Compare commits

..

No commits in common. "77575d3cc38d6305ae0962038310e32ef65d7ef7" and "36ca9c1064f8a4f18591363a7cb461c3a7aa5c57" have entirely different histories.

View File

@ -1,45 +0,0 @@
Data movement:
- Kafka
- FDW
- remote server (MSSQL)
- jrunner
- dbt
J Runner
----------
takes a yaml
- connections #parameter
- script to build the SQL script #file path or SQL
- the sql script used for extraction #file path or SQL
- destination table sized for the extracted data #parameter
- ingestion script to merge incoming data with final destination data #file path or SQL
```yaml
database:
source:
uri: jdbc:mysql://localhost:3306/source_db
username: source_user
password: source_password
target:
uri: jdbc:postgresql://localhost:5432/target_db
username: target_user
password: target_password
script:
path: /path/to/sql_script.sql
logging:
level: INFO
file: /path/to/logfile.log
runtime:
java_options:
- -Xms512m
- -Xmx2048m
environment_variables:
JAVA_HOME: /path/to/custom/java
```