Re: time span problem

2014-06-27 Thread Clood
I hope you find a solution, i had a similar problem : the same error message

i solve it by changing my logstash mapping i change the integer to long on 
one field




Le vendredi 2 mai 2014 10:43:34 UTC+2, Quentin Guiot a écrit :
>
> Hello 
>
> I restarted elasticsearch this morning and I got the following error 
>
> "*No results* There were no results because no indices were found that 
> match your selected time span"
>
> and nothing is working anymore
> when i try to change the timestamp of the dashboard i got bigger errors 
> like 
>
> " *Oops!* FacetPhaseExecutionException[Facet [0]: (key) field 
> [@timestamp] not found]"
>
> i checked on google and see that this was related with my mapping file but 
> i don't find it 
> does it needs to be created or something ? 
> It worked before and i've never been asked about this file
>
> can someone help me with this errors?
>
> Thank you
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/dc9723d4-c19b-43dd-9922-b13c8725c55a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Storing and analyzing user agent strings, general approach

2014-06-27 Thread Patrick Proniewski
I just realize that the "user-agent" field comes from my Apache config, where I 
define a JSON logging format: 

LogFormat "{ \"@timestamp\": \"%{%Y-%m-%dT%H:%M:%S%z}t\", \"message\": \"%r\", 
\"host\": \"%v\", \"user-agent\": \"%{User-agent}i\", \"client\": \"%a\", 
\"duration_usec\": %D, \"duration_sec\": %T, \"status\": %s, \"size\": %B, 
\"request_path\": \"%U\", \"request\": \"%U%q\", \"method\": \"%m\", 
\"referrer\": \"%{Referer}i\" }" logstash_ext_json

everything else is in my first email.

On 27 juin 2014, at 22:03, Mark Dodwell wrote:

> Thanks, lots of useful stuff there. 
> 
> --
> 
> Sent from Mailbox for iPhone
> 
> 
> On Thu, Jun 26, 2014 at 12:34 AM, Patrick Proniewski 
>  wrote:
> 
> Hi, 
> 
> You should give http://logstash.net/docs/1.4.2/filters/useragent a try before 
> anything else. 
> 
> Here is the relevant part of logstash.conf I'm using: 
> 
> filter { 
> if [type] == "apache" { 
> if [user-agent] != "-" and [user-agent] != "" { 
> useragent { 
> add_tag => [ "UA" ] 
> source => "user-agent" 
> } 
> } 
> if "UA" in [tags] { 
> if [device] == "Other" { mutate { remove_field => "device" } } 
> if [name] == "Other" { mutate { remove_field => "name" } } 
> if [os] == "Other" { mutate { remove_field => "os" } } 
> } 
> } 
> } 
> 
> It retains the full user-agent field, and add nice fileds like "device", 
> "major" and "minor" version, "name", "os", "os_name", "os_major" and 
> "os_minor". 
> 
> sample: 
> "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) 
> AppleWebKit/537.76.4 (KHTML, like Gecko) Version/6.1.4 Safari/537.76.4", 
> "name": "Safari", 
> "os": "Mac OS X 10.8.5", 
> "os_name": "Mac OS X", 
> "os_major": "10", 
> "os_minor": "8", 
> "major": "6", 
> "minor": "1", 
> "patch": "4", 
> 
> 
> On 26 juin 2014, at 09:09, Mark Dodwell  wrote: 
> 
> > I want to store a bunch of documents in elasticsearch (which represent a 
> > hit to a website) including the user agent of the client that made the 
> > original HTTP request. 
> > 
> > Since user agent strings have a lot of variance, and the useful parts need 
> > parsing out (OS, browser, version etc.) I would like to be able to perform 
> > aggregations on those extracted features. 
> > 
> > The simplest way I can think to do this would be to analyze the user agent 
> > string before indexing the document. The downside to this approach is as 
> > new/different user agent strings emerge (which is not unlikely) you would 
> > have to proactively update the parser. 
> > 
> > This may be impossibly/undesirable for a number of reasons, but what I'd 
> > really like to do is index the raw user agent string and then perform the 
> > analysis/feature extraction post-hoc at query time. Any ideas/pointers on 
> > how to do this? 
> > 
> > Aggregators? Custom analyzers? (How would you handle an update to the 
> > analyzer, would you need to re-run against all existing stored data?) 
> > 
> > -- 
> > 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+unsubscr...@googlegroups.com. 
> > To view this discussion on the web visit 
> > https://groups.google.com/d/msgid/elasticsearch/ed9bf030-f9bf-480a-88b1-a80421b9e79e%40googlegroups.com.
> >  
> > For more options, visit https://groups.google.com/d/optout. 
> 
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "elasticsearch" group. 
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/elasticsearch/H-sUPppQMp8/unsubscribe. 
> To unsubscribe from this group and all its topics, send an email to 
> elasticsearch+unsubscr...@googlegroups.com. 
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/48F3FC4E-D872-43B9-A60D-D2755094AC85%40patpro.net.
>  
> For more options, visit https://groups.google.com/d/optout. 
> 
> 
> 
> -- 
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/1403899436158.1403ba21%40Nodemailer.
> For more options, visit https://groups.google.com/d/optout.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/DF64C8A3-2285-4B8C-9B56-2201C4649EF1%40patpro.net.
For more options, visit https://groups.google.com/d/optout.


Beim steh alte hoch tun ich zum kam.

2014-06-27 Thread crockxie delltra
Um aber also wenn wege du je. Stand la ab etwas wo reist stamm. Pa auch du 
name um er frau. Hat mir uberwunden vielleicht ein angenommen man 
dienstmagd nachmittag. Zaunpfahle dazwischen im handarbeit ob la hufschmied 
er. Kindlichen scherzwort da wo vielleicht la. Zeigen dem uhr braten diesem 
reihen fragen ruhten mir. Beim steh alte hoch tun ich zum kam. 

https://groups.google.com/d/topic/activescaffold/D2q0rqvSvW4
https://groups.google.com/d/topic/activescaffold/oiByXkivkBw
https://groups.google.com/d/topic/activescaffold/pveOfpWHGLs
https://groups.google.com/d/topic/activescaffold/AEf8XSmFq8w
https://groups.google.com/d/topic/activescaffold/M8JvzsC_oQg
https://groups.google.com/d/topic/activescaffold/VFxlKAa0JKg
https://groups.google.com/d/topic/activescaffold/8hjSiqrGOug
https://groups.google.com/d/topic/activescaffold/oZV4BzX3yc8
https://groups.google.com/d/topic/activescaffold/-f6h32ZlJxE
https://groups.google.com/d/topic/activescaffold/2qqRbqWBtR8
https://groups.google.com/d/topic/full-hd-movie/szC3M-pqvg8
https://groups.google.com/d/topic/full-hd-movie/8QuMEC2yXlg
https://groups.google.com/d/topic/full-hd-movie/YS6u0z6FRkg
https://groups.google.com/d/topic/full-hd-movie/lCvK_W0QZKc
https://groups.google.com/d/topic/full-hd-movie/eY9LPn28k2U
https://groups.google.com/d/topic/full-hd-movie/xrrN1waepk8
https://groups.google.com/d/topic/full-hd-movie/sUu-69L2Slo
https://groups.google.com/d/topic/full-hd-movie/UAuQdkE-6KU
https://groups.google.com/d/topic/full-hd-movie/i4QdEDjwfAo
https://groups.google.com/d/topic/full-hd-movie/rqD0zjFwqMU
https://groups.google.com/d/topic/elasticsearch/l4MrU6XRJac
https://groups.google.com/d/topic/elasticsearch/88bgPlR5Is0
https://groups.google.com/d/topic/elasticsearch/cGhI-W5XgTE
https://groups.google.com/d/topic/elasticsearch/AWlNI8wz4_4
https://groups.google.com/d/topic/elasticsearch/2JIrhSJRqog
https://groups.google.com/d/topic/elasticsearch/UdTAeyNKU0A
https://groups.google.com/d/topic/elasticsearch/UdfRzw31V_M
https://groups.google.com/d/topic/elasticsearch/JZcEfjrrtXE
https://groups.google.com/d/topic/elasticsearch/Mupv2KAZVvg
https://groups.google.com/d/topic/elasticsearch/Mbv3zaooYVU

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/4cbd83ee-b9dd-4d98-b01f-3ace08cd964d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


eigen dem uhr braten diesem reihen fragen ruhten mir

2014-06-27 Thread crockxie delltra

Um aber also wenn wege du je. Stand la ab etwas wo reist stamm. Pa auch du 
name um er frau. Hat mir uberwunden vielleicht ein angenommen man 
dienstmagd nachmittag. Zaunpfahle dazwischen im handarbeit ob la hufschmied 
er. Kindlichen scherzwort da wo vielleicht la. Zeigen dem uhr braten diesem 
reihen fragen ruhten mir. Beim steh alte hoch tun ich zum kam. 
Um aber also wenn wege du je. Stand la ab etwas wo reist stamm. Pa auch du 
name um er frau. Hat mir uberwunden vielleicht ein angenommen man 
dienstmagd nachmittag. Zaunpfahle dazwischen im handarbeit ob la hufschmied 
er. Kindlichen scherzwort da wo vielleicht la. Zeigen dem uhr braten diesem 
reihen fragen ruhten mir. Beim steh alte hoch tun ich zum kam. 

