[google-appengine] Re: How does Scoring Documents in App Engine Search API affect price?

2019-07-22 Thread Akash Eldo
Yes but how is it billed? I can't find any documentation on billing per resource usage for the search API. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[google-appengine] How does Scoring Documents in App Engine Search API affect price?

2019-07-21 Thread Akash Eldo
In this documentation: https://cloud.google.com/appengine/docs/standard/java/search/options#sortoptions It says that using the MatchScorer for scoring documents can be expensive in billable operations. However, I don't understand how if affects billing. >From what I understand, the Search API

[google-appengine] Re: com.google.appengine.api.search.PutException: Error constructing stub for app s~hanji-bd63d

2019-01-21 Thread Akash Eldo
Hi George, I'm using Java 8, in my appengine-web.xml I have runtime set to java8. I haven't changed anything in my app engine setup since I first set it up. Here's my ContextListener code:

[google-appengine] com.google.appengine.api.search.PutException: Error constructing stub for app s~hanji-bd63d

2019-01-20 Thread Akash Eldo
Hello, I'm using the App Engine Search API to perform full text search on my Firestore database. I'm getting the following error when putting documents into the Search index: com.google.appengine.api.search.PutException: Error constructing stub for app s~hanji-bd63d I'm using a

[google-appengine] Re: Google App Engine Seach Java not working since this morning: com.google.appengine.api.search.SearchException: Error constructing stub for app

2019-01-20 Thread Akash Eldo
Hi Bruno, I've had the exact same problem. My application was working until yesterday(1/19) when I tried adding some documents to the index. I got this error: PutException: Error constructing stub for app I then tried to use my search endpoint to search documents already in the index and I

[google-appengine] Re: Why is my Search Index getting smaller?

2019-01-20 Thread Akash Eldo
. > > Note that Google Groups are reserved for general Google Cloud Platform-end > product discussions and not for reporting issues, which is why I suggested > moving the troubleshooting to Issue Tracker. > > > On Sunday, January 13, 2019 at 1:48:58 PM UTC-5, Akash Eldo wrote:

[google-appengine] Why is my Search Index getting smaller?

2019-01-13 Thread Akash Eldo
I've noticed that the size of my index gets smaller from time to time, even though I haven't removed any documents from it. For example, it's currently at 1.01 MB, but a few days ago it was around 1.5 MB. Is there some optimization going on in the background? I did use to have an endpoint on

[google-appengine] Re: When/Where to create index and add documents for Search API - Java

2018-12-29 Thread Akash Eldo
I'm using Firebase Firestore, but I think it has similar callbacks. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[google-appengine] When/Where to create index and add documents for Search API - Java

2018-12-29 Thread Akash Eldo
I'm creating a Java web server on the Google App Engine to do full text search on my database. Before I can search, I have to add all my database entries to an index. I should only have to do this once because the index is stored in persistent storage. Even if GCP creates a new instance of my

[google-appengine] When/Where to create index for Search API - Java

2018-12-29 Thread Akash Eldo
I'm creating a Java web server on the Google App Engine to do full text search on my database. Before I can search, I have to add all my database entries to an index. I should only have to do this once because the index is stored in persistent storage. Even if GCP creates a new instance of my