Access and Query Amazon Athena via DBI/JDBC
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

33 lines
1.2 KiB

před 7 roky
% Generated by roxygen2: do not edit by hand
před 5 roky
% Please edit documentation in R/metis-lite-package.R
před 7 roky
\docType{package}
před 6 roky
\encoding{UTF-8}
před 5 roky
\name{metis.lite}
\alias{metis.lite}
\alias{metis.lite-package}
před 7 roky
\title{Helpers for Accessing and Querying Amazon Athena}
\description{
před 6 roky
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.
před 7 roky
}
před 5 roky
\section{IMPORTANT}{
před 5 roky
Since R 3.5 (I don't remember this happening in R 3.4.x) signals sent from interrupting
před 5 roky
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")
)
}
}
před 5 roky
}
před 7 roky
\author{
Bob Rudis (bob@rud.is)
}
před 5 roky
\keyword{internal}