Is Glide suited for developing open-ended data apps?

I see developers creating open-ended data apps, like social media, messaging apps. What puzzles me is that when the app is used by thousands of users, the data alone would break 25,000 records. What then? You can’t remove/archive data to save on storage.

Consider 1000 users posting 5 records per month. In 5 months, the app will have over 25k records.

In view of this restriction, I find Glide apps only good for internal, mid-size data uses. Am I understanding this correctly?

Hey @Howard,
So the limit of 25K rows is not actually a brick wall!
You can go beyond that! Just that your loading time may increase a bit!
So yes! Its possible to create open-ended data apps but its not recommended.
Once AirTable or any other large database comes into picture, this may be easier to achieve.

1 Like

I really hope this might be the case, but if the problem lies in how many rows Glide can process then changing the database might not actually increase the rows limit.

1 Like

I will share an app soon!
I achieved a connection between Glide Apps and MySql Database with over 1 Million rows.
With pagination! It should be fine to load a lot more data than 25K rows

2 Likes

Thanks! Looking forward to it. I was struggling a lot with connecting anything more than 15k, the builder loads very slowly so it’s hard to work.

1 Like

How did you manage to use MySql Database with Glide? Is this standard?

I’d like to see it too :muscle:

The problem source is how Glide handles data, it’s not a classic Client–server model.
Glide needs to use/read its internal databases (base on Firebase) and no matter what external “database” we try to use (GS, Excel, MySQL, etc), any updated or new row (or value) must be replicated to Glide database in order to be loaded and used on our APPs.

Our data can be saved on our MySQL server but the data on our devices come from Glide databases ruled by Firebase and it’s a bottleneck unfortunately, the synchronization between both sources consumes time and resources.

On small/mid-size APPs, load all data can be a good idea but on large ones the performance and manipulation problems appear as we know. Use Pagination to load data dynamically will be the missing piece that Glide needs to implement.

Meanwhile, use a workaround like bellow to get data frequently without loading it might be an option;

Saludos

5 Likes

So baiscally the pagination is what i achieved! Yes! Improvements are needed! Will share by EOD IST!
So basically I had to recreate all the functions of add, update and delete using button and sql queries so that a large database is accessible and usable

1 Like

Pagination whwre exactly?

Yeah this is what I thought. Thanks for sharing the idea! Great read.

As promised! A few days later though!
I posted my MySQL app on the Glide Community! You can view it here!

I will study more to get that points clearly. Thank you so much for sharing that information

1 Like