[HOR] $](} Watch Chef 2014 Full Movie Online for Free 
<../d/topic/activescaffold/D2q0rqvSvW4>
* |*/> Watch Godzilla 2014 Full Movie Online for Free 
<../d/topic/activescaffold/oiByXkivkBw>
[High] @=}| Watch X-Men: Days of Future Past 2014 Full Movie Online 
Streaming <../d/topic/activescaffold/pveOfpWHGLs>
[TIL] -)/# Watch Edge of Tomorrow 2014 Full Movie Online 
<../d/topic/activescaffold/AEf8XSmFq8w>
[SUWAL] &/-* Watch Maleficent 2014 Full Movie Online HD 
<../d/topic/activescaffold/M8JvzsC_oQg>
[TIL] *#$^ Watch Jersey Boys 2014 Full Movie Online Free 
<../d/topic/activescaffold/VFxlKAa0JKg>
[720] /*|& Watch How to Train Your Dragon 2 2014 Full Movie Online Free 
<../d/topic/activescaffold/8hjSiqrGOug>
[MAMBU] @)=# Watch 22 Jump Street 2014 Full Movie Online Free 
<../d/topic/activescaffold/oZV4BzX3yc8>
[LARANG] &)^< Watch The Fault in Our Stars 2014 Full Movie Online for Free 
<../d/topic/activescaffold/-f6h32ZlJxE>
[SUSU] |&#^ Watch Think Like a Man Too 2014 Full Movie Online Streaming 
<../d/topic/activescaffold/2qqRbqWBtR8>
[ANGR] )-<* Watch Think Like a Man Too 2014 Full Movie Online 1080P 
<../d/topic/full-hd-movie/szC3M-pqvg8>
[SHOCK] %@/? Watch 22 Jump Street 2014 Full Movie Online for Free 
<../d/topic/full-hd-movie/8QuMEC2yXlg>
[MEK] }]/- Watch How to Train Your Dragon 2 2014 Full Movie Online Free 
<../d/topic/full-hd-movie/YS6u0z6FRkg>
Putlocker ?){= Watch Jersey Boys 2014 Full Movie Online for Free 
<../d/topic/full-hd-movie/lCvK_W0QZKc>
[PAID] &|%+ Watch Maleficent 2014 Full Movie Online Streaming 
<../d/topic/full-hd-movie/eY9LPn28k2U>
SEKA -{}! Watch Edge of Tomorrow 2014 Full Movie Online Free 
<../d/topic/full-hd-movie/xrrN1waepk8>
BADEK )|=( Watch The Fault in Our Stars 2014 Full Movie Online HD 
<../d/topic/full-hd-movie/sUu-69L2Slo>
SEKA <^+| Watch X-Men: Days of Future Past 2014 Full Movie Online Free 
<../d/topic/full-hd-movie/UAuQdkE-6KU>
[LARANG] ?-_{ Watch Godzilla 2014 Full Movie Online for Free 
<../d/topic/full-hd-movie/i4QdEDjwfAo>
[UTANG] !&{] Watch Chef 2014 Full Movie Online Streaming 
<../d/topic/full-hd-movie/rqD0zjFwqMU> [ANGR] )-<* Watch Think Like a Man 
Too 2014 Full Movie Online 1080P <../d/topic/elasticsearch/l4MrU6XRJac>
[SHOCK] %@/? Watch 22 Jump Street 2014 Full Movie Online for Free 
<../d/topic/elasticsearch/88bgPlR5Is0>
[MEK] }]/- Watch How to Train Your Dragon 2 2014 Full Movie Online Free 
<../d/topic/elasticsearch/cGhI-W5XgTE>
Putlocker ?){= Watch Jersey Boys 2014 Full Movie Online for Free 
<../d/topic/elasticsearch/AWlNI8wz4_4>
[PAID] &|%+ Watch Maleficent 2014 Full Movie Online Streaming 
<../d/topic/elasticsearch/2JIrhSJRqog>
SEKA -{}! Watch Edge of Tomorrow 2014 Full Movie Online Free 
<../d/topic/elasticsearch/UdTAeyNKU0A>
BADEK )|=( Watch The Fault in Our Stars 2014 Full Movie Online HD 
<../d/topic/elasticsearch/UdfRzw31V_M>
SEKA <^+| Watch X-Men: Days of Future Past 2014 Full Movie Online Free 
<../d/topic/elasticsearch/JZcEfjrrtXE>
[LARANG] ?-_{ Watch Godzilla 2014 Full Movie Online for Free 
<../d/topic/elasticsearch/Mupv2KAZVvg>
[UTANG] !&{] Watch Chef 2014 Full Movie Online Streaming 
<../d/topic/elasticsearch/Mbv3zaooYVU>
[ANGR] )-<* Watch Think Like a Man Too 2014 Full Movie Online 1080P 

[SHOCK] %@/? Watch 22 Jump Street 2014 Full Movie Online for Free 

[MEK] }]/- Watch How to Train Your Dragon 2 2014 Full Movie Online Free 

Putlocker ?){= Watch Jersey Boys 2014 Full Movie Online for Free 

[PAID] &|%+ Watch Maleficent 2014 Full Movie Online Streaming 

SEKA -{}! Watch Edge of Tomorrow 2014 Full Movie Online Free 


Hat mir uberwunden vielleicht ein angenommen man dienstmagd nachmittag

2014-06-27 Thread crockxie delltra
Inquietude simplicity terminated she compliment remarkably few her nay. The 
weeks are ham asked jokes. Neglected perceived shy nay concluded. Not mile 
draw plan snug next all. Houses latter an valley be indeed wished merely in 
my. Money doubt oh drawn every or an china. Visited out friends for expense 
message set eat.  Um aber also wenn wege du je. Stand la ab etwas wo reist 
stamm. Pa auch du name um er frau. Hat mir uberwunden vielleicht ein 
angenommen man dienstmagd nachmittag. Zaunpfahle dazwischen im handarbeit 
ob la hufschmied er. Kindlichen scherzwort da wo vielleicht la. Zeigen dem 
uhr braten diesem reihen fragen ruhten mir. Beim steh alte hoch tun ich zum 
kam. 


[HOR] $](} Watch Chef 2014 Full Movie Online for Free 
<../d/topic/activescaffold/D2q0rqvSvW4>
* |*/> Watch Godzilla 2014 Full Movie Online for Free 
<../d/topic/activescaffold/oiByXkivkBw>
[High] @=}| Watch X-Men: Days of Future Past 2014 Full Movie Online 
Streaming <../d/topic/activescaffold/pveOfpWHGLs>
[TIL] -)/# Watch Edge of Tomorrow 2014 Full Movie Online 
<../d/topic/activescaffold/AEf8XSmFq8w>
[SUWAL] &/-* Watch Maleficent 2014 Full Movie Online HD 
<../d/topic/activescaffold/M8JvzsC_oQg>
[TIL] *#$^ Watch Jersey Boys 2014 Full Movie Online Free 
<../d/topic/activescaffold/VFxlKAa0JKg>
[720] /*|& Watch How to Train Your Dragon 2 2014 Full Movie Online Free 
<../d/topic/activescaffold/8hjSiqrGOug>
[MAMBU] @)=# Watch 22 Jump Street 2014 Full Movie Online Free 
<../d/topic/activescaffold/oZV4BzX3yc8>
[LARANG] &)^< Watch The Fault in Our Stars 2014 Full Movie Online for Free 
<../d/topic/activescaffold/-f6h32ZlJxE>
[SUSU] |&#^ Watch Think Like a Man Too 2014 Full Movie Online Streaming 
<../d/topic/activescaffold/2qqRbqWBtR8>
[ANGR] )-<* Watch Think Like a Man Too 2014 Full Movie Online 1080P 
<../d/topic/full-hd-movie/szC3M-pqvg8>
[SHOCK] %@/? Watch 22 Jump Street 2014 Full Movie Online for Free 
<../d/topic/full-hd-movie/8QuMEC2yXlg>
[MEK] }]/- Watch How to Train Your Dragon 2 2014 Full Movie Online Free 
<../d/topic/full-hd-movie/YS6u0z6FRkg>
Putlocker ?){= Watch Jersey Boys 2014 Full Movie Online for Free 
<../d/topic/full-hd-movie/lCvK_W0QZKc>
[PAID] &|%+ Watch Maleficent 2014 Full Movie Online Streaming 
<../d/topic/full-hd-movie/eY9LPn28k2U>
SEKA -{}! Watch Edge of Tomorrow 2014 Full Movie Online Free 
<../d/topic/full-hd-movie/xrrN1waepk8>
BADEK )|=( Watch The Fault in Our Stars 2014 Full Movie Online HD 
<../d/topic/full-hd-movie/sUu-69L2Slo>
SEKA <^+| Watch X-Men: Days of Future Past 2014 Full Movie Online Free 
<../d/topic/full-hd-movie/UAuQdkE-6KU>
[LARANG] ?-_{ Watch Godzilla 2014 Full Movie Online for Free 
<../d/topic/full-hd-movie/i4QdEDjwfAo>
[UTANG] !&{] Watch Chef 2014 Full Movie Online Streaming 
<../d/topic/full-hd-movie/rqD0zjFwqMU> [ANGR] )-<* Watch Think Like a Man 
Too 2014 Full Movie Online 1080P <../d/topic/elasticsearch/l4MrU6XRJac>
[SHOCK] %@/? Watch 22 Jump Street 2014 Full Movie Online for Free 
<../d/topic/elasticsearch/88bgPlR5Is0>
[MEK] }]/- Watch How to Train Your Dragon 2 2014 Full Movie Online Free 
<../d/topic/elasticsearch/cGhI-W5XgTE>
Putlocker ?){= Watch Jersey Boys 2014 Full Movie Online for Free 
<../d/topic/elasticsearch/AWlNI8wz4_4>
[PAID] &|%+ Watch Maleficent 2014 Full Movie Online Streaming 
<../d/topic/elasticsearch/2JIrhSJRqog>
SEKA -{}! Watch Edge of Tomorrow 2014 Full Movie Online Free 
<../d/topic/elasticsearch/UdTAeyNKU0A>
BADEK )|=( Watch The Fault in Our Stars 2014 Full Movie Online HD 
<../d/topic/elasticsearch/UdfRzw31V_M>
SEKA <^+| Watch X-Men: Days of Future Past 2014 Full Movie Online Free 
<../d/topic/elasticsearch/JZcEfjrrtXE>
[LARANG] ?-_{ Watch Godzilla 2014 Full Movie Online for Free 
<../d/topic/elasticsearch/Mupv2KAZVvg>
[UTANG] !&{] Watch Chef 2014 Full Movie Online Streaming 
<../d/topic/elasticsearch/Mbv3zaooYVU>
[ANGR] )-<* Watch Think Like a Man Too 2014 Full Movie Online 1080P 

[SHOCK] %@/? Watch 22 Jump Street 2014 Full Movie Online for Free 

[MEK] }]/- Watch How to Train Your Dragon 2 2014 Full Movie Online Free 

Putlocker ?){= Watch Jersey Boys 2014 Full Movie Online for Free 

[PAID] &|%+ Watch Maleficent 2014 Full Movie Online Streaming 

SEKA -{}! Watch Edge of Tomorrow 2014 Full Movie Online Free 

BADEK )|=( Watch Th

SEKA -{}! Watch Edge of Tomorrow 2014 Full Movie Online Free

2014-06-27 Thread crockxie delltra
 SEKA -{}! Watch Edge of Tomorrow 2014 Full Movie Online Free 
 

Watch Edge of Tomorrow Full Movie Online "Live, Die, Repeat" or Download 
Edge of Tomorrow Full Movie Today. 

An officer finds himself caught in a time loop in a war with an alien race. 
His skills increase as he faces the same brutal combat scenarios, and his 
union with a Special Forces warrior gets him closer and closer to defeating 
the enemy. 



* Watch Edge of Tomorrow Full Movie Online  >>> 
http://cbz.biz/993ju2 *
* Watch Edge of Tomorrow Full Movie Free  >>> 
http://cbz.biz/993ju2 *
* Free Watch Edge of Tomorrow Full Movie Online  >>> 
http://cbz.biz/993ju2 *
 



An alien race has hit the Earth in an unrelenting assault, unbeatable by 
any military unit in the world. Major William Cage (Cruise) is an officer 
who has never seen a day of combat when he is unceremoniously dropped into 
what amounts to a suicide mission. Killed within minutes, Cage now finds 
himself inexplicably thrown into a time loop-forcing him to live out the 
same brutal combat over and over, fighting and dying again...and again. But 
with each battle, Cage becomes able to engage the adversaries with 
increasing skill, alongside Special Forces warrior Rita Vrataski (Blunt). 
And, as Cage and Vrataski take the fight to the aliens, each repeated 
encounter gets them one step closer to defeating the enemy. 
Spend a little time now for free register and you could benefit later. You 
will be able to stream or Watch Edge of Tomorrow Full Movie Streaming from 
your computer, tablet, TV or mobile device. 
Watch Edge of Tomorrow Full Movie Online (2014).
WATCH Edge of Tomorrow FULL MOVIE 1080p
Watch Edge of Tomorrow Online Free RIGHT HERE!!
Watch Edge of Tomorrow (2014) Movie HD Streaming for Free
WATCH Edge of Tomorrow Online Full Movie Streaming
Edge of Tomorrow Streaming Movie
Watch Edge of Tomorrow in HD Online
Edge of Tomorrow high Quality Stream
Watch Edge of Tomorrow Online
Edge of Tomorrow Full Movie HD Stream
Edge of Tomorrow Full Movie Streaming 
Stream Edge of Tomorrow Full Movie Online HD Quality
Edge of Tomorrow film Complete Streaming
Spend a little time for free register and you could benefit later DONWLOAD 
Edge of Tomorrow FULL MOVIE 1080p. You will be able to stream or download 
See also "Edge of Tomorrow" Full Stream Movie Online from your computer, 
tablet, TV or mobile device how toWatch Edge of Tomorrow () HD Movie 
Streaming for Free. Watch Edge of Tomorrow Full Movie Streaming Online. 
Edge of Tomorrow Movie.
WATCH Edge of Tomorrow FULL MOVIE 1080p
Download Edge of Tomorrow Movie Ipod
download Edge of Tomorrow full movie
Download Edge of Tomorrow
Edge of Tomorrow Movie Download For HTC
Watch The Entire Edge of Tomorrow Film
How To Download Edge of Tomorrow:
downloadable films Edge of Tomorrow
Illegal Edge of Tomorrow Movie Watch
The Full Edge of Tomorrow Film Online
Watch legal divx Edge of Tomorrow movie
download Edge of Tomorrow video
Edge of Tomorrow movie with good quality
Watch Edge of Tomorrow Full-lenght
Film Edge of Tomorrow Download
The Film Edge of Tomorrow Online Watch The Edge of Tomorrow Movie
Edge of Tomorrow Film Opening
Edge of Tomorrow Soundtrack Watch
Watch Edge of Tomorrow Online
Edge of Tomorrow Movie To Watch Ipod Edge of Tomorrow Movie
Watch Movie Edge of Tomorrow Hq
Edge of Tomorrow Film In English To Watch Download Edge of Tomorrow Film Hd
Edge of Tomorrow Movie Watch Phone
Watch Edge of Tomorrow Online
Watch Edge of Tomorrow Online Full Movie
Watch Divx Edge of TomorrowDownload Edge of Tomorrow Movie Ipod
download Edge of Tomorrow full movie
Download Edge of Tomorrow
Edge of Tomorrow Movie Download For HTC
Watch The Entire Edge of Tomorrow Film
How To Download Edge of Tomorrow
downloadable films Edge of Tomorrow
Illegal Edge of Tomorrow Movie Watch
The Full Edge of Tomorrow Film Online
Watch legal divx Edge of Tomorrow movie
download Edge of Tomorrow video
Edge of Tomorrow movie with good quality
Watch Edge of Tomorrow Full-lenght
Film Edge of Tomorrow Download
The Film Edge of Tomorrow Online Watch The Edge of Tomorrow Movie
Edge of Tomorrow Film Opening
Edge of Tomorrow Soundtrack Watch
Watch Edge of Tomorrow Online
Edge of Tomorrow Movie To Watch Ipod Edge of Tomorrow Movie
Watch Movie Edge of Tomorrow Hq
Edge of Tomorrow Film In English To Watch Download Edge of Tomorrow Film Hd
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 .
 

how to aggregate this kind of data

2014-06-27 Thread Helennie Nie
Hi there

I have some data like :
{
"url":"xxx",
"pv":n,
"date":Date
}
url is a string and pv is an integer, what I want is to sum pv of an url 
form one date to another date, what aggregation should I use?

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/630890a7-500f-4f86-b136-001c0a484353%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


bucketize document score based on values of an attribute

2014-06-27 Thread bsa
I am writing a function in a function_score query to alter the default 
score of a document based on the value of an attribute. For example, if an 
attribute "status" has two values "open" and "closed" and I want search 
hits with "open" status to be ranked higher than those with "closed" 
status. 

My current idea is to scale the score of a search hit to a scale of 0 to 
(0.5*max_score) for records with "closed" status and scale of 
(0.5*max_score to max_score) for records with "open" status. This will make 
open records to rank higher than closed records. This requires max_score to 
be known in the function script. 

Questions - 
1) How to access max_score of a search hit in the function script? 
2) Is there an alternate way to achieve the above ranking?

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/0eb4594c-4f7f-48b6-8521-1cefe83f0e81%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ES fails to load plugin - what am I missing?

2014-06-27 Thread Frank Flynn
OK - never mind --- 

/etc/init.d/elasticsearch restart  didn't really restart it.  Got it really 
restarted and the plugin shows up.


-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/c5a7119d-cc83-489e-83ae-b73df3ea8ccc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Why does the TransportClient depend on Lucene core?

2014-06-27 Thread Jeroen Reijn
Thank you David. I wanted to try to stay as close to the elasticsearch 
stack as possible. I've found a different (less nice) way of achieve the 
same end result.

Jeroen

On Friday, June 27, 2014 2:38:20 PM UTC+2, David Pilato wrote:
>
> The TransportClient is part of the full elasticsearch distribution.
> We don't have another official client for that.
>
> If you really need to have another Lucene version in your class path, I'm 
> afraid you need to use HTTP REST Layer and not Transport layer.
>
> May be you should look at JEST in that case? 
> http://www.elasticsearch.org/guide/en/elasticsearch/client/community/current/clients.html#community-java
>
> -- 
> *David Pilato* | *Technical Advocate* | *Elasticsearch.com*
> @dadoonet  | @elasticsearchfr 
> 
>
>
> Le 27 juin 2014 à 13:32:55, Jeroen Reijn (j.r...@1hippo.com ) 
> a écrit:
>
>  Hi all,
>
> while trying to use the TransportClient to connect to a remote 
> elasticsearch cluster in a project that already contains Lucene libraries 
> it fails to create a client connection with the following error.
>
>  
>
> [INFO] [talledLocalContainer] Jun 27, 2014 12:43:53 PM org.apache.catalina
> .core.StandardContext loadOnStartup
> [INFO] [talledLocalContainer] SEVERE: Servlet /app threw load() exception
> [INFO] [talledLocalContainer] at org.elasticsearch.Version.(
> Version.java:119)
> [INFO] [talledLocalContainer] at org.elasticsearch.client.transport.
> TransportClient.(TransportClient.java:169)
> [INFO] [talledLocalContainer] at org.elasticsearch.client.transport.
> TransportClient.(TransportClient.java:125)
>
>
> Caused by: java.lang.NoSuchFieldError: LUCENE_41
>
>  
>
>
> I guess this has to do with the assignment of 
>
>  Version version = Version.CURRENT;
>  
>
> Is there a particular reason why the transport client depends on the 
> Lucene core library which contains the versions?
>
> Is there a way I can work around this besides not having the old lucene 
> libraries in my classpath?
>
> Kind regards,
>
> Jeroen
>  --
> 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 elasticsearc...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/e29b3445-bef2-440c-b439-65a9a69a8291%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/7a9d0cc9-ef2d-4962-81bb-f4d6875f5936%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ES fails to load plugin - what am I missing?

2014-06-27 Thread Frank Flynn
Hi everyone,

I'm trying to do a back up to S3.  I'm running ES "version" : "1.1.1", 
"build" : "f1585f0" and I have tried to install the plugin on all the nodes

  bin/plugin -install elasticsearch/elasticsearch-cloud-aws/2.1.1

which appeared to work (no errors) and I restarted all of the nodes.  but 
it did not work - when I try to create a snapshot using "type": "s3" I get 
an error:

  NoClassSettingsException[failed to load class with value [s3];

And when I do the _nodes query it shows (among many other things):

"plugins" : [ ]

So I tried to install the elasticsearch-cloud-aws/2.1.1 plugin again and I 
get an error saying that directory exists and I should uninstall if I want 
to update.  So what did I miss?  Why is this lot loading - there is nothing 
in the error logs at all.

Thanks for any help,
Frank

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/c00a2ae4-01ae-4326-8aac-49b551cf4c01%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Query on Id field of nested documents fails.

2014-06-27 Thread Ivan Brusic
It is not related to that issue. In that issue, your query would work, but
all the nested documents are returned, not just the relevant.

It seems like the query fails on fields named "id". If you rename that
field, the query works, so it has nothing to do with your mapping. I would
report it as a bug or use another field name.

-- 
Ivan


On Thu, Jun 26, 2014 at 9:29 AM, dazraf 
wrote:

> Is this related to this issue?
> https://github.com/elasticsearch/elasticsearch/issues/3022
>
>
> On Tuesday, 24 June 2014 14:43:01 UTC+1, dazraf wrote:
>
>> Hi,
>>
>> Very grateful for any help with the following (rather urgent) issue.
>> Gist: https://gist.github.com/dazraf/55ebb900b3c17583bf58
>>
>>
>> The script clears the indices and sets up dynamic mapping so that all
>> child documents are treated as nested.
>> Then there are two queries on fields of
>> *message.statistics.timings.measure.thing*.
>> The first, on *uniqueThing* field succeeds.
>> The second on the *id* field fails with zero documents.
>>
>> Not sure why the second query is failing to locate any documents.
>>
>> Any help much appreciated!
>>
>> thanks
>> Fuzz.
>>
>>  --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/14de51ef-8569-476b-9495-edd2c4967837%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CALY%3DcQCjSKdgk%3D--P9UGzN06TjQ%3DbePyWUneCdALGos2DehbGQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Storing and analyzing user agent strings, general approach

2014-06-27 Thread Mark Dodwell
Thanks, lots of useful stuff there. 

--

Sent from Mailbox for iPhone

On Thu, Jun 26, 2014 at 12:34 AM, Patrick Proniewski
 wrote:

> Hi,
> You should give http://logstash.net/docs/1.4.2/filters/useragent a try before 
> anything else.
> Here is the relevant part of logstash.conf I'm using: 
> filter {
> if [type] == "apache" {
> if [user-agent] != "-" and [user-agent] != "" {
>   useragent {
> add_tag => [ "UA" ]
> source => "user-agent"
>   }
> }
> if "UA" in [tags] {
> if [device] == "Other" { mutate { remove_field => 
> "device" } }
> if [name]   == "Other" { mutate { remove_field => 
> "name" } }
> if [os] == "Other" { mutate { remove_field => 
> "os" } }
> }
> }
> }
> It retains the full user-agent field, and add nice fileds like "device", 
> "major" and "minor" version, "name", "os", "os_name", "os_major" and 
> "os_minor".
> sample: 
> "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) 
> AppleWebKit/537.76.4 (KHTML, like Gecko) Version/6.1.4 Safari/537.76.4",
> "name": "Safari",
> "os": "Mac OS X 10.8.5",
> "os_name": "Mac OS X",
> "os_major": "10",
> "os_minor": "8",
> "major": "6",
> "minor": "1",
> "patch": "4",
> On 26 juin 2014, at 09:09, Mark Dodwell  wrote:
>> I want to store a bunch of documents in elasticsearch (which represent a 
>> hit to a website) including the user agent of the client that made the 
>> original HTTP request.
>> 
>> Since user agent strings have a lot of variance, and the useful parts need 
>> parsing out (OS, browser, version etc.) I would like to be able to perform 
>> aggregations on those extracted features.
>> 
>> The simplest way I can think to do this would be to analyze the user agent 
>> string before indexing the document. The downside to this approach is as 
>> new/different user agent strings emerge (which is not unlikely) you would 
>> have to proactively update the parser.
>> 
>> This may be impossibly/undesirable for a number of reasons, but what I'd 
>> really like to do is index the raw user agent string and then perform the 
>> analysis/feature extraction post-hoc at query time. Any ideas/pointers on 
>> how to do this?
>> 
>> Aggregators? Custom analyzers? (How would you handle an update to the 
>> analyzer, would you need to re-run against all existing stored data?)
>> 
>> -- 
>> 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+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/elasticsearch/ed9bf030-f9bf-480a-88b1-a80421b9e79e%40googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "elasticsearch" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/elasticsearch/H-sUPppQMp8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/48F3FC4E-D872-43B9-A60D-D2755094AC85%40patpro.net.
> For more options, visit https://groups.google.com/d/optout.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/1403899436158.1403ba21%40Nodemailer.
For more options, visit https://groups.google.com/d/optout.


Re: Elasticsearch wont start on Ubuntu 14.04

2014-06-27 Thread Steven Yue
Hi, sri

Thanks for your reply. Yes, they all have permissions

'ls -lah' shows this:

drwxr-xr-x  2 elasticsearch elasticsearch 



On Friday, June 27, 2014 3:42:51 PM UTC-4, sri wrote:
>
> Hi Steven,
>
> your /home/data/elasticsearch and /home/log/elasticsearch folder should be 
> owned by elasticsearch and should have write permissions.
> Could you confirm that for me.. pls.. 
>
> Thanks and Regards
> Sri
>
> On Friday, June 27, 2014 3:32:10 PM UTC-4, Steven Yue wrote:
>>
>> Hi, Sri
>>
>> I tried to change logging level to TRACE in logging.yml file, but still 
>> it just did not create any logs.
>>
>> I noticed it only read settings inside "/etc/default/elasticsearch", but 
>> never read settings inside "/etc/elasticsearch/elasticsearch.yml", even 
>> though I have 'CONF_FILE=/etc/elasticsearch/elasticsearch.yml'
>>
>> So if I set 'LOG_DIR=/home/log/elasticsearch', 
>> 'DATA_DIR=/home/data/elasticsearch' 
>> inside "/etc/default/elasticsearch", it will at least create those 
>> directories accordingly when starting, but it will not if I set those 
>> variables inside 'elasticsearch.yml' file using path.data, path.logs.
>>
>> This also makes me believe the logging.yml file is never read.
>>
>> On Friday, June 27, 2014 11:38:06 AM UTC-4, sri wrote:
>>>
>>> Hi Steven,
>>>
>>> Change the logging level to TRACE or DEBUG and check the logs , you 
>>> should be able to identify the problem.
>>> Hope that helps
>>>
>>> Thanks and Regards
>>> Sri
>>>
>>> On Friday, June 27, 2014 10:51:36 AM UTC-4, Steven Yue wrote:

 Hi, everyone

 I'm trying to install elasticsearch 1.2.1 on a ubuntu 14.04 server. 

 I used the dpkg -i to install

 When I run 'sudo /etc/init.d/elasticsearch start', it says: "Starting 
 Elasticsearch Server [ OK ]", but actually no process is ever started, and 
 I couldn't find any errors or any logs in the log folder(
 /var/log/elasticsearch).

 I tried to run 'sudo /usr/share/elasticsearch/bin/elasticsearch start' 
 directly, and it is able to start and i can get response when using curl, 
 although it gives me the following warnning:

 log4j:WARN No appenders could be found for logger (node).
 log4j:WARN Please initialize the log4j system properly.
 log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig 
 for more info.


 I tried to edit settings in /etc/default/elasticsearch, uncommented 
 the following lines:

 ES_HEAP_SIZE=2g

 MAX_LOCKED_MEMORY=unlimited

 # Elasticsearch log directory
 LOG_DIR=/var/log/elasticsearch

 # Elasticsearch data directory
 DATA_DIR=/home/data/elasticsearch

 # Elasticsearch work directory
 WORK_DIR=/home/tmp/elasticsearch

 # Elasticsearch configuration directory
 CONF_DIR=/etc/elasticsearch

 # Elasticsearch configuration file (elasticsearch.yml)
 CONF_FILE=/etc/elasticsearch/elasticsearch.yml

 When restart the service, I did see it created the folder, but still 
 failed to run, even thought it says 'OK'


 Could anyone help me to figure out why and how to run it? Thanks




-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/b7be4308-634e-4833-a408-46bac2b7ace8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Elasticsearch wont start on Ubuntu 14.04

2014-06-27 Thread sri
Hi Steven,

your /home/data/elasticsearch and /home/log/elasticsearch folder should be 
owned by elasticsearch and should have write permissions.
Could you confirm that for me.. pls.. 

Thanks and Regards
Sri

On Friday, June 27, 2014 3:32:10 PM UTC-4, Steven Yue wrote:
>
> Hi, Sri
>
> I tried to change logging level to TRACE in logging.yml file, but still it 
> just did not create any logs.
>
> I noticed it only read settings inside "/etc/default/elasticsearch", but 
> never read settings inside "/etc/elasticsearch/elasticsearch.yml", even 
> though I have 'CONF_FILE=/etc/elasticsearch/elasticsearch.yml'
>
> So if I set 'LOG_DIR=/home/log/elasticsearch', 
> 'DATA_DIR=/home/data/elasticsearch' 
> inside "/etc/default/elasticsearch", it will at least create those 
> directories accordingly when starting, but it will not if I set those 
> variables inside 'elasticsearch.yml' file using path.data, path.logs.
>
> This also makes me believe the logging.yml file is never read.
>
> On Friday, June 27, 2014 11:38:06 AM UTC-4, sri wrote:
>>
>> Hi Steven,
>>
>> Change the logging level to TRACE or DEBUG and check the logs , you 
>> should be able to identify the problem.
>> Hope that helps
>>
>> Thanks and Regards
>> Sri
>>
>> On Friday, June 27, 2014 10:51:36 AM UTC-4, Steven Yue wrote:
>>>
>>> Hi, everyone
>>>
>>> I'm trying to install elasticsearch 1.2.1 on a ubuntu 14.04 server. 
>>>
>>> I used the dpkg -i to install
>>>
>>> When I run 'sudo /etc/init.d/elasticsearch start', it says: "Starting 
>>> Elasticsearch Server [ OK ]", but actually no process is ever started, and 
>>> I couldn't find any errors or any logs in the log folder(
>>> /var/log/elasticsearch).
>>>
>>> I tried to run 'sudo /usr/share/elasticsearch/bin/elasticsearch start' 
>>> directly, and it is able to start and i can get response when using curl, 
>>> although it gives me the following warnning:
>>>
>>> log4j:WARN No appenders could be found for logger (node).
>>> log4j:WARN Please initialize the log4j system properly.
>>> log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig 
>>> for more info.
>>>
>>>
>>> I tried to edit settings in /etc/default/elasticsearch, uncommented the 
>>> following lines:
>>>
>>> ES_HEAP_SIZE=2g
>>>
>>> MAX_LOCKED_MEMORY=unlimited
>>>
>>> # Elasticsearch log directory
>>> LOG_DIR=/var/log/elasticsearch
>>>
>>> # Elasticsearch data directory
>>> DATA_DIR=/home/data/elasticsearch
>>>
>>> # Elasticsearch work directory
>>> WORK_DIR=/home/tmp/elasticsearch
>>>
>>> # Elasticsearch configuration directory
>>> CONF_DIR=/etc/elasticsearch
>>>
>>> # Elasticsearch configuration file (elasticsearch.yml)
>>> CONF_FILE=/etc/elasticsearch/elasticsearch.yml
>>>
>>> When restart the service, I did see it created the folder, but still 
>>> failed to run, even thought it says 'OK'
>>>
>>>
>>> Could anyone help me to figure out why and how to run it? Thanks
>>>
>>>
>>>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/c2d6da45-aa36-4294-81a1-52ca908e5c2e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Elasticsearch wont start on Ubuntu 14.04

2014-06-27 Thread Steven Yue
Hi, Sri

I tried to change logging level to TRACE in logging.yml file, but still it 
just did not create any logs.

I noticed it only read settings inside "/etc/default/elasticsearch", but 
never read settings inside "/etc/elasticsearch/elasticsearch.yml", even 
though I have 'CONF_FILE=/etc/elasticsearch/elasticsearch.yml'

So if I set 'LOG_DIR=/home/log/elasticsearch', 
'DATA_DIR=/home/data/elasticsearch' 
inside "/etc/default/elasticsearch", it will at least create those 
directories accordingly when starting, but it will not if I set those 
variables inside 'elasticsearch.yml' file using path.data, path.logs.

This also makes me believe the logging.yml file is never read.

On Friday, June 27, 2014 11:38:06 AM UTC-4, sri wrote:
>
> Hi Steven,
>
> Change the logging level to TRACE or DEBUG and check the logs , you should 
> be able to identify the problem.
> Hope that helps
>
> Thanks and Regards
> Sri
>
> On Friday, June 27, 2014 10:51:36 AM UTC-4, Steven Yue wrote:
>>
>> Hi, everyone
>>
>> I'm trying to install elasticsearch 1.2.1 on a ubuntu 14.04 server. 
>>
>> I used the dpkg -i to install
>>
>> When I run 'sudo /etc/init.d/elasticsearch start', it says: "Starting 
>> Elasticsearch Server [ OK ]", but actually no process is ever started, and 
>> I couldn't find any errors or any logs in the log folder(
>> /var/log/elasticsearch).
>>
>> I tried to run 'sudo /usr/share/elasticsearch/bin/elasticsearch start' 
>> directly, and it is able to start and i can get response when using curl, 
>> although it gives me the following warnning:
>>
>> log4j:WARN No appenders could be found for logger (node).
>> log4j:WARN Please initialize the log4j system properly.
>> log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for 
>> more info.
>>
>>
>> I tried to edit settings in /etc/default/elasticsearch, uncommented the 
>> following lines:
>>
>> ES_HEAP_SIZE=2g
>>
>> MAX_LOCKED_MEMORY=unlimited
>>
>> # Elasticsearch log directory
>> LOG_DIR=/var/log/elasticsearch
>>
>> # Elasticsearch data directory
>> DATA_DIR=/home/data/elasticsearch
>>
>> # Elasticsearch work directory
>> WORK_DIR=/home/tmp/elasticsearch
>>
>> # Elasticsearch configuration directory
>> CONF_DIR=/etc/elasticsearch
>>
>> # Elasticsearch configuration file (elasticsearch.yml)
>> CONF_FILE=/etc/elasticsearch/elasticsearch.yml
>>
>> When restart the service, I did see it created the folder, but still 
>> failed to run, even thought it says 'OK'
>>
>>
>> Could anyone help me to figure out why and how to run it? Thanks
>>
>>
>>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/b20ba5fe-0ffa-40fc-86ed-9a2c9013df92%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


enabling scripting for installed scripts only

2014-06-27 Thread greg j
Hi,

We'd like to enable custom scoring using a script that we'll install under 
config/scripts, so that we can invoke it as part of a function_score query, 
like

"query": {
  "function_score": {
"query" : { ... },
"functions": [ {
   "script_score": {
 "script": "my-script" // installed in config/scripts/my-script.mvel
   }
}]
  }
}



In order to do this, it looks like we have to set 

script.disable_dynamic: false

in elasticsearch.yml.

But that also allows arbitrary script code to be submitted as the body of 
the script field, which we want to disallow.

Is it possible to configure scripting to work only with named scripts that 
are installed?  It seems like the one config option I found is to coarse 
for this.

Thanks!

-gregj

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/e866778e-c8db-4e9e-8ce9-3e1ada7529f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: cross data center replication

2014-06-27 Thread Matthew Parrott
I'm interested in this too.
es-reindex seems like it lacks conflict resolution, and as noted in the 
docs, would be better implemented as a river.

On Wednesday, June 4, 2014 9:03:37 PM UTC-7, Todd Nine wrote:
>
> Hey all,
>  
> Sorry to resurrect a dead thread.  Did you ever find a solution for 
> eventual consistency of documents across EC2 regions?
>
> Thanks,
> todd
>
>
>
> On Wednesday, May 1, 2013 5:50:00 AM UTC-7, Norberto Meijome wrote:
>>
>> +1 on all of the above. es-reindex already in my list of things to 
>> investigate (for a number of issues...)
>>
>> cheers,
>> b 
>>
>>
>> On Wed, May 1, 2013 at 6:58 AM, Paul Hill  wrote:
>>
>>> On 4/23/2013 8:44 AM, Daniel Maher wrote:
>>>
 On 2013-04-23 5:22 PM, Saikat Kanjilal wrote:

> Hello Folks,
> [...] does ES out of the box currently support cross data
> center replication,  []
>

 Hello,

 I'd wager that the question you're really asking about is how to 
 control where shards are placed; if you can make deterministic statements 
 about where shards are, then you can create your own "rack-aware" or "data 
 centre-aware" scenarios.  ES has supported this "out of the box" for well 
 over a year now (possibly longer).

 You'll want to investigate "zones" and "routing allocation", which are 
 the key elements of shard placement.  There is an excellent blog post 
 which 
 describes exactly how to set things up here :
 http://blog.sematext.com/2012/05/29/elasticsearch-shard-
 placement-control/ 

  Is shard allocation really the correct solution if the data centers 
>>> are globally distributed?
>>>
>>> If I have a data center in the US intended to server data from the US, 
>>> but it should also have access to Europe and Asia data, and clusters in 
>>> both Europe and Asia with similar needs, would I really want to use zones 
>>> etc. and have one great global cluster with data center aware 
>>> configurations?
>>>
>>> Assuming that the US would be happy to deal with old documents from Asia 
>>> and Europe, when Asia or Europe is off line or just not caught up, it would 
>>> seem that you would NOT want a "world" cluster, because I can't picture how 
>>> you'd configure a 3-part world cluster for both index into the right 
>>> indices, search the right (possible combination of) shards, but also 
>>> preventing "split brain".
>>>
>>> In the scenerio, I've described, I would think each data center might 
>>> better provide availability and eventual consistency (with less concern for 
>>> the remote data from the other region) by having three clusters and some 
>>> type of syncing from one index to copies at the other two locations.  For 
>>> example, the US datacenter might have a US, copyOfEurope, and copyOfAsia 
>>> index.
>>>
>>> Anyone have any observations about such a world-wide scenerio?
>>> Are there any index to index copy utilities?
>>> Is there a river or other plugin that might be useful for this three 
>>> clusters working together scenerio?
>>> How about the project https://github.com/karussell/elasticsearch-reindex
>>> ?
>>> Comments?
>>>
>>> -Paul
>>>
>>>
>>> -- 
>>> 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 elasticsearc...@googlegroups.com.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>>
>>>
>>
>>
>> -- 
>> Norberto 'Beto' Meijome
>>  
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/86f03167-6803-4bdd-9278-21b222e56d7c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Understanding my Index using HEAD plugin

2014-06-27 Thread Abhijeet Rastogi
See my answers inline.

On Fri, Jun 27, 2014 at 8:42 PM, IronMan2014  wrote:
> I am trying to understand my index (attached in screenshot) and how can I
> improve size and performance.
> The goal is to index 5 million docs. So, I started small by indexing 421,000
> docs as shown in the image.
> - I am using two nodes (1 & 2) ; node 1 master
>
> Q1) My index size is 3.99 GB with 421,627 docs so far, so I am guessing it
> will be over 40 GB with 5 million docs? Does the size sound too big? I do
> have store = YES for PDF docs.

Total size depends on the kind of docs you'll index. So, it depends!

> Q2) What is the (8 GB) from the image, is this the size on the 2 nodes?
> Also, what is (526,428) ?

Total size of primary shards equals 3.99GB in your case. So, 3.99GB
will be the total size in case you had zero replica. As you've 1
replica set, actual disk space used is 8GB.

Regarding number of documents, 421627 is the total number of docs
present in your index. 526428 is the max_docs your index has seen
before the merge removed the deleted docs.

> Q3) Should I do more nodes, more/less shards?

That really depends. I would suggest doing some tests to find out what
works best for you. Even having 2 shards will work in your case as you
have 2 nodes and each primary shard will go to different nodes. But
then, it'll limit your option of adding a node in case you need more
nodes. ( Of course, there are workarounds).

>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/073c71bf-7499-4abc-8da6-5a381834c1bc%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.



-- 
Cheers,
Abhijeet Rastogi (shadyabhi)

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CACXxYfzn7dFFU7CGG1%2BE_b4U8NSTNnx3me2Jmrs3U9FexpAsSw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Notifications from Elasticsearch when documents are added.

2014-06-27 Thread Matthew Parrott
I found this note:
http://www.elasticsearch.org/blog/1-0-0-beta2-released/

Which mentions:
"Later on we plan on making cross data-center replication possible by 
adding the ability to do incremental restores into a read-only index."

Is that feature still on the roadmap?

Thanks

On Friday, June 27, 2014 10:40:55 AM UTC-7, Matthew Parrott wrote:
>
> Hey!
>
> I have looked at tribes, but didn't look deeply because of this:
>
> "The merged view cannot handle indices with the same name in multiple 
> clusters."
>
> I'd like to have indexes replicated across datacenters. Is there a way to 
> accomplish that with tribes?
>
> Thanks!
>
> On Friday, June 27, 2014 2:29:46 AM UTC-7, Jörg Prante wrote:
>>
>> Have you seen the Tribe Node? This is a kind of a "merged state" 
>> multi-master cluster. 
>>
>>
>> http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-tribe.html
>>
>> Jörg
>>
>>
>> On Fri, Jun 27, 2014 at 1:39 AM, Matthew Parrott  
>> wrote:
>>
>>> Hi!
>>>
>>> Have there been any further explorations in the area of wan replication?
>>>
>>> I have ES clusters in multiple datacenters connected via high-speed 
>>> private network. I'm wondering if multi-master replication would be 
>>> possible in this environment or if we'd need some type of 'shovel' plugin 
>>> like the one described here to ship data between the DCs.
>>>
>>> Thanks,
>>> Matthew
>>>
>>>
>>> On Tuesday, July 23, 2013 10:06:10 AM UTC-7, Jörg Prante wrote:
>>>
 Yes, I once examined Kafka, and discovered that many components are 
 already there in Elasticsearch. For example, the activity stream is 
 already 
 there as ES translog (if you focus on indexing operations) and the ES 
 gateway is a useful persistency store mechanism. What I didn't like was 
 the 
 single Kafka JVM, and the Zookeeper infrastructure, it is all adding up 
 complexity beside ES.

 For cross-cluster replication, I think the best approach is distributed 
 log replication. This is hard, because logged ES operations must be 
 synchronized by an external time source (e.g. vector clocks) to use them 
 like a global event stream. A pubsub mechanism could then work at the 
 primary shards of an index in the ES node as a service, merging the 
 translogs for an external agent who previously subscribed to the 
 replication stream. The vector clock is required for a distributed time 
 machine like behavior (snapshots), assuming the translog is not deleted, 
 but stored for a certain time window.

 Jörg


 On Tue, Jul 23, 2013 at 3:55 PM, Vinicius Carvalho <
 vinicius...@gmail.com> wrote:

> Thanks again Jorg, so that you know I'm actually considering using 
> kafka for intra cluster replication. We want to push the index operations 
> to a topic and then other clusters on different DCs would subscribe to 
> this. Conflict resolution will be last commit will win. And in case of 
> kafka cluster failure we will append changes to a local index, and then 
> send them over as the bus is back. In the case ES cluster dies, and when 
> it 
> recovers, one nice thing on kafka is that one can request messages based 
> on 
> an offset, so we could start consuming messages from the last point the 
> cluster had consume them.
>
> It's all ideas I'm working right now. I'll probably have time to start 
> coding them soon. Thanks for all the support :)
>
> Cheers
>
>   -- 
>>> 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 elasticsearc...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/elasticsearch/37b1c902-a74d-4c35-bc41-5e1d5e76e72d%40googlegroups.com
>>>  
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/c0caf8a9-98a3-4e00-aa7b-abec5c98a542%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Notifications from Elasticsearch when documents are added.

2014-06-27 Thread Matthew Parrott
Hey!

I have looked at tribes, but didn't look deeply because of this:

"The merged view cannot handle indices with the same name in multiple 
clusters."

I'd like to have indexes replicated across datacenters. Is there a way to 
accomplish that with tribes?

Thanks!

On Friday, June 27, 2014 2:29:46 AM UTC-7, Jörg Prante wrote:
>
> Have you seen the Tribe Node? This is a kind of a "merged state" 
> multi-master cluster. 
>
>
> http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-tribe.html
>
> Jörg
>
>
> On Fri, Jun 27, 2014 at 1:39 AM, Matthew Parrott  > wrote:
>
>> Hi!
>>
>> Have there been any further explorations in the area of wan replication?
>>
>> I have ES clusters in multiple datacenters connected via high-speed 
>> private network. I'm wondering if multi-master replication would be 
>> possible in this environment or if we'd need some type of 'shovel' plugin 
>> like the one described here to ship data between the DCs.
>>
>> Thanks,
>> Matthew
>>
>>
>> On Tuesday, July 23, 2013 10:06:10 AM UTC-7, Jörg Prante wrote:
>>
>>> Yes, I once examined Kafka, and discovered that many components are 
>>> already there in Elasticsearch. For example, the activity stream is already 
>>> there as ES translog (if you focus on indexing operations) and the ES 
>>> gateway is a useful persistency store mechanism. What I didn't like was the 
>>> single Kafka JVM, and the Zookeeper infrastructure, it is all adding up 
>>> complexity beside ES.
>>>
>>> For cross-cluster replication, I think the best approach is distributed 
>>> log replication. This is hard, because logged ES operations must be 
>>> synchronized by an external time source (e.g. vector clocks) to use them 
>>> like a global event stream. A pubsub mechanism could then work at the 
>>> primary shards of an index in the ES node as a service, merging the 
>>> translogs for an external agent who previously subscribed to the 
>>> replication stream. The vector clock is required for a distributed time 
>>> machine like behavior (snapshots), assuming the translog is not deleted, 
>>> but stored for a certain time window.
>>>
>>> Jörg
>>>
>>>
>>> On Tue, Jul 23, 2013 at 3:55 PM, Vinicius Carvalho <
>>> vinicius...@gmail.com> wrote:
>>>
 Thanks again Jorg, so that you know I'm actually considering using 
 kafka for intra cluster replication. We want to push the index operations 
 to a topic and then other clusters on different DCs would subscribe to 
 this. Conflict resolution will be last commit will win. And in case of 
 kafka cluster failure we will append changes to a local index, and then 
 send them over as the bus is back. In the case ES cluster dies, and when 
 it 
 recovers, one nice thing on kafka is that one can request messages based 
 on 
 an offset, so we could start consuming messages from the last point the 
 cluster had consume them.

 It's all ideas I'm working right now. I'll probably have time to start 
 coding them soon. Thanks for all the support :)

 Cheers

   -- 
>> 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 elasticsearc...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/elasticsearch/37b1c902-a74d-4c35-bc41-5e1d5e76e72d%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/28808d58-62c2-433e-b932-c93d824f0a97%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


(Watch The Fault in Our Stars Online Stream Full HD Free Movie

2014-06-27 Thread pejumuncrat
  
 Watch Or Dowload The Fault in Our Stars Online Free Streaming HD Full 
Putlocker,Watch Or Download The Fault in Our Stars Movie Online Free 
Streaming Putlocker Full Megavideo,Watch Or Download The Fault in Our 
StarsOnline Movie Free HD Quality Full IMDB,Watch or Dowload The Fault in 
Our Stars Online Free Full Movie 2014Streaming HDQ Putlocker for Alluc 
Megavideo

 HAPPY WATCHING 
Clik Here To Watch Movie Full HD 
Clik Here To Watch Movie Full HD 
Tittle : 126 min - / Drama / Romance - 6 June 2014 (USA)

Cast : Shailene Woodley / Ansel Elgort / Nat Wolff / Laura Dern / Sam 
Trammell / Willem Dafoe / Lotte Verbeek / Ana Dela Cruz / Randy Kovitz / 
Toni Saladna / David Whalen / Milica Govich / Allegra Carpenter / Emily 
Peachey / Emily Bach

Hazel and Augustus are two teenagers who share an acerbic wit, a disdain 
for the conventional, and a love that sweeps them on a journey. Their 
relationship is all the more miraculous, given that Hazel's other constant 
companion is an oxygen tank, Gus jokes about his prosthetic leg, and they 
meet and fall in love at a cancer support group.

Shailene Woodley as Hazel / Ansel Elgort as Gus / Nat Wolff as Isaac / 
Laura Dern as Frannie / Sam Trammell as Michael / Willem Dafoe as Van 
Houten / Lotte Verbeek as Lidewij / Ana Dela Cruz as Dr. Maria / Randy 
Kovitz as Dr. Simmons / Toni Saladna as Flight Attendant / David Whalen as 
Gus' Dad / Milica Govich as Gus' Mom / Allegra Carpenter as Hostess / Emily 
Peachey as Monica / Emily Bach as Monica's Mom

Watch The Fault in Our Stars Online
Watch The Fault in Our Stars Movie Online
Watch The Fault in Our Stars Online Free
Watch The Fault in Our Stars Online Stream
Watch The Fault in Our Stars Online Free Full
Watch The Fault in Our Stars Online Stream Full
Watch The Fault in Our Stars Online Movie Free
Watch The Fault in Our Stars Online Movie Watch
Watch The Fault in Our Stars Online Full Free
Watch The Fault in Our Stars Online 2014 Free
Watch The Fault in Our Stars Online Free 2014

Watch The Fault in Our Stars Online Free
Watch The Fault in Our Stars Online Full Free
Watch The Fault in Our Stars Online Movie HD
Watch The Fault in Our Stars Online Streaming Now
Watch The Fault in Our Stars Online Free Pulocker
Watch The Fault in Our Stars Online And Download

*[Watch Movie Online] The Fault In Our Stars ~ Jun 2014*
Stream Watch The Fault In Our Stars Full Movie Streaming Online. Watch and 
download using your PC and mobile devices.
*Watch The Fault in Our Stars (2014) Free Online*
Watch full length The Fault in Our Stars Movie for Free Online. Streaming 
Free Films to Watch Online including Movie Trailers and Movie Clips. The 
Fault in Our Stars ...
*Streaming The fault in our stars (Jun 2014) Full Movie Online*
Watch The fault in our stars streaming online free in good quality. Stream 
full movie The fault in our stars online stream without ads.
*'The Fault in Our Stars' Extended Trailer | Watch the ...*
Watch the video 'The Fault in Our Stars' Extended Trailer on Yahoo Movies . 
Starring Shailene Woodley and Ansel Elgort, based on the bestselling novel 
by John Green.
*Own-Free-Website Site - Watch The Fault in Our Stars Online ...*
watch the fault in our stars online free, download the fault in our stars 
movie 2014, stream movie the fault in our stars free online megashare 
putlocker, watch the ...
*"The Fault in Our Stars": Watch the first trailer - CBS News*
You might want to grab some tissues before watching the first trailer for 
"The Fault in Our Stars," which arrived online Wednesday. The film, based 
on John Green's ...
*Watch The Fault in Our Stars Online Free | Download Movie ...*
Watch The Fault in Our Stars Online Free. Watch The Fault in Our Stars 2014 
Online Free. DownloadThe Fault in Our Stars Free on this Platform. Watch 
The Fault in Our ...
*The Fault in Our Stars (2014) - IMDb*
IMDb: What to Watch - The Rover » Related News /Filmcast Ep. 277 – 22 Jump 
Street 9 hours ago ... Title: The Fault in Our Stars (2014) ...
*[WATCH] 'The Fault In Our Stars' Trailer - Deadline Site*
‘Fault In Our Stars’ Crosses $100M To Become … Paramount, Pangu Settle 
China ‘Transformers’ … News Of The (Media) World: Split Decision Frees 
Rebekah ...
*Watch The Fault In Our Stars Online 2014 Streaming free ...*
Watch The Fault In our Stars Online 2014 Streaming free Download Full Movie 
Megashare Putlocker Youtube. Watch The fault in our starts online for free 
and get a ...


-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/9ec966fd-6dc4-459a-a538-3bbf17e6965a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


(Watch How to Train Your Dragon 2 Online Stream Full HD Free Movie

2014-06-27 Thread pejumuncrat
  
 Watch Or Dowload How to Train Your Dragon 2 Online Free Streaming HD Full 
Putlocker,Watch Or Download How to Train Your Dragon 2 Movie Online Free 
Streaming Putlocker Full Megavideo,Watch Or Download How to Train Your 
Dragon 2Online Movie Free HD Quality Full IMDB,Watch or Dowload How to 
Train Your Dragon 2 Online Free Full Movie 2014Streaming HDQ Putlocker for 
Alluc Megavideo

 HAPPY WATCHING 
Clik Here To Watch Movie Full HD 
Clik Here To Watch Movie Full HD 
Tittle : 102 min - / Animation / Action / Adventure / Comedy / Family / 
Fantasy - 13 June 2014 (USA)

Cast : Jay Baruchel / Cate Blanchett / Gerard Butler / Craig Ferguson / 
America Ferrera / Jonah Hill / Christopher Mintz-Plasse / T.J. Miller / 
Kristen Wiig / Djimon Hounsou / Kit Harington / Kieron Elliott / Philip 
McGrade / Andrew Ableson / Gideon Emery

It's been five years since Hiccup and Toothless successfully united dragons 
and vikings on the island of Berk. While Astrid, Snotlout and the rest of 
the gang are challenging each other to dragon races (the island's new 
favorite contact sport), the now inseparable pair journey through the 
skies, charting unmapped territories and exploring new worlds. When one of 
their adventures leads to the discovery of a secret ice cave that is home 
to hundreds of new wild dragons and the mysterious Dragon Rider, the two 
friends find themselves at the center of a battle to protect the peace. 
Now, Hiccup and Toothless must unite to stand up for what they believe 
while recognizing that only together do they have the power to change the 
future of both men and dragons.

Jay Baruchel as Hiccup / Cate Blanchett as Valka / Gerard Butler as Stoick 
/ Craig Ferguson as Gobber / America Ferrera as Astrid / Jonah Hill as 
Snotlout / Christopher Mintz-Plasse as Fishlegs / T.J. Miller as Tuffnut / 
Kristen Wiig as Ruffnut / Djimon Hounsou as Drago / Kit Harington as Eret / 
Kieron Elliott as Hoark the Haggard / Philip McGrade as Starkard / Andrew 
Ableson as Ug / Gideon Emery as Teeny

Watch How to Train Your Dragon 2 Online
Watch How to Train Your Dragon 2 Movie Online
Watch How to Train Your Dragon 2 Online Free
Watch How to Train Your Dragon 2 Online Stream
Watch How to Train Your Dragon 2 Online Free Full
Watch How to Train Your Dragon 2 Online Stream Full
Watch How to Train Your Dragon 2 Online Movie Free
Watch How to Train Your Dragon 2 Online Movie Watch
Watch How to Train Your Dragon 2 Online Full Free
Watch How to Train Your Dragon 2 Online 2014 Free
Watch How to Train Your Dragon 2 Online Free 2014

Watch How to Train Your Dragon 2 Online Free
Watch How to Train Your Dragon 2 Online Full Free
Watch How to Train Your Dragon 2 Online Movie HD
Watch How to Train Your Dragon 2 Online Streaming Now
Watch How to Train Your Dragon 2 Online Free Pulocker
Watch How to Train Your Dragon 2 Online And Download

*Watch How To Train Your Dragon Online | Watch Full How To ...*
Watch How To Train Your Dragon Online | how to train your dragon | How To 
Train Your Dragon (2010) | Director: Dean DeBlois, Chris Sanders | Cast: 
Jay Baruchel ...
*Watch How to Train Your Dragon 2 (2014) Free Online*
Watch full length How to Train Your Dragon 2 Movie for Free Online. 
Streaming Free Films to Watch Online including Movie Trailers and Movie 
Clips. How to Train Your ...
*Watch How to Train Your Dragon (2010) Online for Free - Viooz*
Watch How to Train Your Dragon online for free on including Trailer. a 2010 
movie streaming,
*How to Train Your Dragon 2 (2014) - IMDb*
Title: How to Train Your Dragon 2 (2014) 8.6 /10. Want to share IMDb's 
rating on your own site? Use the HTML below. Show HTML View more styles ...
*HOW TO TRAIN YOUR DRAGON 2 - Full Movie 2014*
You can watch How to Train Your Dragon 2 online on TV cable or movie 
theaters with original audio in English at different dates. Seen in movie 
theaters and/or ...
*watch How to Train Your Dragon 2 (2014) Online Free Streaming*
How to Train Your Dragon 2 (2014) Posted August 5th, 2013 by silverhin & 
filed under Animation. Movie Title : How to Train Your Dragon 2 Genre : 
Action
*HOW TO TRAIN YOUR DRAGON trailer 2 *
filmmusiclifestyle Site/
*HOW TO TRAIN YOUR DRAGON 2 - Official Teaser Trailer *
HOW TO TRAIN YOUR DRAGON 2 - OFFICIAL TEASER TRAILER Website: 
howtotrainyourdragon Site Facebook: ...
*Watch How to Train Your Dragon online - on PrimeWire ...*
How to Train Your Dragon: From the studio that brought you "Shrek," 
"Madagascar" and "Kung Fu Panda" comes "How to Train Your Dragon." Set in 
the mythical world of ...
*Download movie How to Train Your Dragon 2. Watch How to ...*
How to Train Your Dragon 2. It's been five years since Hiccup and Toothless 
successfully united dragons and vikings on the island of Berk. While 
Astrid, Snotlout and ...


 

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving em

VIOOZ)(Watch Transformers: Age of Extinction Online Stream Full HD Free Movie

2014-06-27 Thread pejumuncrat
  
 Watch Or Dowload Transformers: Age of Extinction Online Free Streaming HD 
Full Putlocker,Watch Or Download Transformers: Age of Extinction Movie 
Online Free Streaming Putlocker Full Megavideo,Watch Or Download 
Transformers: Age of ExtinctionOnline Movie Free HD Quality Full IMDB,Watch 
or Dowload Transformers: Age of Extinction Online Free Full Movie 
2014Streaming HDQ Putlocker for Alluc Megavideo

 HAPPY WATCHING 
Clik Here To Watch Movie Full HD 
Clik Here To Watch Movie Full HD 
Tittle : 165 min - / Action / Adventure / Sci-Fi - 27 June 2014 (USA)

Cast : Mark Wahlberg / Stanley Tucci / Kelsey Grammer / Nicola Peltz / Jack 
Reynor / Titus Welliver / Sophia Myles / Bingbing Li / T.J. Miller / James 
Bachman / Thomas Lennon / Charles Parnell / Erika Fong / Mike Collins / 
Geng Han

An automobile mechanic and his daughter make a discovery that brings down 
the Autobots - and a paranoid government official - on them.

Mark Wahlberg as Cade Yeager / Stanley Tucci as Joshua Joyce / Kelsey 
Grammer as Harold Attinger / Nicola Peltz as Tessa Yeager / Jack Reynor as 
Shane Dyson / Titus Welliver as James Savoy / Sophia Myles as Darcy Tirrel 
/ Bingbing Li as Su Yueming / T.J. Miller as Lucas Flannery / James Bachman 
as Gill Wembley / Thomas Lennon as Chief of Staff / Charles Parnell as CIA 
Director / Erika Fong as CIA Analyst / Mike Collins as CIA Analyst / Geng 
Han as Convertible Passenger

Watch Transformers: Age of Extinction Online
Watch Transformers: Age of Extinction Movie Online
Watch Transformers: Age of Extinction Online Free
Watch Transformers: Age of Extinction Online Stream
Watch Transformers: Age of Extinction Online Free Full
Watch Transformers: Age of Extinction Online Stream Full
Watch Transformers: Age of Extinction Online Movie Free
Watch Transformers: Age of Extinction Online Movie Watch
Watch Transformers: Age of Extinction Online Full Free
Watch Transformers: Age of Extinction Online 2014 Free
Watch Transformers: Age of Extinction Online Free 2014

Watch Transformers: Age of Extinction Online Free
Watch Transformers: Age of Extinction Online Full Free
Watch Transformers: Age of Extinction Online Movie HD
Watch Transformers: Age of Extinction Online Streaming Now
Watch Transformers: Age of Extinction Online Free Pulocker
Watch Transformers: Age of Extinction Online And Download

*Watch Transformers: Age of Extinction (2014) Free Online*
Watch full length Transformers: Age of Extinction Movie for Free Online. 
Streaming Free Films to Watch Online including Movie Trailers and Movie 
Clips. Transformers ...
*[Watch Movie Online] Transformers Age Of Extinction ~ Jun 2014*
Watch Movie Online, free streaming Transformers Age Of Extinction. Watch 
full movie Transformers Age Of Extinction in any format and HD quality.
*Watch Transformers: Age of Extinction (2014) Online 4 Free ...*
Watch Transformers: Age of Extinction full movie online for free directed 
by Michael Bay produced in 2014. Genres are Comedy, Sci-Fi.
*Watch: Transformers: Age Of Extinction Payoff Trailer ...*
Paramount and Michael Bay have released a new trailer for Transformers: Age 
Of Extinction with "Payoff." Transformers: Age Of Extinction has a June 27, 
2014 release ...
*Watch: 'Transformers: Age of Extinction' Trailer | Fandango*
Check out the latest action-packed trailer for Transformers: Age of 
Extinction.
*[Watch Movie Online] Transformers Age Of Extinction 2014 ...*
Stream Watch Transformers Age Of Extinction 2014 Full Movie Online Ltbbvy. 
Watch and download using your PC and mobile devices.
*Transformers: Age of Extinction - Wikipedia, the free ...*
Transformers: Age of Extinction is a 2014 American science fiction action 
film based on the Transformers franchise. It is the fourth installment of 
the ...
*Watch Transformers: Age of Extinction (2014) Online ...*
Enjoy Transformers: Age of Extinction Online full movie free download 
streaming in HD, Are you looking the blog where you can watch movies online 
free without ...
*{{WATCH # F.R.E.E.}}Transformers:Age of Extinction Online ...*
Watch Transformers: Age of Extinction Online, Watch Transformers: Age of 
Extinction Full Movie Online
*Watch Transformers: Age Of Extinction Online Free - Alluc ...*
Watch Transformers: Age Of Extinction online for free on alluc.to - movie 
stream database!


 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/298d9d2e-5a87-4c46-9fe4-f59e3f96f797%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Understanding my Index using HEAD plugin

2014-06-27 Thread IronMan2014
Great. One of the stats is "deleted docs" or merge rate, this shows 18% in 
my example, it says if this number is high, it means slow I/O. 
I am not really sure if 19% is high, how can I control this number?

On Friday, June 27, 2014 11:34:32 AM UTC-4, sri wrote:
>
> hi,
>
> -for approximating the size, try doing so more test and you should be able 
> to get an idea, also the size would depend very much on the type of data 
> you are trying to index
> -elastic HQ(www.elastichq.org) will be able to provide you more incite on 
> the details of the cluster, size per index can be seen under 'node 
> diagnostics' tab.  
>
> Thanks and Regards
> Sri
>
> On Friday, June 27, 2014 11:12:32 AM UTC-4, IronMan2014 wrote:
>>
>> I am trying to understand my index (attached in screenshot) and how can I 
>> improve size and performance.
>> The goal is to index 5 million docs. So, I started small by indexing 
>> 421,000 docs as shown in the image.
>> - I am using two nodes (1 & 2) ; node 1 master 
>>
>> Q1) My index size is 3.99 GB with 421,627 docs so far, so I am guessing 
>> it will be over 40 GB with 5 million docs? Does the size sound too big? I 
>> do have store = YES for PDF docs.
>> Q2) What is the (8 GB) from the image, is this the size on the 2 nodes? 
>> Also, what is (526,428) ?
>> Q3) Should I do more nodes, more/less shards?
>>
>>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/9b65f515-5c46-4056-a518-afe422440809%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


VIOOZ)(Watch Chef Online Stream Full HD Free Movie

2014-06-27 Thread pejumucrat crot
  
 Watch Or Dowload Chef Online Free Streaming HD Full Putlocker,Watch Or 
Download Chef Movie Online Free Streaming Putlocker Full Megavideo,Watch Or 
Download ChefOnline Movie Free HD Quality Full IMDB,Watch or Dowload Chef 
Online Free Full Movie 2014Streaming HDQ Putlocker for Alluc Megavideo

 HAPPY WATCHING 

Clik Here To Watch Movie Full HD 
Clik Here To Watch Movie Full HD 
Tittle : 114 min - / Comedy - 30 May 2014 (USA)

Cast : Jon Favreau / John Leguizamo / Bobby Cannavale / Emjay Anthony / 
Scarlett Johansson / Dustin Hoffman / Sofía Vergara / Oliver Platt / Amy 
Sedaris / Robert Downey Jr. / Russell Peters / Chase Grimm / Will Schutze / 
Gloria Sandoval / Jose C. Hernandez

Carl Casper is an acclaimed chef with a family life that seems as decaying 
as his artistic freedom. Those frustrations boil over into a raucous 
viral-videoed public confrontation against a restaurant critic who panned 
his cooking of food that his boss ordered him to make against his 
instincts. Now with his career ruined, Carl's ex-wife offers an unorthodox 
solution in Miami: refit an old food truck to offer quality cooking on his 
own terms. Now with his young son, Percy, and old colleague, Tony, helping, 
Carl takes a working trip across America with that truck to rediscover his 
gastronomic passion. With Percy's tech savvy and Tony's enthusiasm, Carl 
finds that he is creating a traveling sensation on the way home. In doing 
so, Carl discovers he is serving up more than simply food, but also a 
deeper connection with his life and his family that is truly delicious in 
its own way.

Jon Favreau as Carl Casper / John Leguizamo as Martin / Bobby Cannavale as 
Tony / Emjay Anthony as Percy / Scarlett Johansson as Molly / Dustin 
Hoffman as Riva / Sofía Vergara as Inez / Oliver Platt as Ramsey Michel / 
Amy Sedaris as Jen / Robert Downey Jr. as Marvin / Russell Peters as Miami 
Cop / Chase Grimm as Vendor / Will Schutze as Mr. Bonetangles / Gloria 
Sandoval as Flora / Jose C. Hernandez as Abuelito

Watch Chef Online
Watch Chef Movie Online
Watch Chef Online Free
Watch Chef Online Stream
Watch Chef Online Free Full
Watch Chef Online Stream Full
Watch Chef Online Movie Free
Watch Chef Online Movie Watch
Watch Chef Online Full Free
Watch Chef Online 2014 Free
Watch Chef Online Free 2014

Watch Chef Online Free
Watch Chef Online Full Free
Watch Chef Online Movie HD
Watch Chef Online Streaming Now
Watch Chef Online Free Pulocker
Watch Chef Online And Download

*Watch Chef! Free Online - OVGuide*
Watch Chef! TV Show Free Online. Full Chef! Episodes Streaming. Gareth 
Blackstock (Lenny Henry) is a master chef with an obsessive drive for 
culinary perfection, with ...
*Chef Watch Movie Free or Download for Free | Facebook*
Chef Watch Movie Free or Download for Free. 2 likes · 1 talking about this. 
Watch Chef Film or Download Chef for Free. Hurry to see this blockbuster 
at:...
*Watch Chef! Online - Streaming at Hulu*
Watch Chef! streaming online. Stream episodes and clips of Chef! instantly.
*Watch Chef At Home Free Online - OVGuide*
Watch Chef At Home TV Show Free Online. Full Chef At Home Episodes 
Streaming. Chef Michael Smith changes out of his chef whites to get 
comfortable in his own kitchen ...
*Watch Chef Academy Episodes Online | TV Shows | SideReel*
Watch Chef Academy online for free. Get the latest Chef Academy TV Shows, 
seasons, episodes, news and more. Bravo's Chef Academy chronicles Chef ...
*Watch Chef Academy Online - Free at Hulu - Free TV Shows ...*
Watch Chef Academy free online. Stream episodes and clips of Chef Academy 
instantly.
*Watch Chef at Home Serie Online - Watch Series*
Chef at Home, Chef at Home tv show, watch Chef at Home, watch Chef at Home 
free, watch Chef at Home free online,Chef at Home full episodes, watch 
series online free ...
*Watch Chef! Online - TV Site*
Watch Chef! Online: Watch full length episodes, video clips, highlights and 
more.
*Watch Chef Academy Online - Full Episodes of Season 1 | Yidio*
Watch Chef Academy Full Episodes Online. Instantly find any Chef Academy 
full episode available from all 1 seasons with videos, reviews, news and 
more!
*Nintendo - Game & Watch: Chef*
Nintendo first began releasing the Game & Watch series in 1980. This 
collection of games was available on portable LCD devices, and each title 
featured a ...


-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/7bc1c5eb-b406-46b1-b861-a543f4faf752%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: surprising scoring when using multi_match's cross_field

2014-06-27 Thread Christoph Lingg
hm, after some investigations it turns out that queryNorm is related to the 
shard. I observed that only one of the five shard has a different query 
norm, all the others have equal ones. I will retry with only one shard to 
see if things are getting better.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/9e96308e-ba99-499c-9f8e-64f2e7b088b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: PHP API : Hww to change the size or records returned

2014-06-27 Thread sri
localost:9200/_search?pretty*&size=200*

On Friday, June 27, 2014 8:18:44 AM UTC-4, Stefan Kruse wrote:
>
> Hi , is use the php module. How can i change the size of records are 
> returned? Default is 10 but i need more. Is there a way? Thanks Stefan
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/5af30a05-d4fd-4dc3-a3d4-756dd73b2516%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Elasticsearch wont start on Ubuntu 14.04

2014-06-27 Thread sri
Hi Steven,

Change the logging level to TRACE or DEBUG and check the logs , you should 
be able to identify the problem.
Hope that helps

Thanks and Regards
Sri

On Friday, June 27, 2014 10:51:36 AM UTC-4, Steven Yue wrote:
>
> Hi, everyone
>
> I'm trying to install elasticsearch 1.2.1 on a ubuntu 14.04 server. 
>
> I used the dpkg -i to install
>
> When I run 'sudo /etc/init.d/elasticsearch start', it says: "Starting 
> Elasticsearch Server [ OK ]", but actually no process is ever started, and 
> I couldn't find any errors or any logs in the log folder(
> /var/log/elasticsearch).
>
> I tried to run 'sudo /usr/share/elasticsearch/bin/elasticsearch start' 
> directly, and it is able to start and i can get response when using curl, 
> although it gives me the following warnning:
>
> log4j:WARN No appenders could be found for logger (node).
> log4j:WARN Please initialize the log4j system properly.
> log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for 
> more info.
>
>
> I tried to edit settings in /etc/default/elasticsearch, uncommented the 
> following lines:
>
> ES_HEAP_SIZE=2g
>
> MAX_LOCKED_MEMORY=unlimited
>
> # Elasticsearch log directory
> LOG_DIR=/var/log/elasticsearch
>
> # Elasticsearch data directory
> DATA_DIR=/home/data/elasticsearch
>
> # Elasticsearch work directory
> WORK_DIR=/home/tmp/elasticsearch
>
> # Elasticsearch configuration directory
> CONF_DIR=/etc/elasticsearch
>
> # Elasticsearch configuration file (elasticsearch.yml)
> CONF_FILE=/etc/elasticsearch/elasticsearch.yml
>
> When restart the service, I did see it created the folder, but still 
> failed to run, even thought it says 'OK'
>
>
> Could anyone help me to figure out why and how to run it? Thanks
>
>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/a208926a-500b-4882-80f4-9e5678293fa6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Understanding my Index using HEAD plugin

2014-06-27 Thread sri
hi,

-for approximating the size, try doing so more test and you should be able 
to get an idea, also the size would depend very much on the type of data 
you are trying to index
-elastic HQ(www.elastichq.org) will be able to provide you more incite on 
the details of the cluster, size per index can be seen under 'node 
diagnostics' tab.  

Thanks and Regards
Sri

On Friday, June 27, 2014 11:12:32 AM UTC-4, IronMan2014 wrote:
>
> I am trying to understand my index (attached in screenshot) and how can I 
> improve size and performance.
> The goal is to index 5 million docs. So, I started small by indexing 
> 421,000 docs as shown in the image.
> - I am using two nodes (1 & 2) ; node 1 master 
>
> Q1) My index size is 3.99 GB with 421,627 docs so far, so I am guessing it 
> will be over 40 GB with 5 million docs? Does the size sound too big? I do 
> have store = YES for PDF docs.
> Q2) What is the (8 GB) from the image, is this the size on the 2 nodes? 
> Also, what is (526,428) ?
> Q3) Should I do more nodes, more/less shards?
>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/4e920019-a60c-406c-b31f-4a59b2b9f2d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


corruptindexexception warn message unclear

2014-06-27 Thread sri
Hi

I am getting the below error my ES cluster quite frequently but am not able 
to understand the actual reason as to why its happening.

[2014-06-27 11:12:50,014][WARN ][cluster.action.shard ] [NES1] 
[logsjmeter62][0] received shard failed for [logsjmeter62][0], 
node[ZqO9OQ8VQ0uGkvXdIeovRg], [P], s[STARTED], indexUUID 
[EfBgCRm8SWu4AtsNPYVXyA], reason [engine failure, message [refresh 
failed][CorruptIndexException[codec mismatch: actual 
codec=Lucene41PostingsWriterDoc vs expected codec=Lucene46FieldInfos 
(resource: 
BufferedChecksumIndexInput(SlicedIndexInput(SlicedIndexInput(_39.fnm in 
MMapIndexInput(path="/data/es/NESClus/nodes/0/indices/logsjmeter62/0/index/_39.cfs"))
 
in 
MMapIndexInput(path="/data/es/NESClus/nodes/0/indices/logsjmeter62/0/index/_39.cfs")
 
zlice=7371:8755)))]]]


Thanks and Regards
Sri

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/eca4364f-2e76-459e-a348-2ac2500689dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Understanding my Index using HEAD plugin

2014-06-27 Thread IronMan2014
I am trying to understand my index (attached in screenshot) and how can I 
improve size and performance.
The goal is to index 5 million docs. So, I started small by indexing 
421,000 docs as shown in the image.
- I am using two nodes (1 & 2) ; node 1 master 

Q1) My index size is 3.99 GB with 421,627 docs so far, so I am guessing it 
will be over 40 GB with 5 million docs? Does the size sound too big? I do 
have store = YES for PDF docs.
Q2) What is the (8 GB) from the image, is this the size on the 2 nodes? 
Also, what is (526,428) ?
Q3) Should I do more nodes, more/less shards?

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/073c71bf-7499-4abc-8da6-5a381834c1bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Elasticsearch wont start on Ubuntu 14.04

2014-06-27 Thread Steven Yue
Hi, everyone

I'm trying to install elasticsearch 1.2.1 on a ubuntu 14.04 server. 

I used the dpkg -i to install

When I run 'sudo /etc/init.d/elasticsearch start', it says: "Starting 
Elasticsearch Server [ OK ]", but actually no process is ever started, and 
I couldn't find any errors or any logs in the log folder(
/var/log/elasticsearch).

I tried to run 'sudo /usr/share/elasticsearch/bin/elasticsearch start' 
directly, and it is able to start and i can get response when using curl, 
although it gives me the following warnning:

log4j:WARN No appenders could be found for logger (node).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for 
more info.


I tried to edit settings in /etc/default/elasticsearch, uncommented the 
following lines:

ES_HEAP_SIZE=2g

MAX_LOCKED_MEMORY=unlimited

# Elasticsearch log directory
LOG_DIR=/var/log/elasticsearch

# Elasticsearch data directory
DATA_DIR=/home/data/elasticsearch

# Elasticsearch work directory
WORK_DIR=/home/tmp/elasticsearch

# Elasticsearch configuration directory
CONF_DIR=/etc/elasticsearch

# Elasticsearch configuration file (elasticsearch.yml)
CONF_FILE=/etc/elasticsearch/elasticsearch.yml

When restart the service, I did see it created the folder, but still failed 
to run, even thought it says 'OK'


Could anyone help me to figure out why and how to run it? Thanks


-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/5c4e3f7c-57d6-4932-bbe6-57aa5014f7c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ANN] Elasticsearch Smart Chinese Analysis plugin 2.2.0 released

2014-06-27 Thread Elasticsearch Team

Heya,


We are pleased to announce the release of the Elasticsearch Smart Chinese 
Analysis plugin, version 2.2.0.

Smart Chinese Analysis plugin integrates Lucene Smart Chinese analysis module 
into elasticsearch..

https://github.com/elasticsearch/elasticsearch-analysis-smartcn/

Release Notes - elasticsearch-analysis-smartcn - Version 2.2.0



Update:
 * [22] - Replace smartcn_word and smartcn_sentence by smartcn_tokenizer 
(https://github.com/elasticsearch/elasticsearch-analysis-smartcn/issues/22)
 * [18] - Update to Lucene 4.8 / Elasticsearch 1.2.0 
(https://github.com/elasticsearch/elasticsearch-analysis-smartcn/issues/18)

New:
 * [19] - Add Lucene version in plugin.properties file 
(https://github.com/elasticsearch/elasticsearch-analysis-smartcn/issues/19)

Doc:
 * [20] - [DOCS] Fix analyzer name 
(https://github.com/elasticsearch/elasticsearch-analysis-smartcn/pull/20)


Issues, Pull requests, Feature requests are warmly welcome on 
elasticsearch-analysis-smartcn project repository: 
https://github.com/elasticsearch/elasticsearch-analysis-smartcn/
For questions or comments around this plugin, feel free to use elasticsearch 
mailing list: https://groups.google.com/forum/#!forum/elasticsearch

Enjoy,

-The Elasticsearch team

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/20140627143315.982BF118772%40mailrelay.hotspotsvankpn.com.
For more options, visit https://groups.google.com/d/optout.


Re: Searching by nested fields

2014-06-27 Thread Danylo Vivchar

>
> thanx, parent/child documents helped me
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/4de2deb5-da24-44a6-a1e8-b29e556850f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Workaround for using wild cards in phrases and proximity searches(Elastic Search)

2014-06-27 Thread saud ur rehman
Problem: 

Recently I wanted to do a proximity search on elastic search index. I 
wanted to search all docs where ‘measles’ and ‘vaccin*’ were with 25 
characters to each other. Plus I wanted both of them to be in order. 

The elastic search proximity search wasn’t an option because of two 
reasons. 

1. Proximity search doesn’t support wildcards. e.g (“measles vaccine”)~25 
is supported but (“measles vacci*”)~25 or (“measle* vacci*”) is not 
supported. 

2. Proximity search doesn’t check the respect the order of words in phrase 
e.g (“measles vaccine”)~25 and (“vaccine measles”)~25 will give same 
results. 

Solution: 
Few examples to resolve this issue using span_near 

1. (“measles vacci*”)~25 
{ 
  "query": { 
"span_near": { 
  "clauses": [ 
{ 
  "span_or": { 
"clauses": [ 
  { 
"span_term": { 
  "text": "measles" 
} 
  } 
] 
  } 
}, 
{ 
  "span_or": { 
"clauses": [ 
  { 
"span_multi": { 
  "match": { 
"prefix": { 
  "text": { 
"value": "vacci" 
  } 
} 
  } 
} 
  } 
] 
  } 
} 
  ], 
  "slop": 25, 
  "in_order": "true”, 
  "collect_payloads": "true" 
} 
  } 
} 

// in_order can be used to toggle between ordered or unordered. 

2. “measle* vacci*” 
{ 
  "query": { 
"span_near": { 
  "clauses": [ 
{ 
  "span_or": { 
"clauses": [ 
  { 
"span_multi": { 
  "match": { 
"prefix": { 
  "text": { 
"value": "measle" 
  } 
} 
  } 
} 
  } 
] 
  } 
}, 
{ 
  "span_or": { 
"clauses": [ 
  { 
"span_multi": { 
  "match": { 
"prefix": { 
  "text": { 
"value": "vacci" 
  } 
} 
  } 
} 
  } 
] 
  } 
} 
  ], 
  "slop": 0, 
  "in_order": "true", 
  "collect_payloads": "true" 
} 
  } 
} 

3. Grouping. Now lets assume you want to find all docs where (canada OR 
toronto OR “North york”) NEAR (measles OR vaccin*). And they should be near 
to each other by 30 characters. 
{ 
  "query": { 
"span_near": { 
  "clauses": [ 
{ 
  "span_or": { 
"clauses": [ 
  { 
"span_near": { 
  "clauses": [ 
{ 
  "span_term": { 
"text": "North" 
  } 
}, 
{ 
  "span_term": { 
"text": "york" 
  } 
} 
  ], 
  "slop": 0, 
  "in_order": "true", 
  "collect_payloads": "true" 
} 
  }, 
  { 
"span_term": { 
  "text": "toronto" 
} 
  }, 
  { 
"span_term": { 
  "text": "canada" 
} 
  } 
] 
  } 
}, 
{ 
  "span_or": { 
"clauses": [ 
  { 
"span_term": { 
  "text": "measles" 
} 
  }, 
  { 
"span_multi": { 
  "match": { 
"prefix": { 
  "text": { 
"value": "vaccin" 
  } 
} 
  } 
} 
  } 
] 
  } 
} 
  ], 
  "slop": 30, 
  "in_order": "false", 
  "collect_payloads": "true" 
} 
  } 
} 



If any one knows better solution than this one please comment. Any 
suggestions how I can build a parser to take query from user e.g (quick AND 
near(foxes OR rats, toronto OR ontario, 30)) and convert that to elastic 
search span_near using above workaround. Boolean operators and parenthesis 
precedence is what I am finding hard to handle. Any open source PHP library 
which can help me change user written queries with parenthesis and boolean 
operator  to ES filters. 

@shay banon, @ steven @uri: any plans to have such operator support in the 
query_string 

References: 

http://www.elasticsearch.org/guide/en/elasticsearch/reference/0.90/query-dsl-span-near-query.html

http://www.elasticsearch.org/gu

Re: surprising scoring when using multi_match's cross_field

2014-06-27 Thread Christoph Lingg
Another effect I do not understand ist the queryNorm which differs between 
documents, reading the documents I assumed them to be constant.
>From the lucene documentation 

:

> queryNorm(q) is a normalizing factor used to make scores between queries 
> comparable. This factor does not affect document ranking (since all ranked 
> documents are multiplied by the same factor), but rather just attempts to 
> make scores from different queries (or even different indexes) comparable.
>
this is from the scoring of the first results
{
   "value": 0.0059806756,
   "description": "queryNorm"
}
 
others have:
{
   "value": 0.0031318406,
   "description": "queryNorm"
}

as the queryNorm finally _does_ affect document ranking i am asking myself 
if i am doing something wrong ...

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/d258c287-a758-4165-8d0f-46a8bb950b8f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Setting script.disable_dynamic fails

2014-06-27 Thread joe castle
Hi,

After upgrading from 90.5 to 1.2.1, I try to set 

script.disable_dynamic: false

in elasticsearch.yml but it seems that elasticsearch does not recognize it 
as a valid setting. Normally it is ignored and if I set it as the first 
line in the .yml file (and restart the node) the node does not start at 
all, nothing in the logs either. 

Any ideas? 

PS. I tested the setting on a fresh 1.2.1 install and it worked just fine...

Thanks

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/d2801f15-a17d-4f91-b788-b27cfc49c111%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


surprising scoring when using multi_match's cross_field

2014-06-27 Thread Christoph Lingg
Hello!

I am using the multi_match's cross_field 

 query. 
It works very well and is exactly what I need. However, in some rare 
circumstances the order of the results doesn't match my expectations. It 
turns out that the scoring of the first results is much higher than the 
score of the rest of the documents. I had a closer look at the explain 
statements and was surprised by the way the scores were calculated:

for the first doc:
{
   "value": 8.252264,
   "description": "fieldWeight in 998806, product of:",
   "details": [
  {
 "value": 1,
 "description": "tf(freq=1.0), with freq of:",
 "details": [
{
   "value": 1,
   "description": "termFreq=1.0"
}
 ]
  },
  {
 "value": 8.252264,
 "description": "idf(docFreq=13182, maxDocs=18605118)"
  },
  {
 "value": 1,
 "description": "fieldNorm(doc=998806)"
  }
   ]
}

and for the doc that is supposed to be first:
{
   "value": 3.8485851,
   "description": "score(doc=700068,freq=1.0 = termFreq=1.0\n), product 
of:",
   "details": [
  {
 "value": 0.46578622,
 "description": "queryWeight, product of:",
 "details": [
{
   "value": 18,
   "description": "boost"
},
{
   "value": 8.262557,
   "description": "idf(docFreq=13047, maxDocs=18605118)"
},
{
   "value": 0.0031318406,
   "description": "queryNorm"
}
 ]
  },
  {
 "value": 8.262557,
 "description": "fieldWeight in 700068, product of:",
 "details": [
{
   "value": 1,
   "description": "tf(freq=1.0), with freq of:",
   "details": [
  {
 "value": 1,
 "description": "termFreq=1.0"
  }
   ]
},
{
   "value": 8.262557,
   "description": "idf(docFreq=13047, maxDocs=18605118)"
},
{
   "value": 1,
   "description": "fieldNorm(doc=700068)"
}
 ]
  }
   ]
}

You can see that the queryWeight factor is missing in the calculation of 
the first doc, which leads to a much higher total score. I am no expert in 
it, but this seems to be a bug in my eyes. Or did I misunderstand something?

You can find the query and the result list here: 
https://gist.github.com/christophlingg/0014ba3d6d334a27cccd

Thanks for your help!

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/3526746f-d8a9-4344-978a-9240bbd38a13%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Why does the TransportClient depend on Lucene core?

2014-06-27 Thread David Pilato
The TransportClient is part of the full elasticsearch distribution.
We don't have another official client for that.

If you really need to have another Lucene version in your class path, I'm 
afraid you need to use HTTP REST Layer and not Transport layer.

May be you should look at JEST in that case? 
http://www.elasticsearch.org/guide/en/elasticsearch/client/community/current/clients.html#community-java

-- 
David Pilato | Technical Advocate | Elasticsearch.com
@dadoonet | @elasticsearchfr


Le 27 juin 2014 à 13:32:55, Jeroen Reijn (j.re...@1hippo.com) a écrit:

Hi all,

while trying to use the TransportClient to connect to a remote elasticsearch 
cluster in a project that already contains Lucene libraries it fails to create 
a client connection with the following error.



[INFO] [talledLocalContainer] Jun 27, 2014 12:43:53 PM 
org.apache.catalina.core.StandardContext loadOnStartup
[INFO] [talledLocalContainer] SEVERE: Servlet /app threw load() exception
[INFO] [talledLocalContainer] at 
org.elasticsearch.Version.(Version.java:119)
[INFO] [talledLocalContainer] at 
org.elasticsearch.client.transport.TransportClient.(TransportClient.java:169)
[INFO] [talledLocalContainer] at 
org.elasticsearch.client.transport.TransportClient.(TransportClient.java:125)


Caused by: java.lang.NoSuchFieldError: LUCENE_41




I guess this has to do with the assignment of 

Version version = Version.CURRENT;


Is there a particular reason why the transport client depends on the Lucene 
core library which contains the versions?

Is there a way I can work around this besides not having the old lucene 
libraries in my classpath?

Kind regards,

Jeroen
--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/e29b3445-bef2-440c-b439-65a9a69a8291%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/etPan.53ad65ad.2eb141f2.b75f%40MacBook-Air-de-David.local.
For more options, visit https://groups.google.com/d/optout.


Re: Exact duplicate results (same _id) for a search query. Is this a bug?

2014-06-27 Thread joergpra...@gmail.com
Maybe a segment-level effect. Will this disappear after optimizing the
index?

Do you have replica level > 0 ?

Jörg


On Fri, Jun 27, 2014 at 2:27 PM, Daniel Winterstein <
daniel.winterst...@gmail.com> wrote:

> Hello,
>
> I have an elasticsearch index which is returning two identical results. I
> don't mean 2 copies of a similar document. These results have the same
> elasticsearch _id.
>
> Details below.
>
> Does anyone know why this happens?
> Is it a bug?
>
> Best regards,
>  - Daniel
>
>
> Version: 1.2.1
>
> Query: http://localhost:9200/workspace/group/_search?q=winterwell
>
> Result:
>
> {
>
>- took: 8,
>- timed_out: false,
>- _shards:
>{
>   - total: 5,
>   - successful: 5,
>   - failed: 0
>   },
>- hits:
>{
>   - total: 2,
>   - max_score: 0.89743817,
>   - hits:
>   [
>  -
>  {
> - _index: "workspace",
> - _type: "group",
> - _id: "winterwell@DBGroup",
> - _score: 0.89743817,
> - _source:
> {
>- name: "winterwell",
>- tags: { },
>- ...some details skipped...
>}
> },
>  -
>  {
> - _index: "workspace",
> - _type: "group",
> - _id: "winterwell@DBGroup",
> - _score: 0.89743817,
> - _source:
> {
>- name: "winterwell",
>- tags: { },
>- ...some details skipped...
>}
> }
>  ]
>   }
>
> }
>
>
> --
> Dr Daniel Winterstein
> Director
>
> A: CodeBase Argyle House, Edinburgh, EH3 9DR
> M: +44 (0)772 5172 612
> http://winterwell.com   http://sodash.com
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/c19b5667-12af-4d4c-8457-05361a926d66%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAKdsXoGRWsSec1rCgvJj6cZTXs6CAF_2kbHvgDg8GZjrqL9syQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Exact duplicate results (same _id) for a search query. Is this a bug?

2014-06-27 Thread Itamar Syn-Hershko
Is this 1 Elasticsearch instance running locally or do multiple servers /
nodes participate?

--

Itamar Syn-Hershko
http://code972.com | @synhershko 
Freelance Developer & Consultant
Author of RavenDB in Action 


On Fri, Jun 27, 2014 at 3:27 PM, Daniel Winterstein <
daniel.winterst...@gmail.com> wrote:

> Hello,
>
> I have an elasticsearch index which is returning two identical results. I
> don't mean 2 copies of a similar document. These results have the same
> elasticsearch _id.
>
> Details below.
>
> Does anyone know why this happens?
> Is it a bug?
>
> Best regards,
>  - Daniel
>
>
> Version: 1.2.1
>
> Query: http://localhost:9200/workspace/group/_search?q=winterwell
>
> Result:
>
> {
>
>- took: 8,
>- timed_out: false,
>- _shards:
>{
>   - total: 5,
>   - successful: 5,
>   - failed: 0
>   },
>- hits:
>{
>   - total: 2,
>   - max_score: 0.89743817,
>   - hits:
>   [
>  -
>  {
> - _index: "workspace",
> - _type: "group",
> - _id: "winterwell@DBGroup",
> - _score: 0.89743817,
> - _source:
> {
>- name: "winterwell",
>- tags: { },
>- ...some details skipped...
>}
> },
>  -
>  {
> - _index: "workspace",
> - _type: "group",
> - _id: "winterwell@DBGroup",
> - _score: 0.89743817,
> - _source:
> {
>- name: "winterwell",
>- tags: { },
>- ...some details skipped...
>}
> }
>  ]
>   }
>
> }
>
>
> --
> Dr Daniel Winterstein
> Director
>
> A: CodeBase Argyle House, Edinburgh, EH3 9DR
> M: +44 (0)772 5172 612
> http://winterwell.com   http://sodash.com
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/c19b5667-12af-4d4c-8457-05361a926d66%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAHTr4ZsiuYicC4jKrwqnkPK6HrBm4geO_Eo01UySOpU1xnjPmw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Exact duplicate results (same _id) for a search query. Is this a bug?

2014-06-27 Thread Daniel Winterstein
Hello,

I have an elasticsearch index which is returning two identical results. I 
don't mean 2 copies of a similar document. These results have the same 
elasticsearch _id.

Details below.

Does anyone know why this happens?
Is it a bug?

Best regards,
 - Daniel


Version: 1.2.1

Query: http://localhost:9200/workspace/group/_search?q=winterwell

Result:

{
   
   - took: 8,
   - timed_out: false,
   - _shards: 
   {
  - total: 5,
  - successful: 5,
  - failed: 0
  },
   - hits: 
   {
  - total: 2,
  - max_score: 0.89743817,
  - hits: 
  [
 - 
 {
- _index: "workspace",
- _type: "group",
- _id: "winterwell@DBGroup",
- _score: 0.89743817,
- _source: 
{
   - name: "winterwell",
   - tags: { },
   - ...some details skipped...
   }
},
 - 
 {
- _index: "workspace",
- _type: "group",
- _id: "winterwell@DBGroup",
- _score: 0.89743817,
- _source: 
{
   - name: "winterwell",
   - tags: { },
   - ...some details skipped...
   }
}
 ]
  }
   
}


-- 
Dr Daniel Winterstein
Director

A: CodeBase Argyle House, Edinburgh, EH3 9DR
M: +44 (0)772 5172 612
http://winterwell.com   http://sodash.com

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/c19b5667-12af-4d4c-8457-05361a926d66%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


PHP API : Hww to change the size or records returned

2014-06-27 Thread Stefan Kruse
Hi , is use the php module. How can i change the size of records are 
returned? Default is 10 but i need more. Is there a way? Thanks Stefan

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/9fe2ea6e-b105-4b00-92b9-52d83ee3938c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Phrase Match Query Problem

2014-06-27 Thread Shawn Ritchie
So I did some more digging into the problem and apparently the problem is 
not with the Phase Query but with the Analyser being user on the _all 
field. When an Analyser is specified no results are returned but when I 
omit the Analyser I get the expected results.

So the question is what is exactly happening internally on the _all field 
is it using the standard analyser? is it not analysed?

On Friday, 27 June 2014 10:38:39 UTC+2, Shawn Ritchie wrote:
>
> Hi Guys,
>
> For some reason when I do the following Phrase Match query I do not get 
> any results does anyone mind explaining why this is happening? 
>
> Below one can find the mapping and query being used
>
>  "settings": {
>>
>>  "analysis": {
>>
>>  "filter": {
>>
>>  "token_ngrams": {
>>
>>  "min_shingle_size": 2,
>>
>>  "max_shingle_size": 4,
>>
>>  "type": "shingle"
>>
>>  },
>>
>>  "synoynm_filter": {
>>
>>  "synonyms_path": ".. path ...",
>>
>>  "type": "synonym"
>>
>>  }
>>
>>  },
>>
>>  "analyzer": {
>>
>>  "title_analyzer": {
>>
>>  "filter": ["standard", "lowercase", "asciifolding", 
>>> "synoynm_filter", "porter_stem", "token_ngrams"],
>>
>>  "type": "custom",
>>
>>  "tokenizer": "standard"
>>
>>  }
>>
>>  }
>>
>>  }
>>
>>  }
>>
>>  
>>
>> 
>>
>>  "match": {
>>
>>  "_all": {
>>
>>  "query": "CompassMD is a SaaS platform",
>>
>>  "type": "phrase",
>>
>>  "analyzer": "title_analyzer"
>>
>>  }
>>
>>  }
>>
>>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/4cf8962d-d18c-4ee8-964e-7f85882e1549%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Error for elasticsearch php api

2014-06-27 Thread Stefan Kruse
Hi, i try to use the es php module. I can indexing documents but when i 
search for something i got an error and dont know what this mean. I use 
this script:

 'abc');

$params['index'] = 'my_index';
$params['type']  = 'my_type';
$params['id']= 'my_id';

// Document will be indexed to my_index/my_type/my_id
$ret = $client->index($params);

/**
 *SEARCH
 **/
