Re: Abridged summary of elasticsearch@googlegroups.com - 61 Messages in 31 Topics

On Mon, Feb 18, 2013 at 6:29 PM, elasticsearch@googlegroups.com wrote:

Today's Topic Summary

Group: http://groups.google.com/group/elasticsearch/topics

  • Sourceless Highlighting <#13cf048b5c78259c_group_thread_0> [7
    Updates]
  • Boosting a document value <#13cf048b5c78259c_group_thread_1> [3
    Updates]
  • Query by keywords and phrase. Performance question<#13cf048b5c78259c_group_thread_2>[4 Updates]
  • geo_bounding_box on 10 billion objects<#13cf048b5c78259c_group_thread_3>[1 Update]
  • Reference Documentation <#13cf048b5c78259c_group_thread_4> [1 Update]
  • elasticsearch query array <#13cf048b5c78259c_group_thread_5> [2
    Updates]
  • Cluster best practices <#13cf048b5c78259c_group_thread_6> [2 Updates]
  • Download repo for popular plugins? <#13cf048b5c78259c_group_thread_7>[6 Updates]
  • Looking for advice on bulk loading <#13cf048b5c78259c_group_thread_8>[1 Update]
  • Hits number decrease when adding new node<#13cf048b5c78259c_group_thread_9>[2 Updates]
  • JDBC River && _parent <#13cf048b5c78259c_group_thread_10> [2 Updates]
  • Notifications <#13cf048b5c78259c_group_thread_11> [2 Updates]
  • ReduceSearchPhaseException caused by ClassCastException<#13cf048b5c78259c_group_thread_12>[1 Update]
  • protect some words when tokenizing<#13cf048b5c78259c_group_thread_13>[1 Update]
  • Need help with ES (SearchPhaseExecutionException)<#13cf048b5c78259c_group_thread_14>[1 Update]
  • How to index an attachment with Java API<#13cf048b5c78259c_group_thread_15>[2 Updates]
  • Facing Issue while creating custom exchange and queue names using
    rabbitmq river plugin <#13cf048b5c78259c_group_thread_16> [2 Updates]
  • Facing problem in redeclaring rabbit_mq exchange name<#13cf048b5c78259c_group_thread_17>[2 Updates]
  • elasticsearch java api reference <#13cf048b5c78259c_group_thread_18>[1 Update]
  • Hi, Can you help me with post? <#13cf048b5c78259c_group_thread_19>[2 Updates]
  • Ignoring duplicates when searching across multiple indices<#13cf048b5c78259c_group_thread_20>[2 Updates]
  • Unable to provide custom names to queues and exchanges using
    rabbitmq river plugin <#13cf048b5c78259c_group_thread_21> [1 Update]
  • Facing Issue while creating custom exchange name and queue name
    using rabbitmq -river plugin <#13cf048b5c78259c_group_thread_22> [1
    Update]
  • Facet Filter Confusion <#13cf048b5c78259c_group_thread_23> [1 Update]
  • index mapping via template file <#13cf048b5c78259c_group_thread_24>[1 Update]
  • Java API: Search with QueryBuilder and FilterBuilder<#13cf048b5c78259c_group_thread_25>[5 Updates]
  • Settings for store <#13cf048b5c78259c_group_thread_26> [1 Update]
  • Support for indexing <#13cf048b5c78259c_group_thread_27> [1 Update]
  • locking down cluster with iptables<#13cf048b5c78259c_group_thread_28>[1 Update]
  • Elasticsearch-head not working for newbie on 1-doc index<#13cf048b5c78259c_group_thread_29>[1 Update]
  • What's the difference between "enabled," "index," and "store?"<#13cf048b5c78259c_group_thread_30>[1 Update]

Sourceless Highlightinghttp://groups.google.com/group/elasticsearch/t/879fd3e34528d5a

gelmajjouti gelmajjouti@gmail.com Feb 18 05:10AM -0800

Hello,

I'm trying to make search highlighting work without storing sources in
Elasticsearch.

In other to do this, I intend to get search hits position from
Lucene's *TermFreqVector ...morehttp://groups.google.com/group/elasticsearch/msg/776eda43c26296ea

