All Projects → nfultz → AWR.Athena

nfultz / AWR.Athena

Licence: other
Short R Wrapper for Athena JDBC connections

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to AWR.Athena

Hikaricp
光 HikariCP・A solid, high-performance, JDBC connection pool at last.
Stars: ✭ 16,146 (+70100%)
Mutual labels:  jdbc
metis
Helpers for Accessing and Querying Amazon Athena using R, Including a lightweight RJDBC shim
Stars: ✭ 18 (-21.74%)
Mutual labels:  athena
Redash
Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data.
Stars: ✭ 20,147 (+87495.65%)
Mutual labels:  athena
athenai
Have fun with Amazon Athena from command line! 🕊
Stars: ✭ 36 (+56.52%)
Mutual labels:  athena
athena-sqlite
A SQLite driver for S3 and Amazon Athena 😳
Stars: ✭ 82 (+256.52%)
Mutual labels:  athena
scalikejdbc-athena
Library for using Amazon Athena JDBC Driver with ScalikeJDBC
Stars: ✭ 19 (-17.39%)
Mutual labels:  athena
Sqlhelper
SQL Tools ( Dialect, Pagination, DDL dump, UrlParser, SqlStatementParser, WallFilter, BatchExecutor for Test) based Java. it is easy to integration into any ORM frameworks
Stars: ✭ 242 (+952.17%)
Mutual labels:  jdbc
MiniDao
An powerful enhanced toolkit of SpringJdbc for simplify development
Stars: ✭ 200 (+769.57%)
Mutual labels:  jdbc
Athena
Test your Security Skills, and Clean Code Development as a Pythonist, Hacker & Warrior 🥷🏻
Stars: ✭ 43 (+86.96%)
Mutual labels:  athena
qwery
A SQL-like language for performing ETL transformations.
Stars: ✭ 28 (+21.74%)
Mutual labels:  athena
noctua
Connect R to Athena using paws SDK (DBI Interface)
Stars: ✭ 35 (+52.17%)
Mutual labels:  athena
rds-snapshot-export-to-s3-pipeline
RDS Snapshot Export to S3 Pipeline
Stars: ✭ 88 (+282.61%)
Mutual labels:  athena
amazon-athena-user-guide
The open source version of the Amazon Athena documentation. To submit feedback & requests for changes, submit issues in this repository, or make proposed changes & submit a pull request.
Stars: ✭ 76 (+230.43%)
Mutual labels:  athena
RAthena
Connect R to Athena using Boto3 SDK (DBI Interface)
Stars: ✭ 30 (+30.43%)
Mutual labels:  athena
Cube.js
📊 Cube — Open-Source Analytics API for Building Data Apps
Stars: ✭ 11,983 (+52000%)
Mutual labels:  athena
Jaydebeapi
JayDeBeApi module allows you to connect from Python code to databases using Java JDBC. It provides a Python DB-API v2.0 to that database.
Stars: ✭ 247 (+973.91%)
Mutual labels:  jdbc
Hello-AWS-Data-Services
Sample code for AWS data service and ML courses on LinkedIn Learning
Stars: ✭ 144 (+526.09%)
Mutual labels:  athena
doc
QuickPerf documentation: https://github.com/quick-perf/doc/wiki/QuickPerf
Stars: ✭ 22 (-4.35%)
Mutual labels:  jdbc
Aws Data Wrangler
Pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).
Stars: ✭ 2,385 (+10269.57%)
Mutual labels:  athena
bandar-log
Monitoring tool to measure flow throughput of data sources and processing components that are part of Data Ingestion and ETL pipelines.
Stars: ✭ 20 (-13.04%)
Mutual labels:  athena

AWR.Athena

This is an R client to interact with the AWS Athena service, including wrapper functions around the Athena JDBC package to query data stored in S3.

Installation

CRAN version

install.packages("AWR.Athena")

Or you can easily install the most recent development version of the R package as well:

devtools::install_github('nfultz/AWR.Athena')

What is it good for?

This provides a simplified DBI driver for Athena:

require(DBI)
con <- dbConnect(AWR.Athena::Athena(), region='us-west-2', S3OutputLocation='s3://nfultz-athena-staging', Schema='default')
dbListTables(con)
dbGetQuery(con, "Select count(*) from sampledb.elb_logs")

Installing and loading the JDBC driver package is handled automatically.

What if I want to do other cool things with Athena and R?

Most database functionality is actually provided by RJDBC, but if you have Athena-specific features in mind, please open a ticket on the feature request, or even better, submit a pull request :)

It doesn't work here!

To be able to use this package, you need to have an AWS account. If you do not have one already, you can register for free at Amazon although usage is currently $5 / terabyte scanned.

Once you have an AWS account, make sure your default AWS Credentials are available via the DefaultAWSCredentialsProviderChain . In short, you either provide a default credential profiles file at ~/.aws/credentials, use the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables; or if using AWR.Athena on AWS, you can also rely on the EC2 instance profile credentials or ECS Task Role as well.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].