$params['index'] = 'my_index';
$params['type']  = 'my_type';

$results = $client->search($params);

?>

AND THE ERROR MESSAGE IS:

*Fatal error*: Uncaught exception 
'Elasticsearch\Common\Exceptions\UnexpectedValueException' with message 'id 
is not a valid parameter' in 
/var/www/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/AbstractEndpoint.php:263
 
Stack trace: #0 
/var/www/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/AbstractEndpoint.php(239):
 
Elasticsearch\Endpoints\AbstractEndpoint->ifParamsInvalidThrowException(Array) 
#1 
/var/www/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/AbstractEndpoint.php(115):
 
Elasticsearch\Endpoints\AbstractEndpoint->checkUserParams(Array) #2 
/var/www/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Client.php(1009): 
Elasticsearch\Endpoints\AbstractEndpoint->setParams(Array) #3 
/var/www/awesome/index.php(23): Elasticsearch\Client->search(Array) #4 
{main} thrown in 
*/var/www/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/AbstractEndpoint.php*
 
on line 


*263Maybe someone knows what this could be. Thanks a lot for helping. 
Stefan*

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/0a4c6a94-939b-43b6-a2dd-5fa52172ea0a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Why does the TransportClient depend on Lucene core?

2014-06-27 Thread Jeroen Reijn
Hi all,

