Support for VDK Managed Oracle connection
Project description
oracle
Support for VDK Managed Oracle connection
TODO: what the project is about, what is its purpose
Usage
pip install vdk-oracle
Configuration
(vdk config-help
is useful command to browse all config options of your installation of vdk)
Name | Description | (example) Value |
---|---|---|
oracle_user | Username used when connecting to Oracle database | "my_user" |
oracle_password | Password used when connecting to Oracle database | "super_secret_shhhh" |
oracle_connection_string | The Oracle connection string | "localhost/free" |
Example
Ingestion
import datetime
from decimal import Decimal
def run(job_input):
# Ingest object
payload_with_types = {
"id": 5,
"str_data": "string",
"int_data": 12,
"float_data": 1.2,
"bool_data": True,
"timestamp_data": datetime.datetime.fromtimestamp(1700554373),
"decimal_data": Decimal(0.1),
}
job_input.send_object_for_ingestion(
payload=payload_with_types, destination_table="test_table"
)
# Ingest tabular data
col_names = [
"id",
"str_data",
"int_data",
"float_data",
"bool_data",
"timestamp_data",
"decimal_data",
]
row_data = [
[
0,
"string",
12,
1.2,
True,
datetime.datetime.fromtimestamp(1700554373),
Decimal(1.1),
],
[
1,
"string",
12,
1.2,
True,
datetime.datetime.fromtimestamp(1700554373),
Decimal(1.1),
],
[
2,
"string",
12,
1.2,
True,
datetime.datetime.fromtimestamp(1700554373),
Decimal(1.1),
],
]
job_input.send_tabular_data_for_ingestion(
rows=row_data, column_names=col_names, destination_table="test_table"
)
Build and testing
pip install -r requirements.txt
pip install -e .
pytest
In VDK repo ../build-plugin.sh script can be used also.
Note about the CICD:
.plugin-ci.yaml is needed only for plugins part of Versatile Data Kit Plugin repo.
The CI/CD is separated in two stages, a build stage and a release stage. The build stage is made up of a few jobs, all which inherit from the same job configuration and only differ in the Python version they use (3.7, 3.8, 3.9 and 3.10). They run according to rules, which are ordered in a way such that changes to a plugin's directory trigger the plugin CI, but changes to a different plugin does not.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file vdk-oracle-0.1.1090980803.tar.gz
.
File metadata
- Download URL: vdk-oracle-0.1.1090980803.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6d3b6466d4b546ca77e0cbfd3f2bb19b73060be8ec0ad508e6568d6098de618 |
|
MD5 | 59ae6fff0fa7bd09d9643530046be6fd |
|
BLAKE2b-256 | e3b9ec099a7af6fb7a92cabd7bd2d79db0b584d07c0881c3012e9b00cf3b737b |