Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"error": "Index not defined, add ".indexOn"

I have created a database in Firebase which looks like:

database structure

Now I go into a REST client and issue this query:

https://movielens3.firebaseio.com/movieLens/users.json?orderBy="age"&startAt=25&print=pretty

It gives me an error:

"error": "Index not defined, add ".indexOn": "age", for path "/movieLens/users", to the rules"

So I go in the rule section and define this rule:

{
    "rules": {
        "users" : {
          ".indexOn": ["age", "gender", "occupation", "zipCode"]
        },
        ".read": true,
        ".write": true
    }
}

But I still get the same error.

like image 636
Knows Not Much Avatar asked Jan 23 '16 20:01

Knows Not Much


1 Answers

You're defining indexes for /users. There is no child node users straight under the root of your tree, so those indexes will be empty.

You're querying /movieLens/users, so that's where the index should be defined:

{
    "rules": {
        "movieLens": {
            "users" : {
                ".indexOn": ["age", "gender", "occupation", "zipCode"]
            },
            ".read": true,
            ".write": true
        }
    }
}

Update for problem in the comments:

You're storing the user's age as a string, so cannot filter them as a number. The solution is to fix your data and store it as a number.

But in the meantime this query somewhat works:

https://movielens3.firebaseio.com/movieLens/users.json?orderBy="age"&equalTo="35"

In JavaScript:

ref
  .orderByChild('age')
  .startAt('35')
  .limitToFirst(3)
  .once('value', function(s) { 
    console.log(JSON.stringify(s.val(), null, '  ')); 
  }, function(error) { 
    if(error) console.error(error); 
  })

The "somewhat" being that it does a lexical sort, not a numerical one. Fix the data for a real solution.

Note that you're also ignoring Firebase best practices by storing the data as an array. This was already causing problems for me in the REST API, which is why I dropped the print=pretty. I highly recommend that you read the Firebase programming guide for JavaScript developers from start to finish and follow the advice in there. The few hours that takes now, will prevent many hours of problems down the line.

like image 184
Frank van Puffelen Avatar answered Oct 18 '22 21:10

Frank van Puffelen