Read a DynamoDB table into a DataFrame.
Read a DynamoDB table into a DataFrame.
This adds a dynamodb method to DataFrameReader that allows you to read a
DynamoDB table into a DataFrame as follows:
val df = sqlContext.read.dynamodb("us-west-2", "users")
AWS region containing the DynamoDB table to scan.
DynamoDB table name to scan.
DataFrame with records scanned from the DynamoDB table.
Read a DynamoDB table into a DataFrame.
Read a DynamoDB table into a DataFrame.
This adds a dynamodb method to DataFrameReader that allows you to read a
DynamoDB table into a DataFrame as follows:
val df = sqlContext.read.dynamodb("users")
DynamoDB table name to scan.
DataFrame with records scanned from the DynamoDB table.