- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在带有FOSElasticaBundle的Symfony项目中使用elasticsearch,这需要ruflin/elastica客户端。为了创建索引,我使用FOSElasticaBundle的command suggested in the documentation,在我的本地计算机上一切正常。
当我将项目部署到heroku时,同一命令失败并引发以下错误:
elastica.ERROR: Elastica Request Failure {"exception":"[object] (Elastica\\Exception\\Connection\\HttpException(code: 0): Couldn't resolve host at /app/vendor/ruflin/elastica/lib/Elastica/Transport/Http.php:186)","request":{"path":"index_name/","method":"DELETE","data":[],"query":[],"connection":{"config":{"headers":[],"curl":[]},"host":"https://username:password@host","port":"443","logger":"fos_elastica.logger","compression":false,"retryOnConflict":0,"enabled":false}},"retry":false}
curl -X GET host:port/
{
"name" : "Alex Power",
"cluster_name" : "elasticsearch",
"version" : {
"number" : "2.4.0",
"build_hash" : "079e104a99267f24d3689297eb16466170b00ebc",
"build_timestamp" : "2016-10-04T20:50:33Z",
"build_snapshot" : false,
"lucene_version" : "5.5.2"
},
"tagline" : "You Know, for Search"
}
[2017-04-08 09:45:00] request.CRITICAL: Uncaught PHP Exception Elastica\Exception\Connection\HttpException: "Couldn't connect to host, Elasticsearch down?" at /var/www/vendor/ruflin/elastica/lib/Elastica/Transport/Http.php line 180 {"exception":"[object] (Elastica\\Exception\\Connection\\HttpException(code: 0): Couldn't connect to host, Elasticsearch down? at /var/www/vendor/ruflin/elastica/lib/Elastica/Transport/Http.php:180)"} []
最佳答案
我使用以下配置解决了这个问题:clients:
default:
host: ****
port: ****
transport: Https
headers:
Authorization: "Basic ************"
授予授权 token 的位置:echo -n "user:password" | base64
关于elasticsearch - 用ruflin/elastica重置索引在heroku上抛出HttpException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43216505/
我将 FOSElasticaBundle 与 symfony2 和 doctrine 2 一起使用。 我无法理解如何从搜索结果中检索实际的学说对象。我的印象是这是默认行为,但我得到了这种结果: obj
我正在使用https://github.com/ruflin/Elastica的“Elastica:elasticsearch PHP客户端”和 创建这样的查询时,无法使用订单“ASC” /“DESC
默认情况下,我的服务器上运行着一个 Elasticsearch,它运行在端口 9200 上,链接是公共(public)的,这意味着任何人都可以在任何地方插入、更新、删除任何形式的内容。我如何让它像 p
我的问题很简单。我想在 Elastica 的一个查询中组合两个过滤器,一个 filter_bool 和一个 filter_range。代码是 public function getAdvancedTw
我有一个带 Compose.io 的 Elasticsearch 集群,但我无法连接 Elastica Client。这是我的配置: $elasticaClient = new \Elasti
我只是不知道如何使用 Elastica 进行自定义查询。我有一个搜索表单来查找产品,用户可以在其中输入名称、选择类别、品牌等。 在我的产品映射中,有一个名为“category_id”的字段,其中包含您
到目前为止,我一直使用Groups批注来序列化和填充我的Elastic搜索索引,并且它仅使用“elastica”组中的字段,并且仅用于fos_elastica.yml中列出的Entities,因此运行
我正在寻找一种使用 Elastica 同时搜索多个索引的方法。 我有一个索引 products 和一个索引 user。 products 包含 {product_id, product_name, p
我正在对使用 FOS Elastica 的存储库进行单元测试,我想知道是否有人知道如何获取查询的字符串版本,而不是数组形式。这是我的存储库方法: /** * Creates quer
这是我第一次使用 Elastica 并从 ElasticSearch 查询数据 对于我来说,作为初学者,我有一个关于如何使用 Elastica 查询下面的代码的问题?: curl 'http://lo
我一直在使用 ElasticSearch 和 Elastica ( http://elastica.io/ ) 整合我们的搜索实现。 目前我无法弄清楚如何执行 count 搜索,正如 ElasticS
我正在尝试让ES QueryString匹配其中包含“和”的搜索词,但是到目前为止我尝试过的一切(尝试使用不同的分析器,tokenziers,过滤器)均无效。用MySQL的话,我想要的是: WHERE
我们有一个symfony应用程序,使用FOS \ ElasticaBundle \ Elastica-Package。一切正常。我们已经使用./app/console fos:elastica:pop
我尝试了很多事情来使用 PHP - Elastica 库 (FosElasticaBundle) 在 ElasticSearch 中执行一个简单的匹配值请求。但是没有运行。你有正确运行这种代码的想法吗
使用 PHP Elastica 库,我想知道检查 Id=1 文档是否存在的最佳方法是什么? 我是这样做的: $docPre = $elasticaType->getDocument(1); if ($
我有一个 Elastic Search 查询: { "query": { "bool": { "must": [ { "match": {"titl
我想使用elastica过滤类别中的多个匹配项: 就像是: (categories.name =“category-1” AND Categories.level = 0)AND(categories
我有 Elastica 库并在我的项目中实现了 ElasticSearch。我想从索引中删除文档。如何使用 elastica 在 elasticsearch 中按 id 删除文档?我尝试了多种解决方案
我目前正在使用FOQElasticaBundle与我的Elasticsearch服务器进行交互,但是我似乎找不到一种基于每个实体上的“ Activity ”标志来限制搜索结果的方法。是否可以通过某种方
我有一个包含许多记录的 SQL 表。当我搜索时,我不想使用所有结果,但我希望它在我想要的 id 中。 我添加了'term ' 并添加了 ' addMust ' 到 boolQuery .但是没有结果。
我是一名优秀的程序员,十分优秀!