Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you get the document "text" from a IndexTank search result in Java?

I indexed the document in Clojure with "text" containing the content:

(. index addDocument (str id) {"text" name}))

And here's how I'm executing the query in Java:

int start = 0;
int len = 4;
int function = 0;

// empty defaults
Map<Integer, Double> vars = Maps.newHashMap();
List<CategoryFilter> facetFilters = Lists.newArrayList();
List<RangeFilter> variableRangeFilters = Lists.newArrayList();
List<RangeFilter> functionRangeFilters = Lists.newArrayList();
Map<String, String> extras = Maps.newHashMap();  // Should default to all fields

SearchResults results = api.search(query, start, len, function, vars, 
              facetFilters, variableRangeFilters, functionRangeFilters, extras);

// Why is TEXT null? 
for (SearchResult result : results.getResults()) {
    System.out.println("DOCID: " + result.getDocId());        // this works
    System.out.println("TEXT: " +  result.getField("text"));  // this is null
}   

As you can see, I've tried result.getField("text") but it returns a null value. What am I missing here?

And every time I try to explictly specify a field in extras...

Map<String, String> extras = Maps.newHashMap();
extras.put("fetch_fields", "text");

SearchResults results = api.search(q, start, len, function, vars, 
              facetFilters, variableRangeFilters, functionRangeFilters, extras);

...I get a NullPointerException...

com.flaptor.indextank.api.IndexEngineApiException: java.lang.NullPointerException
    at com.flaptor.indextank.api.IndexEngineApi.search(IndexEngineApi.java:90)
    at com.flaptor.indextank.api.resources.InstantLinks.run(InstantLinks.java:139)
    at com.ghosthack.turismo.servlet.Servlet.service(Servlet.java:55)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:538)
    at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:478)
    at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:223)
    at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:937)
    at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:406)
    at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:183)
    at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:871)
    at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:117)
    at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:110)
    at org.eclipse.jetty.server.Server.handle(Server.java:346)
    at org.eclipse.jetty.server.HttpConnection.handleRequest(HttpConnection.java:589)
    at org.eclipse.jetty.server.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:1048)
    at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:601)
    at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:214)
    at org.eclipse.jetty.server.HttpConnection.handle(HttpConnection.java:411)
    at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:535)
    at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:40)
    at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:529)
    at java.lang.Thread.run(Thread.java:722)
Caused by: java.lang.NullPointerException
    at java.io.ByteArrayInputStream.<init>(ByteArrayInputStream.java:106)
    at com.flaptor.indextank.index.storage.DocumentBinaryStorage.decompress(DocumentBinaryStorage.java:98)
    at com.flaptor.indextank.index.storage.DocumentBinaryStorage.getDocument(DocumentBinaryStorage.java:70)
    at com.flaptor.indextank.search.SnippetSearcher.search(SnippetSearcher.java:97)
    at com.flaptor.indextank.api.IndexEngineApi.search(IndexEngineApi.java:83)
    ... 22 more
share|improve this question
Can you post your full command line, and your indexengine_config file contents? If you don't have the --snippets command-line param, try adding that, see if it starts working. – Chris Lamprecht Jun 24 '12 at 1:28
Maybe that's the problem -- I'm starting it with the default options... – espeed Jun 24 '12 at 6:58
java -cp target/indextank-engine-1.0.0-jar-with-dependencies.jar com.flaptor.indextank.api.Launcher – espeed Jun 24 '12 at 7:00
1  
There is hardly any documentation other than the source code. The thrift server version is com.flaptor.indextank.index.IndexEngine in src/main, and it's designed to be called from the python front-end (part of indextank-service). – Chris Lamprecht Jun 24 '12 at 10:41
1  
The EmbeddedApi is supposed to allow you to run it standalone, without having to use indextank-service. But EmbeddedApi is still very beta (and they're welcoming updates to it) – Chris Lamprecht Jun 25 '12 at 9:59
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.