Elastic

Elastic 今日在纽交所上市,股价最高暴涨122%。

旧街凉风 提交于 2019-12-03 23:19:51
10 月 6 日,Elastic 正式在纽约证券交易所上市,股票代码为"ESTC"。开盘之后股价直线拉升,最高点涨幅达122%,截止到收盘涨幅回落到94%,意味着上市第一天估值接近翻倍。 该公司最初位于阿姆斯特丹,而后搬迁到加利福尼亚,其股价定价为 33 至 35 美元,高于最初的每股 26 美元至 29 美元的价格指数。 700 万普通股募集资金约 1.92 亿美元,上市首日收盘价 70 美元。Elastic 公司拥有期权的程序员们估计今天又是一个不眠夜。 Elastic 成立于 2012 年,最著名的产品是搜索引擎 Elasticsearch ,该搜索引擎以与 Google LLC 索引互联网类似的方式为企业用户索引内部数据。使用该产品的知名公司包括:思科、eBay、高盛、美国国家宇航局、微软、维基媒体基金会、三星电子和韦里逊等,下载量超过 1 亿人次。 Elastic 是一家搜索公司。作为 Elastic Stack(Elasticsearch,Kibana,Beats和Logstash)的创建者,Elastic 构建了自我管理和 SaaS 产品,使数据可以实时和大规模地用于搜索、日志记录、安全和分析用例。该产品普遍应用在各大互联网行业,从最初的日志监控工具发展成为一个全方面的监控平台。 值得注意的是,Elastic 的核心产品是开源的。该公司通过商业版本赚钱

Elastic Stack安装

☆樱花仙子☆ 提交于 2019-12-03 23:12:13
环境: OS: Centos 7.6 JDK: 1.8.0_91 下载地址: https://artifacts.elastic.co/downloads/beats/heartbeat/heartbeat-7.4.2-linux-x86_64.tar.gz https://artifacts.elastic.co/downloads/beats/packetbeat/packetbeat-7.4.2-linux-x86_64.tar.gz https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-7.4.2-linux-x86_64.tar.gz https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.4.2-linux-x86_64.tar.gz https://artifacts.elastic.co/downloads/logstash/logstash-7.4.2.tar.gz https://artifacts.elastic.co/downloads/kibana/kibana-7.4.2-linux-x86_64.tar.gz https://artifacts.elastic.co/downloads

Elastic Search 5.x Nest Multiple Queries C#

匿名 (未验证) 提交于 2019-12-03 10:24:21
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm using C# with those nuget packeges; <package id="Elasticsearch.Net" version="5.2.0" targetFramework="net462" /> <package id="NEST" version="5.2.0" targetFramework="net462" /> <package id="Newtonsoft.Json" version="9.0.1" targetFramework="net462" /> What I want to do here, I want to get "white" items in price range 2000 - 3000. It's a simple request for a search api, am I right ? So I wrote a code for this. Here it is; private static void Search(IElasticContext elasticContext, string indexName) { IQueryContainer termQueryContainer = new

AWS的自动部署工具codedeploy 负载均衡器和github

a 夏天 提交于 2019-12-03 09:59:34
Elastic Load Balancing 提供了三种可用于 CodeDeploy 部署的负载均衡器:Classic Load Balancer、Application Load Balancer 和 Network Load Balancer。 传统负载均衡器 路由和负载均衡在传输层 (TCP/SSL) 或应用程序层 (HTTP/HTTPS) 进行。它支持 EC2-Classic 或 VPC。 应用程序负载均衡器 路由和负载均衡在应用程序层 (HTTP/HTTPS) 进行,并支持基于路径的路由。它可以将请求路由到您的 Virtual Private Cloud (VPC) 中每个 EC2 实例或容器实例上的端口。 注意 应用程序负载均衡器 目标组必须有一个目标类型 instance; Network Load Balancer 路由和负载均衡在传输层(TCP/UDP 层,即第 4 层)进行,依据是从 TCP 数据包标头中而非从数据包内容中提取的地址信息。Network Load Balancer 可以处理突发流量、保留客户端的源 IP 以及在负载均衡器的使用寿命内使用固定 IP 负载均衡器在 CodeDeploy 部署中的作用 在 CodeDeploy 部署期间,负载均衡器会阻止 Internet 流量路由到未就绪的实例,目前正在部署的实例,或环境不再需要的实例。但是

