在Golang中遇到DynamoDB的ValidationException错误。

huangapple go评论110阅读模式
英文:

Getting ValidationException for Dynamodb in Golang

问题

我已经创建了一个类似这样的模式:

  1. type Movie struct {
  2. Year int `json:"year"`
  3. Title string `json:"title"`
  4. Key string `json:"userId"`
  5. Email string `json:"email"`
  6. Bio string `json:"bio"`
  7. Number int `json:"phoneNumber"`
  8. SocialHandle string `json:"socialHandle"`
  9. Onboarding string `json:"username"`
  10. BankDetails string `json:"bankDetails"`
  11. Image string `json:"image"`
  12. Password string `json:"password"`
  13. Resume string `json:"resume"`
  14. Pincode string `json:"pinCode"`
  15. }

在这里,Key和Onboarding分别是我的主键和排序键。然后我添加了如下的数据:

  1. movie := Movie{
  2. Key: "2323",
  3. Onboarding: "The Big New Movie",
  4. }

然后,我使用这个数据创建了一个普通的MarshalMap,并使用该数据获取了项目。

  1. key, err := dynamodbattribute.MarshalMap(movie)
  2. if err != nil {
  3. fmt.Println(err.Error())
  4. return
  5. }
  6. input := &dynamodb.GetItemInput{
  7. Key: key,
  8. TableName: aws.String("tablename"),
  9. }
  10. result, err := svc.GetItem(input)
  11. if err != nil {
  12. fmt.Println(err)
  13. fmt.Println(err.Error())
  14. return
  15. }

奇怪的是,我使用相同的代码插入数据时没有问题,但在获取数据时出现错误:ValidationException: The provided key element does not match the schema。

英文:

I've made a schema like this~

  1. type Movie struct {
  2. Year int `json:"year"`
  3. Title string `json:"title"`
  4. Key string `json:"userId"`
  5. Email string `json:"email"`
  6. Bio string `json:"bio"`
  7. Number int `json:"phoneNumber"`
  8. SocialHandle string `json:"socialHandle"`
  9. Onboarding string `json:"username"`
  10. BankDetails string `json:"bankDetails"`
  11. Image string `json:"image"`
  12. Password string `json:"password"`
  13. Resume string `json:"resume"`
  14. Pincode string `json:"pinCode"`
  15. }

Here Key and onboarding are my primary and sorting keys respectively. Then I added data like this~

  1. movie := Movie{
  2. Key: "2323",
  3. Onboarding: "The Big New Movie",
  4. }

Then a normal MarshalMap of the thing I made, and used the data to get the item.

  1. key, err := dynamodbattribute.MarshalMap(movie)
  2. if err != nil {
  3. fmt.Println(err.Error())
  4. return
  5. }
  6. input := &dynamodb.GetItemInput{
  7. Key: key,
  8. TableName: aws.String("tablename"),
  9. }
  10. result, err := svc.GetItem(input)
  11. if err != nil {
  12. fmt.Println(err)
  13. fmt.Println(err.Error())
  14. return
  15. }

The weird thing being I inserted data using the same code with few changes, but while fetching data it shows error ~ ValidationException: The provided key element does not match the schema

答案1

得分: 1

这个错误可能是由于在GetItem调用中发送非关键属性引起的。当你使用MarshalMap时,它会在键对象中包含所有其他属性的空值。

你可以手动构建键:

  1. Key: map[string]*dynamodb.AttributeValue{
  2. "userId": {
  3. S: aws.String("2323"),
  4. },
  5. "username": {
  6. S: aws.String("The Big New Movie"),
  7. },
  8. },

或者在结构字段中添加omitempty,当它们没有值时,它将从编组的映射中排除这些属性:

  1. type Movie struct {
  2. Year int `json:"year,omitempty"`
  3. Title string `json:"title,omitempty"`
  4. [...]
  5. }
英文:

This error is likely caused by sending non-key attributes in the GetItem call. When you use MarshalMap, it is including a null value for all other attributes in the key object.

Either you can construct the key manually:

  1. Key: map[string]*dynamodb.AttributeValue{
  2. "userId": {
  3. S: aws.String("2323"),
  4. },
  5. "username": {
  6. S: aws.String("The Big New Movie"),
  7. },
  8. },

Or add omitempty to the struct fields, which will exclude these attributes from the marshalled map when they have no value:

  1. type Movie struct {
  2. Year int `json:"year,omitempty"`
  3. Title string `json:"title,omitempty"`
  4. [...]
  5. }

huangapple
  • 本文由 发表于 2022年12月2日 03:17:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/74647121.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定