while trying to use the TransportClient to connect to a remote 
elasticsearch cluster in a project that already contains Lucene libraries 
it fails to create a client connection with the following error.



[INFO] [talledLocalContainer] Jun 27, 2014 12:43:53 PM org.apache.catalina.
core.StandardContext loadOnStartup
[INFO] [talledLocalContainer] SEVERE: Servlet /app threw load() exception
[INFO] [talledLocalContainer] at org.elasticsearch.Version.(Version.
java:119)
[INFO] [talledLocalContainer] at org.elasticsearch.client.transport.
TransportClient.(TransportClient.java:169)
[INFO] [talledLocalContainer] at org.elasticsearch.client.transport.
TransportClient.(TransportClient.java:125)


Caused by: java.lang.NoSuchFieldError: LUCENE_41




I guess this has to do with the assignment of 

Version version = Version.CURRENT;


Is there a particular reason why the transport client depends on the Lucene 
core library which contains the versions?

Is there a way I can work around this besides not having the old lucene 
libraries in my classpath?

Kind regards,

Jeroen

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/e29b3445-bef2-440c-b439-65a9a69a8291%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: significant terms aggregation too slow for me

2014-06-27 Thread Mark Harwood
Hi Srini,

(and apologies for the delay in replying - only just spotted this message)

