Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

  1. 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.
  2. What controls breaking the multivalued properties into groups of 5000? Do I need manage the repeated saves in code?
  3. 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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.