% Generated by roxygen2: do not edit by hand % Please edit documentation in R/metis-lite-package.R \docType{package} \encoding{UTF-8} \name{metis.lite} \alias{metis.lite} \alias{metis.lite-package} \title{Access and Query Amazon Athena via DBI/JDBC} \description{ Methods are provides to connect to 'Amazon' 'Athena', lookup schemas/tables, perform queries and retrieve query results. A lightweight 'RJDBC' implementation is included along with an interface to the 'AWS' command-line utility. } \section{IMPORTANT}{ Since R 3.5 (I don't remember this happening in R 3.4.x) signals sent from interrupting Athena JDBC calls crash the R #' interpreter. You need to set the \code{-Xrs} option to avoid signals being passed on to the JVM owner. That has to be done \emph{before} \code{rJava} is loaded so you either need to remember to put it at the top of all scripts \emph{or} stick this in your local #' \code{~/.Rprofile} and/or sitewide \code{Rprofile}:\preformatted{if (!grepl("-Xrs", getOption("java.parameters", ""))) { options( "java.parameters" = c(getOption("java.parameters", default = NULL), "-Xrs") ) } } } \references{ \href{https://s3.amazonaws.com/athena-downloads/drivers/JDBC/SimbaAthenaJDBC_2.0.6/docs/Simba+Athena+JDBC+Driver+Install+and+Configuration+Guide.pdf}{Simba Athena JDBC Driver with SQL Connector Installation and Configuration Guide} } \author{ Bob Rudis (bob@rud.is) } \keyword{internal}