Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andreax79/gluettalax
💩 Glue ETL without constipation💩
https://github.com/andreax79/gluettalax
aws cli constipation glue glue-etl python
Last synced: 5 days ago
JSON representation
💩 Glue ETL without constipation💩
- Host: GitHub
- URL: https://github.com/andreax79/gluettalax
- Owner: andreax79
- License: mit
- Created: 2019-05-22T20:16:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T20:03:22.000Z (over 2 years ago)
- Last Synced: 2024-07-08T05:47:21.011Z (4 months ago)
- Topics: aws, cli, constipation, glue, glue-etl, python
- Language: Python
- Homepage:
- Size: 85.9 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
- License: LICENSE
Awesome Lists containing this project
README
# GLUEttalax
Glue ETL without constipation[![Build Status](https://github.com/andreax79/GLUEttalax/workflows/Tests/badge.svg)](https://github.com/andreax79/GLUEttalax/actions)
[![PyPI version](https://badge.fury.io/py/gluettalax.svg)](https://badge.fury.io/py/GLUEttalax)
[![PyPI](https://img.shields.io/pypi/pyversions/GLUEttalax.svg)](https://pypi.org/project/GLUEttalax)
[![Downloads](https://pepy.tech/badge/GLUEttalax/month)](https://pepy.tech/project/GLUEttalax)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)```
usage: gluettalax [parameters]Commands:
add_partition [--partition1=value...] [--location=path]
Create a new Glue partition.
Example: add_partition datalake usage --year=2019 --month=09add_partitions [s3_path]
Create new Glue partitions in a given location.
Example: add_partition datalake usage s3://example/usage/year=2020/month=10del_partition [--partition1=value...]
Delete a Glue partition.
Example: del_partition datalake usage --year=2019 --month=09help [command]
Display information about commands.list_crawlers [pattern] [--noheaders]
List Glue crawlers.
Example: list_crawlers 'test*' --noheaderslist_jobs [pattern] [--noheaders]
List Glue jobs.
Example: list_jobs 'test*'list_partitions [pattern] [--noheaders]
List the partitions in a table.
Example: list_partitions datalake usagelist_runs [job_name] [--lines=num] [--noheaders]
Print Glue jobs history.
Example: list_runs my_batch_job --lines 10list_tables [pattern] [--noheaders]
List Glue tables.
Example: list_tables 'test*' --noheadersrun_crawler [--async] [--timeout=seconds]
Run a crawler. If not async, wait until execution is finished.
Example: run_crawler my_usage_crawler --asyncrun_job [--async] [--param1=value...]
Run a Glue job. if not async, wait until execution is finished.
Example: cmd_run_job --DATALAKE_BUCKET=test --THE_DATE=20191112 --HOUR=15Command aliases:
lsc -> list_crawlers
lsj -> list_jobs
runc -> run_crawler
lsr -> list_runs
runj -> run_job
lsp -> list_partitions
addp -> add_partition
rmp -> del_partition
lst -> list_tables