Martijn v Groningen martijn.v.groningen@gmail.com Feb 18 04:45PM
+0100

Before you start and create a plugin / fork ES, you can just store a
specific field instead of the whole source and
highlight on that instead. Is that sufficient in your case?

Martijn

-- ...morehttp://groups.google.com/group/elasticsearch/msg/71586df69ee2140b

gelmajjouti gelmajjouti@gmail.com Feb 18 07:55AM -0800

Thanks for your reply.

Most of my data is searchable fulltext. I can't afford to store it in
ES.

Greg

On Monday, February 18, 2013 4:45:12 PM UTC+1, Martijn v Groningen
wrote:
...morehttp://groups.google.com/group/elasticsearch/msg/b1e576705b7530de

simonw simon.willnauer@elasticsearch.com Feb 18 10:51AM -0800

it might be a useful feature to add returning a stream of offset
tuples
rather than highlighted strings. Even if we expose TermVectors they
might
be too expensive to transfer while a "snipet ...morehttp://groups.google.com/group/elasticsearch/msg/54bd19fe0210f803

AlexR roytmana@gmail.com Feb 18 02:43PM -0800

+100 To me getting data about highlighting is more useful than
highlighted
text.
In case of searching _all (or any other non stored multi_field) I
would
like to get say a list of matched tokens ...morehttp://groups.google.com/group/elasticsearch/msg/61b9f51cde477721

Ivan Brusic ivan@brusic.com Feb 18 02:56PM -0800

Not the cleanest solution, but you can extract some of this information
from the explain object.

--
Ivan

...morehttp://groups.google.com/group/elasticsearch/msg/5a55caab9d40a0ef

Gildas Houmard ghoumard@gmail.com Feb 18 06:04PM -0800

+1 exactly a solution I might need. An array of matched field with
position
instead of highlighted text would be great !

On Monday, February 18, 2013 5:43:35 PM UTC-5, AlexR wrote:
...morehttp://groups.google.com/group/elasticsearch/msg/db99e4c43334c3df

Boosting a document valuehttp://groups.google.com/group/elasticsearch/t/500b31d7fd1cb7c6

Noam Guy noamguy@gmail.com Feb 18 03:04AM -0800

Hi,

I know something like this was already answered but it's not what I
need :slight_smile:

I have two documents that look like this:

