An internal trouble ticket with ID 698D4D1C-EC4A-88C8-FF0F-39618E533200

Greetings backendless,
The subject trouble was raised during one of my test runs to the server.
Error is on the Data Tables, Data Browser Tab.
I was trying to add some dummy data like so

@Override
protected Void doInBackground(BackendlessUser... params) {
IDataStore<BackendlessUser> dataStore = Backendless.Data.of(BackendlessUser.class);
for (int i = 0; i < 69; i++) {
BackendlessUser user = new BackendlessUser();
GeoPoint firstLocation = new GeoPoint(10.211111 + i, -76.188888 + i);
user.setProperty("firstName", "Koffi " + i);
user.setProperty("name", "Koffi Annan" + i);
user.setEmail("annan" + i + "@yahoo.com");
user.setPassword("1234");
user.setProperty("profilePicUrl", "[url=https://api.backendless.com/7697e5e6-1532-54f6-ff75-d6616ec66900/v1/files/xyz.cellusoft.Pendomedia/xyz.cellusoft.Pendo.1752172348398225.profile_pic.png]https://api.backendless.com/7697e5e6-1532-54f6-ff75-d6616ec66900/v1/files/xyz.cellusoft.Pendomedia/xyz.cellusoft.Pendo.1752172348398225.profile_pic.png"[/url];);
user.setProperty("gender", "Maeale");
user.setProperty("location", firstLocation);
user = dataStore.save(user);
Log.d(TAG, "Added 300 users detals " + user.getObjectId());
}
return null;
}

My Users table had 9 objects prior, this increased to 12 before the crash.

I previously used it succesfully in 3.0.
Can this be resolved?
I need to take up a developer billing plan as i am getting a warning that i have exceeded my data table limit. Did you just review the billing plans starting with the free one?

Regards,
George

Hi George,

Do you still receive an error?

The billing plans and limits are described here: https://backendless.com/pricing/backendless-cloud-pricing/ (the information hasn’t changed for the last few months).