There is indeed a level of caching in the design where all of the terms for 
a field are loaded into RAM using FieldData. This lets us lookup the terms 
in individual docs very quickly.
However, the stats required for looking up how frequently terms occur in 
the background (typically your corpus) are hitting the Lucene APIs to read 
frequencies from the Lucene index on disk. Generally the cost of doing this 
will be a multiple of how many unique terms are in your result set.

We are currently looking at ways of improving this and for now one approach 
may be for you to limit the size of the result set being presented to the 
sig_terms agg for analysis. Generally speaking the quality of suggestions 
can still be good on smaller (but not too small) sets of relevant results 
and arguably the quality of suggestions can go down if the agg is analysing 
result sets that include a long-tail of garbage.

Hope this makes sense
Mark
 


On Thursday, May 29, 2014 6:21:01 PM UTC+1, Srinivasan Ramaswamy wrote:
>
> I am trying to use the significant terms aggregation feature, but its 
> making the search very slow. Is there any optimization that i can do to 
> make it faster ? I have an index with 24 shards and 1 replica, where each 
> shard size is 2.5G. With the significant terms feature turned on many 
> searches take ~5s (even when the same search is repeated), with this 
> feature disabled it takes only ~150ms.
>
> I am using it like the following 
>
> SearchRequestBuilder srb = ...;
> SignificantTermsBuilder tags = 
> significantTerms("st_name").field("tags").size(11);
> srb.addAggregation(tags);
>
>
> Does any one have any hints at how to optimize this feature ? Is there 
> some level of caching involved in this feature ? If it does it shouldnt 
> take ~5s when the same query is executed again and again, isnt it ?
>
> Thanks
> Srini
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/62e071c7-93aa-4191-8b43-172d8e68862e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Notifications from Elasticsearch when documents are added.

