# Autocomplete with ES (newbie)

**URL:** https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393
**Category:** Elasticsearch
**Created:** [October 17, 2012, 2:50pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393 "2012-10-17T14:50:31Z")
**Posts on this page:** 15
**Page:** 1

<div class="post-metadata">

### Author: ![antoine\_philippe\_cha](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/antoine_philippe_cha/32/2325_2.png) [@antoine\_philippe\_cha](https://discuss.elastic.co/u/antoine_philippe_cha)
#### Post date: [October 17, 2012, 2:50pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/1 "2012-10-17T14:50:31Z")

</div>

Hi,

I have an autocomplete system in my application that works fine with ES.  
It exposes all search results via REST service written in Java with Spring  
MVC.  
So I'm using TransportClient to fetch my data stored on my local machine  
and  
I'm running ES with this config :  
index.number\_of\_shards: 1  
index.number\_of\_replicas: 0  
BUT what I'm not understanding is why each time the autocomplete service is  
called,  
(when someone type a letter)  
there is a new node that is created with a new name ?  
Is this the normal behavior of ES ?

Thx

--

---

<div class="post-metadata">

### Author: ![Rafal\_Kuc\_3](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/rafal_kuc_3/32/799_2.png) [@Rafal\_Kuc\_3](https://discuss.elastic.co/u/Rafal_Kuc_3)
#### Post date: [October 17, 2012, 2:53pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/2 "2012-10-17T14:53:24Z")

</div>

Hello!

Do you reuse a single instance of TransportClient or create a new one with each call ?

_--_

Regards,

Rafał Kuć

