json - Firebase error: Data requested exceeds the maximum size that can be accessed with a single request -
i need export firabase database json via firebase console, when following message in json file:
data requested exceeds maximum size can accessed single request
how can fix this?
additional details:
this function use in console:
edit:
i found question tried access "too big" data firebase client. presume 2 related (firebase limit). have expected firebase console ui provide error message when exporting , ask user whether or not split export in multiple files. believe ux bug in json export functionality of firebase console (should greyed out if not possible export or should allow user tune file size).
the firebase console has limits on size of data allows export. export link should indeed disabled when you're displaying location big export through console.
if database under 256mb, can export curl request:
curl "https://yours.firebaseio.com//.json?print=pretty&auth=credential"
see documentation on rest api.
if doesn't work, you'll have download data in chunks. tool might helpful is: https://github.com/alexklibisz/firebak
see also:
Comments
Post a Comment