Reputation: 1988
Need to figure out if Endeca can support Federated Search. Note that this search isn't across mulitple Endeca indices but also against various vendor search. e.g. Microsoft FAST, SOLR etc. Does Endeca have support to create a plugin or something which can go against outside Endeca indices and combine the results etc?
Upvotes: 1
Views: 538
Reputation: 5544
Endeca does not support Federated Search (at least not at this point in time). Endeca does support loading huge amounts of data into it's index and then allow for semi-realtime updates to that data.
So basically to perform the same task as a federated search you would do a few things:
With that setup you are able to return information from multiple systems, but those systems aren't queried real-time when a search is performed.
EDIT: This is not true as of July 2012. A main part of Endeca release at this point was the so called Endeca Assempler or Assembler API, which lets you define external systems, that are being queried at run time and returned in one request. For a programmer it is very transparent. You send a request to the Endeca engine and it will return an object containing results from all federated engines as well. It can return the data in various formats, Java, POJO, XML, JSON and some more.
Upvotes: 2