Unable to modify/add/delete records directly on the app dashboard data

2,599 views
Skip to first unread message

A Bhatia

unread,
Nov 25, 2015, 10:31:09 AM11/25/15
to Firebase Google Group
I have an application with multiple records. In my firebase app dashboard -> data - I am getting following message within a box "Due to the number of records being displayed at this location, the data viewer is in read-only/non-realtime mode to increase browser performance. Click on a key with fewer records to see a realtime view."

I want to delete/edit few records directly from dashboard but it wouldn't let me. How can I resolve this issue?

Michael Lehenbauer

unread,
Nov 25, 2015, 12:40:07 PM11/25/15
to Firebase Google Group
Can you click on the record (taking you to a data viewer page just for that record) and then edit/delete it?  Or is it still too large?

If it's still too large, you may need to make the edit using one of our APIs, e.g. open the JS console and type:


Best regards,
-Michael

On Wed, Nov 25, 2015 at 2:41 AM, A Bhatia <abhilasha...@gmail.com> wrote:
I have an application with multiple records. In my firebase app dashboard -> data - I am getting following message within a box "Due to the number of records being displayed at this location, the data viewer is in read-only/non-realtime mode to increase browser performance. Click on a key with fewer records to see a realtime view."

I want to delete/edit few records directly from dashboard but it wouldn't let me. How can I resolve this issue?

--
You received this message because you are subscribed to the Google Groups "Firebase Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to firebase-tal...@googlegroups.com.
To post to this group, send email to fireba...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/178ba78a-542e-431b-ad32-bb27048eb81c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Kato Richardson

unread,
Nov 25, 2015, 12:52:05 PM11/25/15
to Firebase Google Group
Here is a strategy for incremental deletes that may help peeps with extremely big data sets (GB's of data and millions of nodes).

Jay

unread,
Dec 13, 2015, 11:04:12 AM12/13/15
to Firebase Google Group
I just ran into this issue as well - dumped 8000 records to Firebase while testing some code and it was incorrectly formatted.

I then needed to delete it all. Using the dashboard would be super-convenient (yes, I can do it from code but just sayin).

A suggestion: Enhance the dashboard to have 'pages' that have a limit to say.. 100 rows of data and allow users to navigate their data in that fashion? If the page is at it's limit then when a user drills down into a node, have it open in another tab or window?


Zack Tinga

unread,
Aug 3, 2017, 11:10:40 AM8/3/17
to Firebase Google Group
What I did was to remove all values from the node using an OnClickListener in android: 
mCart.setOnClickListener(new View.OnClickListener() {
   
@Override
    public void onClick(View view) {
       
       
mDatabaseReference.removeValue();
       
   
}
});
Reply all
Reply to author
Forward
0 new messages