VDK-INGEST-FILE Plugin
This plugin provides functionality to ingest data into a file. It is intended for local testing.
Usage
To use the plugin, just install it, and set the method attribute of send_object_for_ingestion(),
and send_tabular_data_for_ingestion() functions to "file".
Example:
def run(job_input: IJobInput):
# Do something to get data for ingestion
payload = get_some_data()
# Ingest the data
job_input.send_object_for_ingestion(payload=payload,
destination_table="aa_test_table",
method="file",
target="name_of_file"
)
The above example shows how to ingest json data. In this case, there is only one argument that is required: payload.
It needs to be a json object, and can contain the destination_table inside, using the @table key. For example:
{
"@table": "destination_table_name",
"column1": "value1",
"column2": "value2",
"column3": "value3",
}
The target attribute is being used to specify the name of the file, where the data will be ingested. If not specified, it is constructed,
using the model, table.<creation-timestamp>.json.
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-ingest-file-0.1.1190994517.tar.gz.
File metadata
- Download URL: vdk-ingest-file-0.1.1190994517.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/5.0.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3350eab9c9a7fb6fda50513332b46d8601c19387c03ffce2c8f3a87352fea868
|
|
| MD5 |
3a84a5d887d99deabb2a38c3ff392f01
|
|
| BLAKE2b-256 |
113ed4cdeb3a9e746eeea43d7debd5a57158d357afbfc57f36f7b9b3d75541d4
|