{
"image" : {
"lists" : [
{ ...morehttp://groups.google.com/group/elasticsearch/msg/5a32067e2d65d573

Jade Dominguez superjadex12@gmail.com Feb 18 12:24PM -0800

You need to show us your mapping for the fields and also your query.

To my knowledge, the only way to use _boost values on specific
keywords is
via the _all field. (I'm not 100% sure but I've ...morehttp://groups.google.com/group/elasticsearch/msg/775681f84e369310

AtoZ allen.zhao@gmail.com Feb 18 05:44PM -0800

We have the similar problem.

Here is our scenario:

We have a magazine DB. each magazine has a list of category tags, each
tag
has weight. Number of tags for each magazine is NOT fixed. ...morehttp://groups.google.com/group/elasticsearch/msg/69eab3a6a79c5259

Query by keywords and phrase. Performance questionhttp://groups.google.com/group/elasticsearch/t/a7dc45beb900e8aa

Victor Soloh neuralcortex@gmail.com Feb 18 11:12AM -0800

Hello,

I am relatively new to Elasticsearch. I do understand the basic
concepts
but have trouble with more advanced queries.
I am trying to build a query which searches by several keywords on 2
...morehttp://groups.google.com/group/elasticsearch/msg/f8774400ecea2ef7

egaumer egaumer@gmail.com Feb 18 12:40PM -0800

What you probably want to do is use a DismaxQuery. The query below
will
match the users query (keyword) against the title and content fields
but
will boost phrases. You can adjust the slop to ...morehttp://groups.google.com/group/elasticsearch/msg/8906328408edbe80

Victor Soloh neuralcortex@gmail.com Feb 18 04:05PM -0800

Egaumer,
Thanks for response! The Dismax query you formulated works pretty
well.
There are some weird cases when a document gets lower score even
though it
has a matching phrase in the title, ...morehttp://groups.google.com/group/elasticsearch/msg/53e38ffece48fe13

egaumer egaumer@gmail.com Feb 18 05:14PM -0800

Hehe... like most things, it comes with experience. You pick things up
along the way and I've been doing this (search) for quite a long time
now.

The mailing list is a good place to ask for help ...morehttp://groups.google.com/group/elasticsearch/msg/f733d63c802ac293

geo_bounding_box on 10 billion objectshttp://groups.google.com/group/elasticsearch/t/acec619264a8346

Mohamed Lrhazi ml623@georgetown.edu Feb 18 02:10PM -0800

Thanks a lot Kimchy. this might require more nodes than I could afford
for
now :slight_smile:

On Tuesday, February 12, 2013 5:52:15 PM UTC-5, kimchy wrote:
...morehttp://groups.google.com/group/elasticsearch/msg/a7a1ef72afb0581c

Reference Documentationhttp://groups.google.com/group/elasticsearch/t/82a51db5e664b08f

knacktus@googlemail.com Feb 18 01:41PM -0800

Hi there,

I'm new to ES and making some progress. First newbie benchmarks are
very
promising. I can "mget" and filter docs by ids with 500000 ids at one
request and get them back in 17 / 20 ...morehttp://groups.google.com/group/elasticsearch/msg/90ae3fe7c0750e90

elasticsearch query arrayhttp://groups.google.com/group/elasticsearch/t/8e1e49e3af33662f

eric sanford pcstechnologiesinc@gmail.com Feb 18 09:19AM -0800

Hello

i have this JSON structure

{
"id" : "2001",
"promptViews" : [ {
"id" : "2780",
"itemType" : "promptView"...

And im trying to query it like this...
...morehttp://groups.google.com/group/elasticsearch/msg/72a7eab90cc44b7e

David Pilato david@pilato.fr Feb 18 09:09PM +0100

You are searching for documents, generally speaking.
When your document contain a value you search for, your document is
sent back exactly as you indexed it.
Whatever the structure of the document. ...morehttp://groups.google.com/group/elasticsearch/msg/3237b48e59884df6

Cluster best practiceshttp://groups.google.com/group/elasticsearch/t/3476639ce1a8a907

Pierre Carlson mpcarl@gmail.com Feb 18 11:51AM -0800

I am looking for best practices on building an ES cluster. Since ES is
so
configurable, it seems like there are a dozen possibles ways to
implement a
cluster. Has anyone put together a list at ...morehttp://groups.google.com/group/elasticsearch/msg/354188d293cac769

Matt Weber matt.weber@gmail.com Feb 18 12:01PM -0800

It all really depends on what you are trying to do and your data.
Send some more information and we can probably be more specific of
things you could do. Here are some posts you might find helpful.
...morehttp://groups.google.com/group/elasticsearch/msg/1e4d1ceecdba1c96

Download repo for popular plugins?http://groups.google.com/group/elasticsearch/t/2fe4701176996886

Ivan Brusic ivan@brusic.com Feb 18 10:02AM -0800

Has anyone created a repository for plugins such as Head and Bigdesk?
My
current workflow deals with download the zip file and manually creating
directories. There has to be a better way.
...morehttp://groups.google.com/group/elasticsearch/msg/e86f0484c59e99f4

"Jörg Prante" joergprante@gmail.com Feb 18 07:18PM +0100

Because the plugin download is organized around ZIP downloads from a
HTTP source, you can't get far to set up repositories - that is, you
always have to use ./bin/plugin tool for manual download. ...morehttp://groups.google.com/group/elasticsearch/msg/a0a5cff0c2a0371

Ivan Brusic ivan@brusic.com Feb 18 10:23AM -0800

you always have to use ./bin/plugin tool for manual download.

The issue is that there is nothing to download. Github has removed all
the
uploads. My choices now are either download the ...morehttp://groups.google.com/group/elasticsearch/msg/110bcee9cfeabb9

"Jörg Prante" joergprante@gmail.com Feb 18 07:32PM +0100

Yes, so Shay switched from github to downloading from
download.elasticsearch.org by default - for the core plugins, this
should work. For 3rd party plugins, an extra lookup at Maven central
...morehttp://groups.google.com/group/elasticsearch/msg/9a00f4581b2584ec

Zachary Tong zacharyjtong@gmail.com Feb 18 10:43AM -0800

Whoops, responded directly to Ivan instead of the group. You can still
install Site plugins from Github just fine, since it downloads the
entire
repo and installs it as a Site plugin.
...morehttp://groups.google.com/group/elasticsearch/msg/6f4c4130478c1031

Ivan Brusic ivan@brusic.com Feb 18 11:38AM -0800

Silly me, I forgot that the plugin manager still supports site plugins.
Problem solved for now.

There still needs to be a general consensus for third-party plugins.
Maven
repos are too difficult ...morehttp://groups.google.com/group/elasticsearch/msg/718f8e3e5bd21173

Looking for advice on bulk loadinghttp://groups.google.com/group/elasticsearch/t/2e3a4faa66d4cda4

Jon Shea jonshea@foursquare.com Feb 18 11:14AM -0800

Jörg,

I completely agree with your indexing advice. To summarize for Rob:

  1. You’re doing it pretty much how everyone does it.
  2. If you’re taking down your cluster, you need to slow down ...morehttp://groups.google.com/group/elasticsearch/msg/66dc9d36b7b2be8f

Hits number decrease when adding new nodehttp://groups.google.com/group/elasticsearch/t/1abc6f0c689b7c6b

Ophir Michaeli ophirmichaeli@gmail.com Feb 18 09:16AM -0800

Hi,

I did some testing of several search words with 1 node, 1 index with 5
shards and no replicas.

Later I set 1 replica for the index, activated a new node with same
cluster ...morehttp://groups.google.com/group/elasticsearch/msg/fd5022b6927cb717

Drew Raines aaraines@gmail.com Feb 18 12:38PM -0600

Ophir Michaeli wrote:

created the replicas.

I ran the same text search as before, this time 2 nodes running,
and I got a smaller amount of hits for the same search text.
...morehttp://groups.google.com/group/elasticsearch/msg/8b49fc2aaaf315f7

JDBC River && _parenthttp://groups.google.com/group/elasticsearch/t/49f94093680dd0b5

Yann Barraud yann.barraud@gmail.com Feb 18 09:55AM -0800

Hi,

I'm currently trying to understand how to use JDBC River. I just got
some
good results this afternoon. :slight_smile:

Now I have a few questions regarding the river :

"Jörg Prante" joergprante@gmail.com Feb 18 07:25PM +0100

The JDBC river uses a "pseudo column" method fpr prante/child aware
indexing. Just like you can state a _parent attribute in the bulk API,
you can name a column '_parent' in the JDBC source to use ...morehttp://groups.google.com/group/elasticsearch/msg/d8864b95403f453

Notificationshttp://groups.google.com/group/elasticsearch/t/eb1afd1863e906df

Ophir Michaeli ophirmichaeli@gmail.com Feb 18 09:23AM -0800

Hi,

Is there a notification level to set for elasticsearch console to show
more
messages, like when it receives a search request.

I'm testing for more than one node and I can't tell if ...morehttp://groups.google.com/group/elasticsearch/msg/72b4a8f010b8e4b1

Zachary Tong zacharyjtong@gmail.com Feb 18 09:46AM -0800

You can fiddle with logging verbosity by changing values in your
logging.yml file. The "discovery" settings will log events about
joining/parting, the "indices.recovery" setting will tell you ...morehttp://groups.google.com/group/elasticsearch/msg/3260254fcbdc6a8d

ReduceSearchPhaseException caused by ClassCastExceptionhttp://groups.google.com/group/elasticsearch/t/f6dadf3abc63a8d7

cell charith@qumetrics.com Feb 18 09:16AM -0800

Hi,

Elastic Search Version: 0.20.4

I have a field in my index which contains floating point data. In the
mapping I can see that Elastic Search has correctly identified the
data ...morehttp://groups.google.com/group/elasticsearch/msg/399294c870f1fa83

protect some words when tokenizinghttp://groups.google.com/group/elasticsearch/t/8f8a3cc076745f87

Ivan Brusic ivan@brusic.com Feb 18 08:43AM -0800

My mistake! I read the word "protect" and thought of the keyword marker
filter. I once wrote a custom token filter on a Lucene project I was
on,
not related to stemming, that used the keyword ...morehttp://groups.google.com/group/elasticsearch/msg/f8e1c8f3dcb7c075

Need help with ES (SearchPhaseExecutionException)http://groups.google.com/group/elasticsearch/t/72310fd05999c671

Patra Nutan patra.nutan@gmail.com Feb 18 08:01AM -0800

Hello Team,
Greetings!!!
I am also too naive to
elasticsearch,graylog2-web-interface,graylog2-server.
I am facing an issue where suddenly *graylog has stopped posting log
messages to ...morehttp://groups.google.com/group/elasticsearch/msg/61e247705f2b752c

How to index an attachment with Java APIhttp://groups.google.com/group/elasticsearch/t/68d0c5bde7d65b1a

Yann Moisan yamo93@gmail.com Feb 18 07:49AM -0800

Hi,

I need to index a document with an attachment, using the Java API.

Is it the good method IndexRequestBuilder.setSource(byte source) ?
(Javadoc is'nt very verbose ...)
...morehttp://groups.google.com/group/elasticsearch/msg/f52b9e7785fbf0f8

David Pilato david@pilato.fr Feb 18 05:00PM +0100

Hey Yann,

Have a look here:
https://github.com/scrutmydocs/scrutmydocs/blob/master/src/main/java/org/scrutmydocs/webapp/servlet/UploadServlet.java#L100

It should help.

Let me know if you need ...morehttp://groups.google.com/group/elasticsearch/msg/21a96893f6c24909

Facing Issue while creating custom exchange and queue names using
rabbitmq river pluginhttp://groups.google.com/group/elasticsearch/t/7fabe2b0af342bd8

"C.K.R.VIJAY Krishna" ckrvijaykrishna53@gmail.com Feb 18 04:06AM
-0800

Hi,
I am new to Elastic search.For past two days I am exploring
rabbitmq-river plugin in Elasticsearch.When I am trying to provide
custom
exchange name,queue name,exchange type it is not ...morehttp://groups.google.com/group/elasticsearch/msg/348bc9bacf6f43a

Drew Raines aaraines@gmail.com Feb 18 09:06AM -0600

C.K.R.VIJAY Krishna wrote:

Hi,

Vijay, please stop creating new topics asking the same question. I
have responded to your message from hours ago. Let's continue on
that thread. Thanks!
...morehttp://groups.google.com/group/elasticsearch/msg/f2086124972db360

Facing problem in redeclaring rabbit_mq exchange namehttp://groups.google.com/group/elasticsearch/t/17498d480dfcb570

"C.K.R.VIJAY Krishna" ckrvijaykrishna53@gmail.com Feb 18 02:08AM
-0800

Hi Drew,
Thanks for your reply. Now I have created new exchange "vijay_exh1"
as durable in rabbit MQ Server and made rabbit_mq queue as durable.
In the above sample code I made ...morehttp://groups.google.com/group/elasticsearch/msg/54d1f37ac9476d83

Drew Raines aaraines@gmail.com Feb 18 08:56AM -0600

C.K.R.VIJAY Krishna wrote:

"queue_durable" : true, and started publishing messages in exchange
"vijay_exh1" but I can't able to consume messages in Elasticsearch
and there is no error in ...morehttp://groups.google.com/group/elasticsearch/msg/bc5574a873d42579

elasticsearch java api referencehttp://groups.google.com/group/elasticsearch/t/ea2362617fa02e68

Ulli ulli.scheel@gmx.de Feb 18 05:30AM -0800

Hi,

Where do I find a 'real' elasticsearch java api reference? Not just
some
examples of a few classes like here:
Elasticsearch Platform — Find real-time answers at scale | Elastic

Thanks in advance ...morehttp://groups.google.com/group/elasticsearch/msg/ff93cfbf5f5e8bd2

Hi, Can you help me with post?http://groups.google.com/group/elasticsearch/t/e0dcab5dfbae0b0b

tehila.madmon@gmail.com Feb 18 05:04AM -0800

When I try to do:
"curl -XPUT http://localhost:9200 -d '{ "name" : "Dilbert Brown" }' "

I get this message:

No handler found for uri [/] and method [PUT]curl: (6) Could not
resolve ...morehttp://groups.google.com/group/elasticsearch/msg/8c7b01031eb06281

"Rafał Kuć" r.kuc@solr.pl Feb 18 02:10PM +0100

Hello!

Try the following:

curl -XPUT 'http://localhost:9200/INDEX_NAME/TYPE_NAME/ID' -d '{"name"
: "Dilbert Brown"}'

where:

Ignoring duplicates when searching across multiple indiceshttp://groups.google.com/group/elasticsearch/t/aebd2dd77c63e07

Lion Vollnhals lion.vollnhals@googlemail.com Feb 18 02:38AM -0800

Hello,

we have two indices, a global article index and a specific shop
article
index.
The shop article index may contain articles that are already in the
global
article index. ...morehttp://groups.google.com/group/elasticsearch/msg/c696df48aee6ddf2

"Jörg Prante" joergprante@gmail.com Feb 18 02:08PM +0100

Either you search only a list of specific shops, or the global index.
If
you search both, your design implies you want duplicates (and to
remove
them afterwards is always clumsy)

Jörg
...morehttp://groups.google.com/group/elasticsearch/msg/2f38725cfc794057

Unable to provide custom names to queues and exchanges using rabbitmq
river pluginhttp://groups.google.com/group/elasticsearch/t/b5d078e341f6d904

"C.K.R.VIJAY Krishna" ckrvijaykrishna53@gmail.com Feb 18 04:02AM
-0800

Hi,
I am new to Elastic search.For past two days I am exploring
rabbitmq-river plugin in Elasticsearch.When I am trying to provide
custom
exchange name,queue name,exchange type it is not ...morehttp://groups.google.com/group/elasticsearch/msg/fea27ae6b8955d9b

Facing Issue while creating custom exchange name and queue name using
rabbitmq -river pluginhttp://groups.google.com/group/elasticsearch/t/a08a62c960011539

"C.K.R.VIJAY Krishna" ckrvijaykrishna53@gmail.com Feb 18 03:59AM
-0800

Hi,
I am new to Elastic search.For past two days I am exploring
rabbitmq-river plugin in Elasticsearch.When I am trying to provide
custom
exchange name,queue name,exchange type it is not ...morehttp://groups.google.com/group/elasticsearch/msg/5bbe4ec562843889

Facet Filter Confusionhttp://groups.google.com/group/elasticsearch/t/657881076b8fb7e7

Karussell tableyourtime@gmail.com Feb 18 03:34AM -0800

Hi Matt,

thanks! But is there an advantage of the and/or/not filters?

Regards,
Peter.

On Thursday, February 14, 2013 6:21:18 PM UTC+1, Matt Weber wrote:
...morehttp://groups.google.com/group/elasticsearch/msg/587d316927bfd537

index mapping via template filehttp://groups.google.com/group/elasticsearch/t/b5269e816339a078

Ulli ulli.scheel@gmx.de Feb 18 03:27AM -0800

Thank you, Radu. It looks better know. I don't see any exceptions in
the
log any more. But a range search on the date field doesn't work.

This is what my mapping looks like now:

{ ...morehttp://groups.google.com/group/elasticsearch/msg/583b95d2cb89cb6

Java API: Search with QueryBuilder and FilterBuilderhttp://groups.google.com/group/elasticsearch/t/c83f2e745372a4eb

MUKESH PANDEY mukeshp073@gmail.com Feb 17 10:00PM -0800

I have already facing same problem

Settings settings = ImmutableSettings.settingsBuilder().put("
cluster.name",
"elasticsearch").build();
Client client = new ...morehttp://groups.google.com/group/elasticsearch/msg/1645c4a9a680be9b

David Pilato david@pilato.fr Feb 18 07:54AM +0100

Do you have a document with CurrentLocation=n ?

Hard to say something else as we don't know your mapping either your
docs.

--
David :wink:
Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs
...morehttp://groups.google.com/group/elasticsearch/msg/f12c67ce1d31b3c1

MUKESH PANDEY mukeshp073@gmail.com Feb 18 01:50PM +0530

yes i have CurrentLocation:Navi Mumbai
ok i have change CurrentLocation:delhi but
i think when we using prefixFilter than match with "null" if no
any match found and should return ...morehttp://groups.google.com/group/elasticsearch/msg/4df7578ad6e87b19

David Pilato david@pilato.fr Feb 18 09:22AM +0100

Prefix filter is not analyzed. See
Elasticsearch Platform — Find real-time answers at scale | Elastic

So, if you want to use it here, use it with a Capital N

--
David Pilato | Technical ...morehttp://groups.google.com/group/elasticsearch/msg/7efd29b1bc94bd51

MUKESH PANDEY mukeshp073@gmail.com Feb 18 04:36PM +0530

Thanks sir for support

====================================================================

--
mukeshp073@gmail.com
Laitkor.infosolution pvt ltd
...morehttp://groups.google.com/group/elasticsearch/msg/e013995be2c9275

Settings for storehttp://groups.google.com/group/elasticsearch/t/75b731fc63cee511

knacktus@googlemail.com Feb 18 02:10AM -0800

Hi guys,

I still don't get completely how settings work.

E.g., how would I tell ES to use the store option memory and
cache.memory.direct?

There's the conifg.yaml, of course. ...morehttp://groups.google.com/group/elasticsearch/msg/a2eae1ea36967086

Support for indexinghttp://groups.google.com/group/elasticsearch/t/82ba850914d3f691

Yann Barraud yann.barraud@gmail.com Feb 18 12:34AM -0800

Hi Radu,

Thanks for this answer. I'll investigate the 2 options, depending on
how we
want to search items.

Kind regards,
Yann

Le dimanche 17 février 2013 13:14:55 UTC+1, Radu Gheorghe a ...morehttp://groups.google.com/group/elasticsearch/msg/f4ebaf97e9be71dd

locking down cluster with iptableshttp://groups.google.com/group/elasticsearch/t/599c3bfb05e10b2f

"Jörg Prante" joergprante@gmail.com Feb 18 09:04AM +0100

It does not make much sense to run iptable filters inside of a cluster.

You should set up a private network and hide Elasticsearch nodes
behind
reverse proxy at HTTP port 80 or 443 so there won't ...morehttp://groups.google.com/group/elasticsearch/msg/6dc3eeaa59233ac0

Elasticsearch-head not working for newbie on 1-doc indexhttp://groups.google.com/group/elasticsearch/t/6e3e9e889ccdc3a8

Cayman caymanag@yahoo.com Feb 17 07:56PM -0800

Yes, that was it. I'll have to be careful. Thanks for taking the time
to
help.

On Friday, February 15, 2013 11:42:35 PM UTC-5, mobz wrote:
...morehttp://groups.google.com/group/elasticsearch/msg/94a57be101574c95

What's the difference between "enabled," "index," and "store?"http://groups.google.com/group/elasticsearch/t/409bf3646f402e3c

Brian Jones tbrianjones@gmail.com Feb 17 07:36PM -0800

I think the feature I've been looking for is Dynamic Templates found
at the
bottom of the page here:

Elasticsearch Platform — Find real-time answers at scale | Elastic

...morehttp://groups.google.com/group/elasticsearch/msg/4c6df21b222dce65

You received this message because you are subscribed to the Google Group
elasticsearch.
You can post via email elasticsearch@googlegroups.com.
To unsubscribe from this group, sendelasticsearch+unsubscribe@googlegroups.coman empty message.
For more options, visithttp://groups.google.com/group/elasticsearch/topicsthis group.

--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.