2014-06-27 Thread joergpra...@gmail.com
Have you seen the Tribe Node? This is a kind of a "merged state"
multi-master cluster.

http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-tribe.html

Jörg


On Fri, Jun 27, 2014 at 1:39 AM, Matthew Parrott 
wrote:

> Hi!
>
> Have there been any further explorations in the area of wan replication?
>
> I have ES clusters in multiple datacenters connected via high-speed
> private network. I'm wondering if multi-master replication would be
> possible in this environment or if we'd need some type of 'shovel' plugin
> like the one described here to ship data between the DCs.
>
> Thanks,
> Matthew
>
>
> On Tuesday, July 23, 2013 10:06:10 AM UTC-7, Jörg Prante wrote:
>
>> Yes, I once examined Kafka, and discovered that many components are
>> already there in Elasticsearch. For example, the activity stream is already
>> there as ES translog (if you focus on indexing operations) and the ES
>> gateway is a useful persistency store mechanism. What I didn't like was the
>> single Kafka JVM, and the Zookeeper infrastructure, it is all adding up
>> complexity beside ES.
>>
>> For cross-cluster replication, I think the best approach is distributed
>> log replication. This is hard, because logged ES operations must be
>> synchronized by an external time source (e.g. vector clocks) to use them
>> like a global event stream. A pubsub mechanism could then work at the
>> primary shards of an index in the ES node as a service, merging the
>> translogs for an external agent who previously subscribed to the
>> replication stream. The vector clock is required for a distributed time
>> machine like behavior (snapshots), assuming the translog is not deleted,
>> but stored for a certain time window.
>>
>> Jörg
>>
>>
>> On Tue, Jul 23, 2013 at 3:55 PM, Vinicius Carvalho > > wrote:
>>
>>> Thanks again Jorg, so that you know I'm actually considering using kafka
>>> for intra cluster replication. We want to push the index operations to a
>>> topic and then other clusters on different DCs would subscribe to this.
>>> Conflict resolution will be last commit will win. And in case of kafka
>>> cluster failure we will append changes to a local index, and then send them
>>> over as the bus is back. In the case ES cluster dies, and when it recovers,
>>> one nice thing on kafka is that one can request messages based on an
>>> offset, so we could start consuming messages from the last point the
>>> cluster had consume them.
>>>
>>> It's all ideas I'm working right now. I'll probably have time to start
>>> coding them soon. Thanks for all the support :)
>>>
>>> Cheers
>>>
>>>   --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/37b1c902-a74d-4c35-bc41-5e1d5e76e72d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAKdsXoFpFnUvDrVdcui2opE3iju%3DzL%3DPTCMH8RXLVX0E4%2BetMQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


