Req plugin for AWS Athena.
ReqAthena makes it easy to make Athena queries. Query results are decoded into the ReqAthena.Result
struct.
The struct implements the Table.Reader
protocol and thus can be efficiently traversed by rows or columns.
Mix.install([
{:req, "~> 0.3.5"},
{:req_athena, "~> 0.1.3"}
])
opts = [
access_key_id: System.fetch_env!("AWS_ACCESS_KEY_ID"),
secret_access_key: System.fetch_env!("AWS_SECRET_ACCESS_KEY"),
region: System.fetch_env!("AWS_REGION"),
database: "default",
output_location: "s3://my-bucket"
]
req = Req.new() |> ReqAthena.attach(opts)
# Create table from Registry of Open Data on AWS
# See: https://registry.opendata.aws/osm/
query = """
CREATE EXTERNAL TABLE IF NOT EXISTS planet (
id BIGINT,
type STRING,
tags MAP<STRING,STRING>,
lat DECIMAL(9,7),
lon DECIMAL(10,7),
nds ARRAY<STRUCT<REF:BIGINT>>,
members ARRAY<STRUCT<TYPE:STRING,REF:BIGINT,ROLE:STRING>>,
changeset BIGINT,
timestamp TIMESTAMP,
uid BIGINT,
user STRING,
version BIGINT,
visible BOOLEAN
)
STORED AS ORCFILE
LOCATION 's3://osm-pds/planet/';
"""
Req.post!(req, athena: query).body
# =>
# %{
# "Output" => "",
# "ResultSet" => %{
# "ColumnInfos" => [],
# "ResultRows" => [],
# "ResultSetMetadata" => %{"ColumnInfo" => []},
# "Rows" => []
# }
# }
# With plain string query
query = "SELECT id, type, tags, members, timestamp, visible FROM planet WHERE id = 470454 and type = 'relation'"
Req.post!(req, athena: query, format: :json).body
# =>
# [
# %{
# "id" => 470454,
# "members" => [
# %{"ref" => 670007839, "role" => "", "type" => "node"},
# %{"ref" => 670007840, "role" => "", "type" => "node"}
# ],
# "tags" => %{
# "name" => "Mérignac A",
# "network" => "NTF-5",
# "ref" => "17229A",
# "site" => "geodesic",
# "source" => "©IGN 2010 dans le cadre de la cartographie réglementaire",
# "type" => "site",
# "url" => "http://geodesie.ign.fr/fiches/index.php?module=e&action=fichepdf&source=carte&sit_no=17229A"
# },
# "timestamp" => "2017-01-21 12:51:34",
# "type" => "relation",
# "visible" => true
# }
# ]
# With parameterized query
query = "SELECT id, type FROM planet WHERE id = ? and type = ?"
Req.post!(req, athena: {query, [239_970_142, "node"]}).body
#=> [%{"id" => 239970142, "type" => "node"}]
Copyright (C) 2022 Dashbit
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.