Welcome
Login
Sign up
Home
Solutions
Forums
How can we help you today?
Enter your search term here...
Search
Login
or
Signup
to submit a new ticket
Check ticket status
Start a new topic
Discussions
Kinvey Forums
JavaScript
Query timeouts
a
adampax
started a topic
over 6 years ago
I started getting timeouts for all my queries, beginning around 11am central. Before that, everything was fine.
Using the titanium library v1.1.8, I get the following error:
` {"name":"RequestTimeoutError","description":"The request timed out.","debug":"timeout"}`
Example query:
~~~
var query = new Kinvey.Query();
query.fields([ 'name', 'recipeCategory' ]);
var promise = Kinvey.DataStore.find('recipes', query, {
relations : { recipeCategory: 'references' },
success: function(response) {
console.log('success: ' + response.length);
},
error: function(response){
Ti.API.error(JSON.stringify(response));
}
});
~~~
2 Comments
Oldest First
Popular
Newest First
Sorted by
Oldest First
C
Caroline
said
over 6 years ago
Hi Adam,
We're experiencing some slow-downs. Updates will be posted on the thread below. Thank you for the report!
https://support.kinvey.com/discussion/201272280/update-increased-service-latency#latest
a
adampax
said
over 6 years ago
Thanks for the update, Caroline.
Login
or
Signup
to post a comment
More topics in
JavaScript
How do I use Kinvey in my web app?
Is it safe to include keys/secrets in my client-side JavaScript app?
Why is the activeUser null even though I am logged in?
Login does not work even though credentials are valid.
Social login doesn’t work.
Appending objects to an Array (HTML5 - JS)
New to node.js - need bootstrap to downloadfiles from Kinvey
Problem with Aggregation/Grouping
Internal Server Error using Twitter Sign Up
Data Store
See all 315 topics
adampax
Using the titanium library v1.1.8, I get the following error:
` {"name":"RequestTimeoutError","description":"The request timed out.","debug":"timeout"}`
Example query:
~~~
var query = new Kinvey.Query();
query.fields([ 'name', 'recipeCategory' ]);
var promise = Kinvey.DataStore.find('recipes', query, {
relations : { recipeCategory: 'references' },
success: function(response) {
console.log('success: ' + response.length);
},
error: function(response){
Ti.API.error(JSON.stringify(response));
}
});
~~~