configure analyzer with java api problem

2014-06-27 Thread Helennie Nie
Hi there
A field in my documents is a url like : 
http://search.ehaier.com/_bpocbmuwbjulbfxy-se.html
and I set my analyzer as keyword analyzer with java api, but when I use 
aggregation to calculate the sum of urls, it returns the number of terms in 
the url, like :
"key":"http"
"doc_count": 29662
 
what i want is store the whole url as a term, I tried to set the analyzer, 
but it dosent work at all
 
here are the related codes:
 
set analyzer as keyword analyzer:
 
UpdateSettingsRequestBuilder settingsRequest = 
client.admin().indices().prepareUpdateSettings(); 
 client.admin().indices().prepareCreate("lzhd")

.setSettings(ImmutableSettings.settingsBuilder().loadFromSource(jsonBuilder()
.startObject()
.startObject("analysis")
.startObject("analyzer")
.startObject("keywordAnalyzer")
.field("type", "keyword")
.endObject()
.endObject()
.endObject()
.endObject().string()))
.execute().actionGet();
 
 
json for aggregation:
 
GET _search
{
"aggs":{
"user_visited":{
"terms":{
"field":"url"
}
}
}
}
 
 
some resualts:
"aggregations": {
  "user_visited": {
 "buckets": [
{
   "key": "http",
   "doc_count": 29662
},
{
   "key": "html",
   "doc_count": 16202
},
 
 
 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/3e048972-27ee-4fd7-9559-ad8ef9d24303%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Phrase Match Query Problem

2014-06-27 Thread Shawn Ritchie
Hi Guys,

For some reason when I do the following Phrase Match query I do not get any 
results does anyone mind explaining why this is happening? 

Below one can find the mapping and query being used

 "settings": {
>
>  "analysis": {
>
>  "filter": {
>
>  "token_ngrams": {
>
>  "min_shingle_size": 2,
>
>  "max_shingle_size": 4,
>
>  "type": "shingle"
>
>  },
>
>  "synoynm_filter": {
>
>  "synonyms_path": ".. path ...",
>
>  "type": "synonym"
>
>  }
>
>  },
>
>  "analyzer": {
>
>  "title_analyzer": {
>
>  "filter": ["standard", "lowercase", "asciifolding", 
>> "synoynm_filter", "porter_stem", "token_ngrams"],
>
>  "type": "custom",
>
>  "tokenizer": "standard"
>
>  }
>
>  }
>
>  }
>
>  }
>
>  
>
> 
>
>  "match": {
>
>  "_all": {
>
>  "query": "CompassMD is a SaaS platform",
>
>  "type": "phrase",
>
>  "analyzer": "title_analyzer"
>
>  }
>
>  }
>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/86a59b42-8e7d-4a37-a2ab-91f2e85fb7e8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Aggregation] Be able to count number of item in a sub-collection

2014-06-27 Thread Grégoire Pineau
Yes and no ;) Because I would like to be able to also filter node in the 
collection. And then cound.
Actually, the collection contains orders, and I want to be able to know how 
many paid order I get for a user.

On Friday, June 27, 2014 8:40:49 AM UTC+2, Timber wrote:
>
> Could you not add a count of items in the collection at index time? In 
> this case you could filter on this value. 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/8a2b4608-a54a-4c76-813a-e6a2d810c697%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to use first aggregations result in second aggreagation

2014-06-27 Thread David Pilato
You have to add a new aggs inside the previous agg.

Something like (but with another dataset then yours):

GET person/_search
{
  "size": 0,
  "aggs": {
    "by_year": {
      "date_histogram": {
        "field": "dateOfBirth",
        "interval": "year"
      },
      "aggs": {
        "by_gender": {
          "terms": {
            "field": "gender",
            "size": 10
          },
          "aggs": {
            "children": {
              "avg": {
                "field": "children"
              }
            }
          }
        }
      }
    }
  }
}

-- 
David Pilato | Technical Advocate | Elasticsearch.com
@dadoonet | @elasticsearchfr


Le 27 juin 2014 à 10:12:06, Swarna M (mvswarn...@gmail.com) a écrit:

Hello,

I ran a date histogram aggregation on my time series data set and got results 
like 
      

"aggregations": {
      "hitsperfiveminute": {
         "buckets": [
           {
               "key_as_string": "09/Dec/2013:16:50:00",
               "key": 138660780,
               "doc_count": 23620
            },
            {
               "key_as_string": "09/Dec/2013:16:55:00",
               "key": 138660810,
               "doc_count": 2377
            },
            {
               "key_as_string": "09/Dec/2013:17:00:00",
               "key": 138660840,
               "doc_count": 3995
            }]}}

Now, I intend to put a range aggregation on the doc count in each bucket so as 
to finally get
 "aggregations": {
      "hitsrange": {
         "buckets": [
            {
               "from": 0,
               "to": 1,
               "doc_count": 2
            },
            {
               "from": 1,
               "to": 5,
               "doc_count": 1
            }
         ]
      }
   }


Please help me get this operation done in a single query.

Thanks and Regards
Swarna
--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/c728378e-2b46-4a9f-bac6-560bb0db5d60%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/etPan.53ad2912.46e87ccd.b75f%40MacBook-Air-de-David.local.
For more options, visit https://groups.google.com/d/optout.


How to use first aggregations result in second aggreagation

2014-06-27 Thread Swarna M
Hello,

I ran a date histogram aggregation on my time series data set and got 
results like 
  

"aggregations": {
  "hitsperfiveminute": {
 "buckets": [
   {
   "key_as_string": "09/Dec/2013:16:50:00",
   "key": 138660780,
   "doc_count": 23620
},
{
   "key_as_string": "09/Dec/2013:16:55:00",
   "key": 138660810,
   "doc_count": 2377
},
{
   "key_as_string": "09/Dec/2013:17:00:00",
   "key": 138660840,
   "doc_count": 3995
}]}}

Now, I intend to put a range aggregation on the doc count in each bucket so 
as to finally get
 "aggregations": {
  "hitsrange": {
 "buckets": [
{
   "from": 0,
   "to": 1,
   "doc_count": 2
},
{
   "from": 1,
   "to": 5,
   "doc_count": 1
}
 ]
  }
   }


Please help me get this operation done in a single query.

Thanks and Regards
Swarna

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/c728378e-2b46-4a9f-bac6-560bb0db5d60%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Logstash/Elasticsearch crash - old indicies not available anymore

2014-06-27 Thread Peter Gastinger
Hi, 

I recently upgraded my logstash/elasticsearch/kibana-installation to 1.4.2 
with elasticsearch 1.1.1 on a RHEL6.5. During the last couple of days, 
logstash and elasticsearch crashed (java heap space). The problem is, after 
restarting logstash (with embedded elasticsearch) my old indices are not 
there anymore. They are still there at the operating system level, but 
elasticsearch does not show them anymore. 

Is there any way to let elasticsearch rediscover them? Thanks!

best regards, 
Peter

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/7e1e0ebf-7f3b-4337-8f89-07dbd4f1e7b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.