I'm trying to figure out the million fanout problem for GAE using JPA. If I understand things correctly I should have the following entities for something like Twitter (just an example):
public User {
@Id Key id;
String name;
String displayName;
List<Key> subscribers; // users
}
public Tweet {
@Id Key id;
User tweetMaker;
String message;
}
public TweetIndex {
@Id Key id;
Key tweetMaker; // user
List<Key> subscribers; // users
}
When a tweet is made, the Tweet object is saved, and a TweetIndex is saved where the tweetMaker is the user making the tweet, and the subscribers is copied from the User object into the TweetIndex. Then I'd query on subscribers in TweetIndex to get the messages for a particular subscriber.
- So do have that right? Where things get fuzzy for me is I expect the subscribers to be stored into a multivalued property. Since multivalued properties can only have 5000 entries, I think the TweetIndex should be repeated for each 5000 subscriber ids.
- What controls breaking the multivalued properties into groups of 5000? Do I need manage the repeated saves in code?
- And how would I store the original list of subscribers? It seems to me that the subscriber list in the User object would also be constrained to the same 5000 limit.
Thanks for any answers/insight/suggestions!
