Created
January 22, 2018 17:01
-
-
Save doncicuto/b057ee46dc04e293ccc40542e79183cb to your computer and use it in GitHub Desktop.
DynamoDB Tutorial Part 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"os" | |
"github.com/aws/aws-sdk-go/aws" | |
"github.com/aws/aws-sdk-go/aws/session" | |
"github.com/aws/aws-sdk-go/service/dynamodb" | |
"github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute" | |
) | |
func main() { | |
type Movie struct { | |
Year int `json:"year"` | |
Title string `json:"title"` | |
Info interface{} `json:"info"` | |
} | |
moviesData, err := os.Open("moviedata.json") | |
defer moviesData.Close() | |
if err != nil { | |
fmt.Println("Could not open the moviedata.json file", err.Error()) | |
os.Exit(1) | |
} | |
var movies []Movie | |
err = json.NewDecoder(moviesData).Decode(&movies) | |
if err != nil { | |
fmt.Println("Could not decode the moviedata.json data", err.Error()) | |
os.Exit(1) | |
} | |
config := &aws.Config{ | |
Region: aws.String("us-west-2"), | |
Endpoint: aws.String("http://localhost:8000"), | |
} | |
sess := session.Must(session.NewSession(config)) | |
svc := dynamodb.New(sess) | |
for _, movie := range movies { | |
info, err := dynamodbattribute.MarshalMap(movie) | |
if err != nil { | |
panic(fmt.Sprintf("failed to marshal the movie, %v", err)) | |
} | |
input := &dynamodb.PutItemInput{ | |
Item: info, | |
TableName: aws.String("Movies"), | |
} | |
_, err = svc.PutItem(input) | |
if err != nil { | |
fmt.Println(err.Error()) | |
return | |
} | |
} | |
fmt.Printf("We have processed %v records\n", len(movies)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment