Firestore: How to get random documents in a collection

后端 未结 8 1707
旧巷少年郎
旧巷少年郎 2020-11-22 10:08

It is crucial for my application to be able to select multiple documents at random from a collection in firebase.

Since there is no native function built in to Fireb

相关标签:
8条回答
  • 2020-11-22 10:22

    For those using Angular + Firestore, building on @Dan McGrath techniques, here is the code snippet.

    Below code snippet returns 1 document.

      getDocumentRandomlyParent(): Observable<any> {
        return this.getDocumentRandomlyChild()
          .pipe(
            expand((document: any) => document === null ? this.getDocumentRandomlyChild() : EMPTY),
          );
      }
    
      getDocumentRandomlyChild(): Observable<any> {
          const random = this.afs.createId();
          return this.afs
            .collection('my_collection', ref =>
              ref
                .where('random_identifier', '>', random)
                .limit(1))
            .valueChanges()
            .pipe(
              map((documentArray: any[]) => {
                if (documentArray && documentArray.length) {
                  return documentArray[0];
                } else {
                  return null;
                }
              }),
            );
      }
    

    1) .expand() is a rxjs operation for recursion to ensure we definitely get a document from the random selection.

    2) For recursion to work as expected we need to have 2 separate functions.

    3) We use EMPTY to terminate .expand() operator.

    import { Observable, EMPTY } from 'rxjs';
    
    0 讨论(0)
  • 2020-11-22 10:27

    Using randomly generated indexes and simple queries, you can randomly select documents from a collection or collection group in Cloud Firestore.

    This answer is broken into 4 sections with different options in each section:

    1. How to generate the random indexes
    2. How to query the random indexes
    3. Selecting multiple random documents
    4. Reseeding for ongoing randomness

    How to generate the random indexes

    The basis of this answer is creating an indexed field that when ordered ascending or descending, results in all the document being randomly ordered. There are different ways to create this, so let's look at 2, starting with the most readily available.

    Auto-Id version

    If you are using the randomly generated automatic ids provided in our client libraries, you can use this same system to randomly select a document. In this case, the randomly ordered index is the document id.

    Later in our query section, the random value you generate is a new auto-id (iOS, Android, Web) and the field you query is the __name__ field, and the 'low value' mentioned later is an empty string. This is by far the easiest method to generate the random index and works regardless of the language and platform.

    By default, the document name (__name__) is only indexed ascending, and you also cannot rename an existing document short of deleting and recreating. If you need either of these, you can still use this method and just store an auto-id as an actual field called random rather than overloading the document name for this purpose.

    Random Integer version

    When you write a document, first generate a random integer in a bounded range and set it as a field called random. Depending on the number of documents you expect, you can use a different bounded range to save space or reduce the risk of collisions (which reduce the effectiveness of this technique).

    You should consider which languages you need as there will be different considerations. While Swift is easy, JavaScript notably can have a gotcha:

    • 32-bit integer: Great for small (~10K unlikely to have a collision) datasets
    • 64-bit integer: Large datasets (note: JavaScript doesn't natively support, yet)

    This will create an index with your documents randomly sorted. Later in our query section, the random value you generate will be another one of these values, and the 'low value' mentioned later will be -1.

    How to query the random indexes

    Now that you have a random index, you'll want to query it. Below we look at some simple variants to select a 1 random document, as well as options to select more than 1.

    For all these options, you'll want to generate a new random value in the same form as the indexed values you created when writing the document, denoted by the variable random below. We'll use this value to find a random spot on the index.

    Wrap-around

    Now that you have a random value, you can query for a single document:

    let postsRef = db.collection("posts")
    queryRef = postsRef.whereField("random", isGreaterThanOrEqualTo: random)
                       .order(by: "random")
                       .limit(to: 1)
    

    Check that this has returned a document. If it doesn't, query again but use the 'low value' for your random index. For example, if you did Random Integers then lowValue is 0:

    let postsRef = db.collection("posts")
    queryRef = postsRef.whereField("random", isGreaterThanOrEqualTo: lowValue)
                       .order(by: "random")
                       .limit(to: 1)
    

    As long as you have a single document, you'll be guaranteed to return at least 1 document.

    Bi-directional

    The wrap-around method is simple to implement and allows you to optimize storage with only an ascending index enabled. One downside is the possibility of values being unfairly shielded. E.g if the first 3 documents (A,B,C) out of 10K have random index values of A:409496, B:436496, C:818992, then A and C have just less than 1/10K chance of being selected, whereas B is effectively shielded by the proximity of A and only roughly a 1/160K chance.

    Rather than querying in a single direction and wrapping around if a value is not found, you can instead randomly select between >= and <=, which reduces the probability of unfairly shielded values by half, at the cost of double the index storage.

    If one direction returns no results, switch to the other direction:

    queryRef = postsRef.whereField("random", isLessThanOrEqualTo: random)
                       .order(by: "random", descending: true)
                       .limit(to: 1)
    
    queryRef = postsRef.whereField("random", isGreaterThanOrEqualTo: random)
                       .order(by: "random")
                       .limit(to: 1)
    

    Selecting multiple random documents

    Often, you'll want to select more than 1 random document at a time. There are 2 different ways to adjust the above techniques depending on what trade offs you want.

    Rinse & Repeat

    This method is straight forward. Simply repeat the process, including selecting a new random integer each time.

    This method will give you random sequences of documents without worrying about seeing the same patterns repeatedly.

    The trade-off is it will be slower than the next method since it requires a separate round trip to the service for each document.

    Keep it coming

    In this approach, simply increase the number in the limit to the desired documents. It's a little more complex as you might return 0..limit documents in the call. You'll then need to get the missing documents in the same manner, but with the limit reduced to only the difference. If you know there are more documents in total than the number you are asking for, you can optimize by ignoring the edge case of never getting back enough documents on the second call (but not the first).

    The trade-off with this solution is in repeated sequences. While the documents are randomly ordered, if you ever end up overlapping ranges you'll see the same pattern you saw before. There are ways to mitigate this concern discussed in the next section on reseeding.

    This approach is faster than 'Rinse & Repeat' as you'll be requesting all the documents in the best case a single call or worst case 2 calls.

    Reseeding for ongoing randomness

    While this method gives you documents randomly if the document set is static the probability of each document being returned will be static as well. This is a problem as some values might have unfairly low or high probabilities based on the initial random values they got. In many use cases, this is fine but in some, you may want to increase the long term randomness to have a more uniform chance of returning any 1 document.

    Note that inserted documents will end up weaved in-between, gradually changing the probabilities, as will deleting documents. If the insert/delete rate is too small given the number of documents, there are a few strategies addressing this.

    Multi-Random

    Rather than worrying out reseeding, you can always create multiple random indexes per document, then randomly select one of those indexes each time. For example, have the field random be a map with subfields 1 to 3:

    {'random': {'1': 32456, '2':3904515723, '3': 766958445}}
    

    Now you'll be querying against random.1, random.2, random.3 randomly, creating a greater spread of randomness. This essentially trades increased storage to save increased compute (document writes) of having to reseed.

    Reseed on writes

    Any time you update a document, re-generate the random value(s) of the random field. This will move the document around in the random index.

    Reseed on reads

    If the random values generated are not uniformly distributed (they're random, so this is expected), then the same document might be picked a dispropriate amount of the time. This is easily counteracted by updating the randomly selected document with new random values after it is read.

    Since writes are more expensive and can hotspot, you can elect to only update on read a subset of the time (e.g, if random(0,100) === 0) update;).

    0 讨论(0)
  • 2020-11-22 10:29

    Posting this to help anyone that has this problem in the future.

    If you are using Auto IDs you can generate a new Auto ID and query for the closest Auto ID as mentioned in Dan McGrath's Answer.

    I recently created a random quote api and needed to get random quotes from a firestore collection.
    This is how I solved that problem:

    var db = admin.firestore();
    var quotes = db.collection("quotes");
    
    var key = quotes.doc().id;
    
    quotes.where(admin.firestore.FieldPath.documentId(), '>=', key).limit(1).get()
    .then(snapshot => {
        if(snapshot.size > 0) {
            snapshot.forEach(doc => {
                console.log(doc.id, '=>', doc.data());
            });
        }
        else {
            var quote = quotes.where(admin.firestore.FieldPath.documentId(), '<', key).limit(1).get()
            .then(snapshot => {
                snapshot.forEach(doc => {
                    console.log(doc.id, '=>', doc.data());
                });
            })
            .catch(err => {
                console.log('Error getting documents', err);
            });
        }
    })
    .catch(err => {
        console.log('Error getting documents', err);
    });
    

    The key to the query is this:

    .where(admin.firestore.FieldPath.documentId(), '>', key)
    

    And calling it again with the operation reversed if no documents are found.

    I hope this helps!
    If interested, you can find this specific part of my API on GitHub

    0 讨论(0)
  • 2020-11-22 10:37

    Unlike rtdb, firestore ids are not ordered chronologically. So using Auto-Id version described by Dan McGrath is easily implemented if you use the auto-generated id by the firestore client.

          new Promise<Timeline | undefined>(async (resolve, reject) => {
            try {
              let randomTimeline: Timeline | undefined;
              let maxCounter = 5;
              do {
                const randomId = this.afs.createId(); // AngularFirestore
                const direction = getRandomIntInclusive(1, 10) <= 5;
                // The firestore id is saved with your model as an "id" property.
                let list = await this.list(ref => ref
                  .where('id', direction ? '>=' : '<=', randomId)
                  .orderBy('id', direction ? 'asc' : 'desc')
                  .limit(10)
                ).pipe(take(1)).toPromise();
                // app specific filtering
                list = list.filter(x => notThisId !== x.id && x.mediaCounter > 5);
                if (list.length) {
                  randomTimeline = list[getRandomIntInclusive(0, list.length - 1)];
                }
              } while (!randomTimeline && maxCounter-- >= 0);
              resolve(randomTimeline);
            } catch (err) {
              reject(err);
            }
          })
    
    0 讨论(0)
  • 2020-11-22 10:40

    Ok I will post answer to this question even thou I am doing this for Android. Whenever i create a new document i initiate random number and set it to random field, so my document looks like

    "field1" : "value1"
    "field2" : "value2"
    ...
    "random" : 13442 //this is the random number i generated upon creating document
    

    When I query for random document I generate random number in same range that I used when creating document.

    private val firestore: FirebaseFirestore = FirebaseFirestore.getInstance()
    private var usersReference = firestore.collection("users")
    
    val rnds = (0..20001).random()
    
    usersReference.whereGreaterThanOrEqualTo("random",rnds).limit(1).get().addOnSuccessListener {
      if (it.size() > 0) {
              for (doc in it) {
                   Log.d("found", doc.toString())
               }
    } else {
        usersReference.whereLessThan("random", rnds).limit(1).get().addOnSuccessListener {
              for (doc in it) {
                      Log.d("found", doc.toString())
               }
            }
    }
    }
    
    0 讨论(0)
  • 2020-11-22 10:40

    The other solutions are better but seems hard for me to understand, so I came up with another method

    1. Use incremental number as ID like 1,2,3,4,5,6,7,8,9, watch out for delete documents else we have an I'd that is missing

    2. Get total number of documents in the collection, something like this, I don't know of a better solution than this

       let totalDoc = db.collection("stat").get().then(snap=>snap.size)
      
    3. Now that we have these, create an empty array to store random list of number, let's say we want 20 random documents.

       let  randomID = [ ]
      
       while(randomID.length < 20) {
           const randNo = Math.floor(Math.random() * totalDoc) + 1;
           if(randomID.indexOf(randNo) === -1) randomID.push(randNo);
       }
      

      now we have our 20 random documents id

    4. finally we fetch our data from fire store, and save to randomDocs array by mapping through the randomID array

       const  randomDocs =  randomID.map(id => {
           db.collection("posts").doc(id).get()
               .then(doc =>  {
                    if (doc.exists) return doc.data()
                })
               .catch(error => {
                    console.log("Error getting document:", error);
               });
         })
      

    I'm new to firebase, but I think with this answers we can get something better or a built-in query from firebase soon

    0 讨论(0)
提交回复
热议问题