Questions tagged [usergrid]

Apache Usergrid is a Backend-as-a-Service (“BaaS”) built on Cassandra, and accessible via a REST API. Any app can store data in Usergrid. There's an SQL-like syntax for running queries, with full property indexing, full-text search, and geolocation search.

Apache Usergrid is an open-source project implementing a NoSQL Backend-as-a-Service (“BaaS” or “mBaaS”) that can be used in any app to store any structured data. The store is built on Cassandra, and it offers several ways for apps to connect: a REST API, and a number of client-side libraries for JavaScript, Objective-C, and so on.

For administering the system, there's an admin portal that enables developers to rapidly build and manage web and/or mobile applications.

Usergrid provides the most common services required for building apps, such as user registration & management, data storage, file storage, roles, and permissions, and features SQL-like syntax for running queries, with full property indexing, full-text search, and geolocation search.

Project Homepage
http://usergrid.apache.org/

107 questions
0
votes
1 answer

Try to run Usergrid from command-line from jar get NoClassDefFoundError

I have succesfully finished building the Usergrid. But when I try to run Usergrid from command-line from jar file I got this error: launcher git:(master) java -jar target/usergrid-launcher-*.jar Exception in thread "main"…
yong ho
  • 3,892
  • 9
  • 40
  • 81
0
votes
1 answer

Can't connect user to entity in Apigee Usergrid

When using the IOS API, I'm making a call to connect via the ApigeeDataClient connectEntities method. I pass in the type "users", then the user's uuid, then connectionType "likes", with the connectee type of "songs" and the song's…
Peter Hale
  • 119
  • 4
0
votes
1 answer

Usergrid collection Last In First Out

The default behavior for usergrid collection seems to be the entities that were added first are retrieved first when doing a GET. Can I have the entities retrieved in the reverse order, i.e. the entities added last are retrieved first. I know I can…
nilesh
  • 35
  • 3
0
votes
1 answer

Error getting /pets: null for uri

I encountered this issue when trying to insert the following JSON to pets collection from the admin portal. { "name": "Piranha", "species": "Fish", "place": "Amazon River" } Error message: error getting /pets: null for uri:…
Mark Lauda Lauw
  • 261
  • 2
  • 10
0
votes
1 answer

Apigee exclude enities

I'm planning to move into Apigee/Usergrid. Current solution doesn't work best (performance) so scalability is main reason I'm thinking about Apigee/Usergrid. Currently we allow users to ignore some content (feed entries). It works similar to what…
webit
  • 99
  • 2
  • 10
0
votes
1 answer

Usergrid fulltext search

I am using APIGEE (apigee.com ) usergrid js lib and I am new in this technology I have make function for search record 'full text search' below is my code brands.setQueryParams({"ql":"select * where brand contains '"+searchItem+"' " ,…
Ignis
  • 126
  • 4
0
votes
1 answer

access token and client id/api key relationship

I generated an access token using client id(apikey)_1 and client secret_1. Now i am using that access token generated above with a GET resource call and pass api key2. And its working. . But i want restrict this that only the api key1 which…
innocent
  • 63
  • 8
0
votes
1 answer

Auto logout after 30 min

I am new in apigee. I am using below function for a login in application: client.login(username, password, function (err) { if (err) { alert('Invalid username or password.'); $(".ajax_loader").hide(); …
Vipin
  • 111
  • 1
  • 10
0
votes
1 answer

Usergrid: Queries not accepted in GET requests

Using Postman when I issue a get request to my Usergrid backend I get a response back. For example: When I run: https://api.usergrid.com/gss/sandbox/summaries I get a response: { "action": "get", "application":…
user2825273
  • 565
  • 1
  • 4
  • 9
0
votes
3 answers

Usergrid: Unable to Login to local Usergrid

I setup Usergrid on my local machine, however even after modifying the 'usergrid-default.properties' file and adding: # SysAdmin login usergrid.sysadmin.login.name=superuser …
user2825273
  • 565
  • 1
  • 4
  • 9
0
votes
1 answer

Errors when getting started with Usergrid

Im looking to get started with Usergrid, and am following the steps on https://github.com/apache/incubator-usergrid/tree/master/stack I get to the point of launching the gui launcher. However I cannot get the webpage to load by going to…
Magick
  • 4,603
  • 22
  • 66
  • 103
0
votes
1 answer

Usergrid: How to delete add on Metadata from Usergrid entities

I created an entity on usergrid but I find that usergrid tacks on additional data in the JSON, that I really don't want appearing in the API layer. For example here is my entity: { **"uuid": "7cd5c98a-7b16-11e4-9085-b5397738dcd5", "type":…
user2825273
  • 565
  • 1
  • 4
  • 9
0
votes
2 answers

Node.js:Unable to invoke pipe function

I am trying out a simple program to invoke a call to a backend & get the response back, here is my node.js code: 'use strict'; var util = require('util'); var http = require('http'); var request = require('request'); var stream =…
user2825273
  • 565
  • 1
  • 4
  • 9
0
votes
0 answers

Usergrid: Accessing a resource in Usergrid

I am running usergrid on my local, I am trying to access an entity I just created, however I seem to having issues inspite of confirming to what is specified in the documentation: The entity I created is:…
user2825273
  • 565
  • 1
  • 4
  • 9
0
votes
1 answer

Apigee Usergrid: Does usergrid allow subcollections?

I understand that in usergrid UI I can create an Individual collection , but it does not allow me to create a collection under a collection. Is there a way of doing that . Otherwise we will be forced to write business logic in the proxy layer which…
user2825273
  • 565
  • 1
  • 4
  • 9