-
-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple query example #141
Comments
I agree we need more examples. The godoc could use some love for sure. Also want to expand the readme. |
I saw those, I ended up just using the AWS SDK directly. I couldn't figure out how to query based on a partition key and a range key together. |
OK. I'll write an example in case someone stumbles upon this looking for help.
This library uses the old term for partition key, which is "hash key". The sort key is a "range key". We can model our data like this: type Event struct {
UserID int
Date string
Comment string
} Initialize the DB and specify the table (the README.md contains a full example for db := dynamo.New( /*...*/ )
table := db.Table("Events") If we want to grab the first row in this table, we can do this, which will use a GetItem API call. var event Event
// get UserID=1 and Date=2020-02-10
err := table.Get("UserID", 1).Range("Date", dynamo.Equal, "2020-02-10").One(&event)
fmt.Println(event) // prints Event{UserID: 1, Date: 2020-02-10, Comment: hello} Let's do a query for of UserID=1's items between 2020-02-10 and 2020-02-12. This will use a Query API call. var events []Event
err := table.Get("UserID", 1).Range("Date", dynamo.Between, "2020-02-10", "2020-02-12").All(&events)
fmt.Println(events) // got 3 items for UserID=1: 2020-02-10, 2020-02-11, and 2020-02-12 Get all of UserID=2's events: var events []Event
err := table.Get("UserID", 2).All(&events)
fmt.Println(events) // got 2 items for UserID=2: 2020-01-10, 2020-05-01 You can use Filter to further refine your search. This gets all of UserID=1's events whose comment starts with 'h'. var events []Event
err := table.Get("UserID", 1).Filter("begins_with('Comment', ?)", "h").All(&events)
fmt.Println(events) // got 2 items for UserID=1: 2020-02-11 (hello), 2020-02-11 (howdy) You can use anything from the reference here. That's the basic idea, the rest of the library follows pretty much the same API. For example, Scan has the same filter syntax, etc. |
sometimes datasets can be large and you need to page through each individually. i'm new to go and might might be missing something obvious, but All() doesn't work in these situations. fwiw this is what i came up with: var offset dynamo.PagingKey
var resultIds []string
for {
itr := s.Table.Scan().
Filter("begins_with($, ?)", "UserId", prefix).
StartFrom(offset).
Iter()
if itr.Err() != nil {
// handle error
}
for {
var record Record
more := itr.Next(&record)
if !more {
break
}
results = append(resultIds, record.PrimaryKey)
}
// no more pages to load. could itr.HasMore() exist?
if itr.LastEvaluatedKey() == nil {
break
}
} is there something that wraps that up? maybe all works this way now somehow and manages LastEvaluatedKey and StartFrom internally? |
@cmawhorter I'm not sure what trouble you're facing, but maybe you're timing out? If you check iter.Err() it should tell you. You can change the default timeout or use the WithContext methods and control timeouts with context instead. A RetryTimeout of 0 or context.Background() will never timeout. LastEvaluatedKey is mostly for paginating results when you can't use a range key to do it. For example if you wanted an API to only return at most 100 items at a time, you could use SearchLimit and LastEvaluatedKey. If you're not getting an error from Iter but it's still not returning all the results then it's a bug and I'd like to fix it. |
@cmawhorter |
i mistakingly assumed dynamo was like some other ddb libs and it buffered the entire set when calling All() before returning. but since you're calling next instead of returning results, it can know when to grab the next page when necessary. that makes sense. i just reinvented the wheel above in my snippet. 🤦 |
@pquerna how would you write a range with an |
Could you add a simple example showing how to run a query? I ended up going with the AWS SDK for now because I couldn't figure out the proper way to set up the query using your library.
The text was updated successfully, but these errors were encountered: