Sarthak Nandi

Results 11 comments of Sarthak Nandi

Hi Prakesh, I'm not super-familiar with Lambda but will try to answer your questions. We have a generated grpc-gateway in the repo that can be used to send requests over...

Hi @prakeshdp , Right now it is not possible to load index updates from S3 after the replica has started. The replica needs to talk to a primary for that....

Putting down the points discussed with @umeshdangat here: 1. This is needed when creating new indices or updating current indices only. When creating a new index on a new cluster...

From your link: ``` Register transcoding in server startup code by adding AddJsonTranscoding. For example, services.AddGrpc().AddJsonTranscoding(). ``` It appears that this transcoding needs to be supported in the server, which...

I am not familiar with .net but it appears that you are sending an http request instead of grpc. You can try using the lucene-client which sends grpc requests (examples...

@Jeevananthan-23 1. I see it's supported starting Lucene 8.6, so we would have to wait until we update Lucene on Nrtsearch 2. You can check the code under [ReplicationServerImpl](https://github.com/Yelp/nrtsearch/blob/master/src/main/java/com/yelp/nrtsearch/server/grpc/LuceneServer.java#L1832) 3....

More detailed steps to reproduce: 1. Delete all state, index and archiver directories 2. Start JVM with `restoreState: true` For primary: 3. Start index without restore - fails with index...

Searching over multiple indices is not supported right now, is this a feature you need?

This can be a complicated change since our current SearchHandler assumes only one index. There might be hackier ways to do this support this quickly but we would still have...