AWS的自动部署工具codedeploy概述和主要组件

谁说我不能喝 提交于 2019-12-03 09:58:19
codedeploy概述: codedeploy是aws上面的一个自动部署服务,可以自动的将应用程序部署到EC2实例、本地实例(任意的线上或线下自己的一台机器)、无实例的lamda函数、ECS上面。 可以部署的应用程序包括:代码、无服务器的lamda函数、web和配置、可执行文件、包、脚本、多媒体文件。 可以部署到一个或数千个实例。 CodeDeploy提供了两种部署类型选项: 1)就地部署:停止部署组中每个实例上的应用程序,安装最新的应用程序修订版,并启动并验证新版本的应用程序。您可以使用负载平衡器,以便在部署期间取消注册每个实例,然后在部署完成后恢复为服务。只有使用EC2 / On-Premises计算平台的部署才能使用就地部署。 工作原理:创建可部署的内容,添加 应用程序规范文件 (AppSpec文件:定义了CodeDeploy执行的部署操作),将可部署内容和AppSpec文件捆绑到存档文件中,然后上传到s3或github中,此时的归档文件称为 应用程序修订版 --> 告诉codedeploy新代码或部署内容在哪,codedeploy调用一组EC2 --> 每台EC2上面的EC2实例轮询codedeploy,确定在哪获得新的内容和时间 --> 每个实例上的CodeDeploy代理从S3或GitHub上提取新代码,并使用AppSpec文件中的指令将内容部署到实例。 2)

Elastic Search Aggregate into buckets on conditions

匿名 (未验证) 提交于 2019-12-03 09:58:14
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am starting out with Elastic Search, and am stuck at trying to do some aggregation. Basically, I have a data set consisting of data in the following form: { "name": "The Chef Restaurant", "city": "New York", "state": "New York", "rating": "GOOD", "type": "Continental" } Now, I want to do some aggregation and get all the Continental restaurants, Good restaurants, Restaurants in New York in one query. Note that I don't want the count of all types of restaurants, I just want the count of the specific types. Also, these aggregations are

Graphicsmagick not working in Elastic Beanstalk with nodejs and S3

匿名 (未验证) 提交于 2019-12-03 08:57:35
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I'm using nodejs and graphicsmagick to process images with text, then streaming the final jpg to S3. Using postman, I was able to test this flow on my localhost and everything works fine. However, I'm having issues now that I moved it to Elastic Beanstalk. When I post to the endpoint, it uploads a blank file to S3 and there are no errors logged in EB. I think it has something to do with the software but am a bit stuck. Any advice appreciated! Thanks! Top file is from localhost, bottom file is from Elastic Beanstalk: http://cl.ly

AWS Elastic Beanstalk run Grunt task

匿名 (未验证) 提交于 2019-12-03 08:52:47
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to run a node.js application on elastic beanstalk. I have a client which gets build by a grunt job (jade, less, concat, etc.) I excluded this folder from git I can localy run this by grunt buildClient which is executed by grunt-cli I added grunt and grunt-cli in my packages dev-dependencies I want to run the grunt build before the application is launched, i already setup a configuration in .ebextensions/app.config container_commands: 01_build_client: command: grunt buildClient I guess my cwd is /tmp/deployment/application/ but there

AWS Elastic Beanstalk - Increase Instance Disk Capacity

匿名 (未验证) 提交于 2019-12-03 08:46:08
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to use ElasticBeanstalk for an app with some big initial space requirements. It exceeds the default 8GB capacity of the EBS disk on the EC2 instances. I tried to increase the disk capacity by using a bigger EC2 instance type. For instance, I used an m3.large, which AWS tells me should provide me with 1x32GB of storage. However, when the Beanstalk environment launches, it still only shows 8GB. I tried to run the "resize2fs" command on the instance, but it didn't expand the volume to anything over 8GB. Does anyone know how to get

Set update_all_types to true on ElasticSearch

匿名 (未验证) 提交于 2019-12-03 08:36:05
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to add some additional properties to my mappings, in this specific case I want to modify a title field in my English index so that it would use the english analyzer. Should be pretty straightforward, except that I have a title field in quite some types, and it seems to be not possible to do this. The error I have is the following : Set update_all_types to true to update [search_quote_analyzer] across all types.] But I am not able to find a single reference on how or where to set this 'update_all_types' parameter. This is the very