Sematext :: [http://sematext.com/](http://sematext.com/) _:: Solr - Lucene - Nutch - ElasticSearch_

Hi,

I have an autocomplete system in my application that works fine with ES.

It exposes all search results via REST service written in Java with Spring MVC.

So I'm using TransportClient to fetch my data stored on my local machine and

I'm running ES with this config :

```
 index.number_of_shards: 1

 index.number_of_replicas: 0

```

BUT what I'm not understanding is why each time the autocomplete service is called,

(when someone type a letter)

there is a new node that is created with a new name ?

Is this the normal behavior of ES ?

Thx

--

---

<div class="post-metadata">

### Author: ![antoine\_philippe\_cha](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/antoine_philippe_cha/32/2325_2.png) [@antoine\_philippe\_cha](https://discuss.elastic.co/u/antoine_philippe_cha)
#### Post date: [October 17, 2012, 3:03pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/3 "2012-10-17T15:03:40Z")

</div>

> Now I create a new one with each call.

So I'll try to reuse a single instance !  
I'll let u know how it is.

--

---

<div class="post-metadata">

### Author: ![antoine\_philippe\_cha](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/antoine_philippe_cha/32/2325_2.png) [@antoine\_philippe\_cha](https://discuss.elastic.co/u/antoine_philippe_cha)
#### Post date: [October 17, 2012, 3:25pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/4 "2012-10-17T15:25:54Z")

</div>

I try now to reuse a single instance but it raises a No Node available  
Exception

--

---

<div class="post-metadata">

### Author: ![Rafal\_Kuc\_3](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/rafal_kuc_3/32/799_2.png) [@Rafal\_Kuc\_3](https://discuss.elastic.co/u/Rafal_Kuc_3)
#### Post date: [October 17, 2012, 3:32pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/5 "2012-10-17T15:32:51Z")

</div>

Hello!

Do you have ElasticSearch running ? Try sending a single query to it to see if it responds.

_--_

Regards,

Rafał Kuć

Sematext :: [http://sematext.com/](http://sematext.com/) _:: Solr - Lucene - Nutch - ElasticSearch_

I try now to reuse a single instance but it raises a No Node available Exception

--

---

<div class="post-metadata">

### Author: ![antoine\_philippe\_cha](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/antoine_philippe_cha/32/2325_2.png) [@antoine\_philippe\_cha](https://discuss.elastic.co/u/antoine_philippe_cha)
#### Post date: [October 17, 2012, 3:51pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/6 "2012-10-17T15:51:28Z")

</div>

My ES instance is running (0.19.10): I have done :  
[http://localhost:9200/\_cluster/nodes/\_local](http://localhost:9200/_cluster/nodes/_local)  
and I get this response :

{

- ok: true,
- cluster\_name: "elasticsearch",
- nodes:  
{
  - 7k5aeHwoSd6LHv2erbcJCg:  
{
    - name: "Marko, Cain",
    - transport\_address: "inet[/10.0.2.113:9300]",
    - hostname: "MOE005X",
    - http\_address: "inet[/10.0.2.113:9200]"  
}  
}

}

Here is how I set my TransportClient :

private Client client; public ElasticSearchController() { super();  
initESClient(); } public void initESClient(){ Settings settings =  
ImmutableSettings.settingsBuilder() .put("client.transport.sniff", true) .  
put("client.transport.ignore\_cluster\_name", true) .build(); client = new  
TransportClient(settings).addTransportAddress(new InetSocketTransportAddress  
(ES\_INET.getValue(), 9300)); }

Then I just call the client object in the others methods like this :

QueryBuilder qb = QueryBuilders.queryString("_" + term.toLowerCase() + "_")  
.useDisMax(true)  
.defaultOperator(QueryStringQueryBuilder.Operator.AND)  
.field("firstname")  
.field("lastname")  
.field("zip")  
.field("city");  
SearchResponse response = client.prepareSearch("peopledb")  
.setSearchType(SearchType.DFS\_QUERY\_THEN\_FETCH)  
.setQuery(qb)  
.setFrom(0)  
.setSize(10)  
.setExplain(true)  
.execute()  
.actionGet();

Maybe I have missed something ?

--

---

<div class="post-metadata">

### Author: ![Rafal\_Kuc\_3](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/rafal_kuc_3/32/799_2.png) [@Rafal\_Kuc\_3](https://discuss.elastic.co/u/Rafal_Kuc_3)
#### Post date: [October 17, 2012, 3:55pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/7 "2012-10-17T15:55:20Z")

</div>

Hello!

Try running [http://localhost:9200/\_cluster/health](http://localhost:9200/_cluster/nodes/_local) and please share the result.

And one more thing - what is TransportClient saying when connecting to your cluster ?

_--_

Regards,

Rafał Kuć

Sematext :: [http://sematext.com/](http://sematext.com/) _:: Solr - Lucene - Nutch - ElasticSearch_

My ES instance is running (0.19.10): I have done : [http://localhost:9200/\_cluster/nodes/\_local](http://localhost:9200/_cluster/nodes/_local)

and I get this response :

{

- 

**ok** : true,
- 

**cluster\_name** : "elasticsearch",
- 

**nodes** : 

{

- 

**7k5aeHwoSd6LHv2erbcJCg** : 

{

- 

**name** : "Marko, Cain",
- 

**transport\_address** : "inet[/10.0.2.113:9300]",
- 

**hostname** : "MOE005X",
- 

**http\_address** : "inet[/10.0.2.113:9200]"

}

}

}

Here is how I set my TransportClient :

private Client client;

public ElasticSearchController() {

super();

initESClient();

}

public void initESClient(){

Settings settings = ImmutableSettings.settingsBuilder()

```
.put("client.transport.sniff", true)

.put("client.transport.ignore_cluster_name", true)

.build();

```

client = new TransportClient(settings).addTransportAddress(new InetSocketTransportAddress(ES\_INET.getValue(), 9300));

}

Then I just call the client object in the others methods like this :

QueryBuilder qb = QueryBuilders.queryString("_" + term.toLowerCase() + "_")

```
       .useDisMax(true)

                   .defaultOperator(QueryStringQueryBuilder.Operator.AND)    

                   .field("firstname")

                   .field("lastname")

                   .field("zip")

                   .field("city");

```

SearchResponse response = client.prepareSearch("peopledb")

```
       .setSearchType(SearchType.DFS_QUERY_THEN_FETCH)

       .setQuery(qb)

       .setFrom(0)

       .setSize(10)

       .setExplain(true)

       .execute()

       .actionGet();

```

Maybe I have missed something ?

--

---

<div class="post-metadata">

### Author: ![antoine\_philippe\_cha](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/antoine_philippe_cha/32/2325_2.png) [@antoine\_philippe\_cha](https://discuss.elastic.co/u/antoine_philippe_cha)
#### Post date: [October 17, 2012, 4:12pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/8 "2012-10-17T16:12:27Z")

</div>

Result of [http://localhost:9200/\_cluster/health](http://localhost:9200/_cluster/health)[http://localhost:9200/\_cluster/nodes/\_local](http://localhost:9200/_cluster/nodes/_local)  
:  
{

- cluster\_name: "elasticsearch",
- status: "green",
- timed\_out: false,
- number\_of\_nodes: 1,
- number\_of\_data\_nodes: 1,
- active\_primary\_shards: 2,
- active\_shards: 2,
- relocating\_shards: 0,
- initializing\_shards: 0,
- unassigned\_shards: 0

}

Here the log from TransportClient :

2012-10-17 16:12:10,355 [elasticsearch[Carolyn Parmenter][generic][T#3]]  
INFO org.elasticsearch.client.transport - [Carolyn Parmenter] failed to  
get local cluster state for [#transport#-1][inet[/10.0.2.113:9200]],  
disconnecting...  
org.elasticsearch.transport.ReceiveTimeoutTransportException: [][inet[  
/10.0.2.113:9200]][cluster/state] request\_id [24] timed out after [5001ms]  
at org.elasticsearch.transport.TransportService$TimeoutHandler.run(  
TransportService.java:347)  
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(  
ThreadPoolExecutor.java:886)  
at java.util.concurrent.ThreadPoolExecutor$Worker.run(  
ThreadPoolExecutor.java:908)  
at java.lang.Thread.run(Thread.java:662)

Here the log from the ES console :

[2012-10-17 16:07:23,401][INFO][node] [Charcoal] {0.19.10}[8732]:  
initializing ... [2012-10-17 16:07:23,411][INFO][plugins] [Charcoal]  
loaded [], sites [] [2012-10-17 16:07:27,726][INFO][node] [Charcoal]  
{0.19.10}[8732]: initialized [2012-10-17 16:07:27,727][INFO][node]  
[Charcoal] {0.19.10}[8732]: starting ... [2012-10-17 16:07:28,006][INFO][transport  
] [Charcoal] bound\_address {inet[/0.0.0.0:9300]}, publish\_address {inet[/10.0.2.113:9300]}  
[2012-10-17 16:07:31,224][INFO][cluster.service] [Charcoal] new\_master  
[Charcoal][U6xpMVUERYmc0s0ZZahXCw][inet[/10.0.2.113:9300]], reason: zen-disco-join  
(elected\_as\_master) [2012-10-17 16:07:31,272][INFO][discovery] [Charcoal]  
elasticsearch/U6xpMVUERYmc0s0ZZahXCw [2012-10-17 16:07:31,422][INFO][http  
] [Charcoal] bound\_address {inet[/0.0.0.0:9200]}, publish\_address {inet[/10.0.2.113:9200]}  
[2012-10-17 16:07:31,423][INFO][node] [Charcoal] {0.19.10}[8732]: started  
[2012-10-17 16:07:32,590][INFO][gateway] [Charcoal] recovered [2] indices  
into cluster\_state [2012-10-17 16:09:50,263][WARN][http.netty] [Charcoal]  
Caught exception while handling client http traffic, closing connection  
[id: 0x7e2b5f3a, /10.0 .2.113:53013 =\> /10.0.2.113:9200] java.lang.IllegalArgumentException:  
empty text atorg.elasticsearch.common.netty.handler.codec.http.HttpVersion.\<  
init\>(HttpVersion.java:97) atorg.elasticsearch.common.netty.handler.codec.http.HttpVersion.valueOf(HttpVersion.java:62)  
atorg.elasticsearch.common.netty.handler.codec.http.HttpRequestDecoder.createMessage(HttpRequestDecoder.java:76)  
atorg.elasticsearch.common.netty.handler.codec.http.HttpMessageDecoder.decode(HttpMessageDecoder.java:189)  
atorg.elasticsearch.common.netty.handler.codec.http.HttpMessageDecoder.decode(HttpMessageDecoder.java:101)  
atorg.elasticsearch.common.netty.handler.codec.replay.ReplayingDecoder.callDecode(ReplayingDecoder.java:502)  
atorg.elasticsearch.common.netty.handler.codec.replay.ReplayingDecoder.messageReceived(ReplayingDecoder.java:437)  
atorg.elasticsearch.common.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:75)  
at  
org.elasticsearch.common.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:565)  
at  
org.elasticsearch.common.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream(DefaultChannelPipeline.java:793)  
at  
org.elasticsearch.common.netty.OpenChannelsHandler.handleUpstream(OpenChannelsHandler.java:74)  
at  
org.elasticsearch.common.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:565)  
at  
org.elasticsearch.common.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:560)  
at  
org.elasticsearch.common.netty.channel.Channels.fireMessageReceived(Channels.java:268)  
at  
org.elasticsearch.common.netty.channel.Channels.fireMessageReceived(Channels.java:255)  
at  
org.elasticsearch.common.netty.channel.socket.nio.NioWorker.read(NioWorker.java:84)  
at  
org.elasticsearch.common.netty.channel.socket.nio.AbstractNioWorker.processSelectedKeys(AbstractNioWorker.java:471)  
at  
org.elasticsearch.common.netty.channel.socket.nio.AbstractNioWorker.run(AbstractNioWorker.java:332)  
at  
org.elasticsearch.common.netty.channel.socket.nio.NioWorker.run(NioWorker.java:35)  
at  
org.elasticsearch.common.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:102)  
at  
org.elasticsearch.common.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:42)  
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(  
ThreadPoolExecutor.java:886) at java.util.concurrent.  
ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.  
Thread.run(Thread.java:662) [2012-10-17 16:09:50,268][WARN][http.netty]  
[Charcoal] Caught exception while handling client http traffic, closing  
connection [id: 0x7e2b5f3a, /10.0 .2.113:53013 :\> /10.0.2.113:9200] java.  
lang.IllegalArgumentException: empty text

--

---

<div class="post-metadata">

### Author: ![Rafal\_Kuc\_3](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/rafal_kuc_3/32/799_2.png) [@Rafal\_Kuc\_3](https://discuss.elastic.co/u/Rafal_Kuc_3)
#### Post date: [October 17, 2012, 4:15pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/9 "2012-10-17T16:15:34Z")

</div>

Hello!

As you can see there is an error when TransportClient tries to connect to your cluster. Do you use 0.19.10 version of ES library in your application ?

_--_

Regards,

Rafał Kuć

Sematext :: [http://sematext.com/](http://sematext.com/) _:: Solr - Lucene - Nutch - ElasticSearch_

Result of [http://localhost:9200/](http://localhost:9200/_cluster/nodes/_local)[\_cluster/health](http://localhost:9200/_cluster/nodes/_local) :

{

- 

**cluster\_name** : "elasticsearch",
- 

**status** : "green",
- 

**timed\_out** : false,
- 

**number\_of\_nodes** : 1,
- 

**number\_of\_data\_nodes** : 1,
- 

**active\_primary\_shards** : 2,
- 

**active\_shards** : 2,
- 

**relocating\_shards** : 0,
- 

**initializing\_shards** : 0,
- 

**unassigned\_shards** : 0

}

Here the log from TransportClient :

2012-10-17 16:12:10,355 [elasticsearch[Carolyn Parmenter][generic][T#3]] INFO org.elasticsearch.client.transport - [Carolyn Parmenter] failed to get local cluster state for [#transport#-1][inet[/10.0.2.113:9200]], disconnecting...

org.elasticsearch.transport.ReceiveTimeoutTransportException: [][inet[/10.0.2.113:9200]][cluster/state] request\_id [24] timed out after [5001ms]

at org.elasticsearch.transport.TransportService$TimeoutHandler.run(TransportService.java:347)

at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)

at java.lang.Thread.run(Thread.java:662)

Here the log from the ES console :

[2012-10-17 16:07:23,401][INFO][node] [Charcoal] {0.19.10}[8732]: initializing ...

[2012-10-17 16:07:23,411][INFO][plugins] [Charcoal] loaded [], sites []

[2012-10-17 16:07:27,726][INFO][node] [Charcoal] {0.19.10}[8732]: initialized

[2012-10-17 16:07:27,727][INFO][node] [Charcoal] {0.19.10}[8732]: starting ...

[2012-10-17 16:07:28,006][INFO][transport] [Charcoal] bound\_address {inet[/0.0.0.0:9300]}, publish\_address {inet[/10.0.2.113:9300]}

[2012-10-17 16:07:31,224][INFO][cluster.service] [Charcoal] new\_master [Charcoal][U6xpMVUERYmc0s0ZZahXCw][inet[/10.0.2.113:9300]], reason: zen-disco-join

(elected\_as\_master)

[2012-10-17 16:07:31,272][INFO][discovery] [Charcoal] elasticsearch/U6xpMVUERYmc0s0ZZahXCw

[2012-10-17 16:07:31,422][INFO][http] [Charcoal] bound\_address {inet[/0.0.0.0:9200]}, publish\_address {inet[/10.0.2.113:9200]}

[2012-10-17 16:07:31,423][INFO][node] [Charcoal] {0.19.10}[8732]: started

[2012-10-17 16:07:32,590][INFO][gateway] [Charcoal] recovered [2] indices into cluster\_state

[2012-10-17 16:09:50,263][WARN][http.netty] [Charcoal] Caught exception while handling client http traffic, closing connection [id: 0x7e2b5f3a, /10.0

.2.113:53013 =\> /10.0.2.113:9200]

java.lang.IllegalArgumentException: empty text

```
    at org.elasticsearch.common.netty.handler.codec.http.HttpVersion.&lt;init&gt;(HttpVersion.java:97)

    at org.elasticsearch.common.netty.handler.codec.http.HttpVersion.valueOf(HttpVersion.java:62)

    at org.elasticsearch.common.netty.handler.codec.http.HttpRequestDecoder.createMessage(HttpRequestDecoder.java:76)

    at org.elasticsearch.common.netty.handler.codec.http.HttpMessageDecoder.decode(HttpMessageDecoder.java:189)

    at org.elasticsearch.common.netty.handler.codec.http.HttpMessageDecoder.decode(HttpMessageDecoder.java:101)

    at org.elasticsearch.common.netty.handler.codec.replay.ReplayingDecoder.callDecode(ReplayingDecoder.java:502)

    at org.elasticsearch.common.netty.handler.codec.replay.ReplayingDecoder.messageReceived(ReplayingDecoder.java:437)

    at org.elasticsearch.common.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:75)

    at org.elasticsearch.common.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:565)

    at org.elasticsearch.common.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream(DefaultChannelPipeline.java:793)

    at org.elasticsearch.common.netty.OpenChannelsHandler.handleUpstream(OpenChannelsHandler.java:74)

    at org.elasticsearch.common.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:565)

    at org.elasticsearch.common.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:560)

    at org.elasticsearch.common.netty.channel.Channels.fireMessageReceived(Channels.java:268)

    at org.elasticsearch.common.netty.channel.Channels.fireMessageReceived(Channels.java:255)

    at org.elasticsearch.common.netty.channel.socket.nio.NioWorker.read(NioWorker.java:84)

    at org.elasticsearch.common.netty.channel.socket.nio.AbstractNioWorker.processSelectedKeys(AbstractNioWorker.java:471)

    at org.elasticsearch.common.netty.channel.socket.nio.AbstractNioWorker.run(AbstractNioWorker.java:332)

    at org.elasticsearch.common.netty.channel.socket.nio.NioWorker.run(NioWorker.java:35)

    at org.elasticsearch.common.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:102)

    at org.elasticsearch.common.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:42)

    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)

    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)

    at java.lang.Thread.run(Thread.java:662)

```

[2012-10-17 16:09:50,268][WARN][http.netty] [Charcoal] Caught exception while handling client http traffic, closing connection [id: 0x7e2b5f3a, /10.0

.2.113:53013 :\> /10.0.2.113:9200]

java.lang.IllegalArgumentException: empty text

--

---

<div class="post-metadata">

### Author: ![antoine\_philippe\_cha](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/antoine_philippe_cha/32/2325_2.png) [@antoine\_philippe\_cha](https://discuss.elastic.co/u/antoine_philippe_cha)
#### Post date: [October 17, 2012, 4:17pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/10 "2012-10-17T16:17:06Z")

</div>

YES ! I'm using Maven 3.

--

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [October 17, 2012, 4:44pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/11 "2012-10-17T16:44:31Z")

</div>

Just in case you are using Spring, you can use the spring factories for Elasticsearch: [https://github.com/dadoonet/spring-elasticsearch](https://github.com/dadoonet/spring-elasticsearch)

It could help you to connect to your running node using a TransportClient.

## HTH

David 😉  
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 17 oct. 2012 à 18:17, antoine philippe chaker [philippe.chaker@gmail.com](mailto:philippe.chaker@gmail.com) a écrit :

## YES ! I'm using Maven 3.

--

---

<div class="post-metadata">

### Author: ![antoine\_philippe\_cha](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/antoine_philippe_cha/32/2325_2.png) [@antoine\_philippe\_cha](https://discuss.elastic.co/u/antoine_philippe_cha)
#### Post date: [October 17, 2012, 4:53pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/12 "2012-10-17T16:53:39Z")

</div>

Thanks David,

I have just discovered this today. Indeed I'm using Spring MVC 3.0.1  
but is it possible use it with annotation ?

(Comment je fait pour vous rejoindre sur le site de votre factory,  
plus simple pour moi en Fr 😉 )

--

---

<div class="post-metadata">

### Author: ![antoine\_philippe\_cha](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/antoine_philippe_cha/32/2325_2.png) [@antoine\_philippe\_cha](https://discuss.elastic.co/u/antoine_philippe_cha)
#### Post date: [October 17, 2012, 4:57pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/13 "2012-10-17T16:57:07Z")

</div>

SORRY, it's possible !

Ok let me give it a try and I'll make a feedback here later.

Thx all !

--

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [October 17, 2012, 5:02pm UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/14 "2012-10-17T17:02:12Z")

</div>

There's no dedicated mailing list for the factory but there's a french elasticsearch user group where you can ask for help in french: [http://groups.google.com/group/elasticsearch-fr](http://groups.google.com/group/elasticsearch-fr)

That said, you can also send me direct mail to david (at) [pilato.fr](http://pilato.fr)

--  
David 😉  
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs

Le 17 oct. 2012 à 18:53, antoine philippe chaker [philippe.chaker@gmail.com](mailto:philippe.chaker@gmail.com) a écrit :

> Thanks David,
> 
> I have just discovered this today. Indeed I'm using Spring MVC 3.0.1  
> but is it possible use it with annotation ?
> 
> (Comment je fait pour vous rejoindre sur le site de votre factory,  
> plus simple pour moi en Fr 😉 )
> 
> --

--

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 6, 2017, 3:08am UTC](https://discuss.elastic.co/t/autocomplete-with-es-newbie/9393/15 "2017-07-06T03:08:14Z")

</div>


