TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Elasticsearch Raises $70 Million

232 pointsby asm89almost 11 years ago

13 comments

jasonkolbalmost 11 years ago
I&#x27;m sitting in Elasticsearch training right now (during a caffeine break). These are some really great guys that know their stuff, and they&#x27;re committed to contributing back to the OSS version everything that makes sense. They contribute a ton of code back to Lucene and employ a lot of the brightest minds in this space.<p>On the product side, I&#x27;m sitting here being amazed at some of the problems they&#x27;ve solved very elegantly. Elasticsearch has a bright future.
评论 #7852461 未加载
评论 #7852530 未加载
评论 #7853379 未加载
ig1almost 11 years ago
If people are curious as to why VCs are interested in open-source businesses:<p><a href="http://indexventures.com/news-room/blog/a-perfect-storm-now-is-the-time-for-multibillion-dollar-open-source-companies" rel="nofollow">http:&#x2F;&#x2F;indexventures.com&#x2F;news-room&#x2F;blog&#x2F;a-perfect-storm-now-...</a>
评论 #7852199 未加载
评论 #7853652 未加载
评论 #7852278 未加载
asm89almost 11 years ago
What I find interesting about the Elasticsearch story is the success it has given that the core product (the search server) is completely open source.
评论 #7851979 未加载
pyrox420almost 11 years ago
We love Elasticsearch. It&#x27;s fast and accurate for huge amounts of data, super easy to scale, and incredibly easy to get started. That cash can only make the product better. Good for them!
jack_jenningsalmost 11 years ago
Hopefully this means that the documentation gets some help, especially some of the official libraries. So far working with ES has been a mixed bag… seems good in theory but I&#x27;ve had a hard time getting over the learning curve.
评论 #7853228 未加载
malux85almost 11 years ago
Elasticsearch is great. I have spent the last 6 months working on a project using it as the primary search technology, it has been nothing but great. I have not had any training and tried to figure it out through the online docs (which in the last overhaul have gotten much better) so forgive me if any of what I&#x27;m about to say is wrong, or better yet please correct me so I can learn :)<p>here&#x27;s the things I noticed when using it: - Since it&#x27;s schemaless by default it will guess the data type of a document based on the first value it sees, as far as I&#x27;m aware you&#x27;re not able to change a data type later on, so I found it best to create a schema (aka mapping) being explicit about the fields data types up front. I think explicit is better anyway (Zen of python ;) )<p>- It&#x27;s blazingly fast. Like crazy quick.<p>- Use the geo data type if you&#x27;re going to be doing radius queries. I&#x27;ve got 50M documents in the index and it queries insanely fast. It&#x27;s been just as fast as PostGIS (which I also love)<p>- Use this as the GUI: <a href="http://mobz.github.io/elasticsearch-head/" rel="nofollow">http:&#x2F;&#x2F;mobz.github.io&#x2F;elasticsearch-head&#x2F;</a><p>- Do some proper research on filtering before you start, start here: <a href="http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/analysis-snowball-tokenfilter.html" rel="nofollow">http:&#x2F;&#x2F;www.elasticsearch.org&#x2F;guide&#x2F;en&#x2F;elasticsearch&#x2F;referenc...</a><p>the correctly configured snowball filter will make sure things like &quot;rückwärts&quot; will match &quot;ruckwarts&quot;,
enscralmost 11 years ago
Could someone explain in a few lines why &amp; how is elasticsearch a revolutionary thing (technically) ?
评论 #7853040 未加载
评论 #7854441 未加载
评论 #7853140 未加载
评论 #7853272 未加载
评论 #7853741 未加载
评论 #7853343 未加载
评论 #7853283 未加载
groumaalmost 11 years ago
I have been prototyping with Elasticsearch for the last couple of months. I have nothing but great things to say about the software and documentation. Several other partner teams have taken notice of my work and will likely incorporate the software as well. Very exciting!
arecurrencealmost 11 years ago
Awesome! I make heavy use of elasticsearch and am very happy with the performance.<p>It&#x27;s typically the rest of the pipeline now that causes most of the latency whereas search used to be the bulk of the duration of a request.<p>It has also spurred other entities to improve their search performance :)
mooredsalmost 11 years ago
I saw these folks at gluecon. Haven&#x27;t looked at a ton of dashboard solutions, but I found Kibana to be pretty compelling, simply because it was trivial to get the elk stack up and running and input arbitrary data. I am not as interested in log data, more in business metrics.
edwintorokalmost 11 years ago
I always thought that Elasticsearch was something provided by Amazon, and hence not really interested in it. So I was rather surprised to see in the title that they raised money.<p>Apparently what Amazon provides is called Elastic <i>MapReduce</i>, not Elastic <i>Search</i>.
alexmorsealmost 11 years ago
Maybe they can finally write some docs
评论 #7857594 未加载
评论 #7857305 未加载
gshakiralmost 11 years ago
Great product and wish them best of luck. Had great success using with Hive with their Apache Hadoop plugin for doing quick analysis.