代码之家  ›  专栏  ›  技术社区  ›  rs82uk

Elasticsearch嵌套获取和更新单个文档

  •  0
  • rs82uk  · 技术社区  · 7 年前

    我希望能够选择一个文档这里是一个文档外观示例

        {
        "_index": "myindex_products",
        "_type": "product",
        "_id": "8Wct9mEBlkDZwzEMRfbG",
    "_version": 1,
    "_score": 1,
    "_source": {
    "productId": 5749,
    "name": "Product Name Here",
    "productCode": "PRODCODE",
    "productCategoryId": 73,
    "length": 6,
    "height": 0,
    "productTypeId": 1,
    "url": "product-name-here",
    "productBrandId": 7,
    "width": 0,
    "dispatchTimeInDays": 10,
    "leadTimeInDays": 6,
    "stockAvailable": 0,
    "weightKg": 0.001,
    "reviewRating": 5,
    "reviewRatingCount": 17,
    "limitedStock": false,
    "price": 16.3,
    "productImage": "28796-14654.jpg",
    "productCategory": {
    "productCategoryId": 73,
    "name": "Accessories - New",
    "fullPath": "Accessories - New",
    "code": "00057"
    },
    "productSpecification": [
    {
    "productSpecificationId": 127151,
    "productId": 5749,
    "specificationId": 232,
    "name": "Brand",
    "value": "Brand1"
    }
    ,
    {
    "productSpecificationId": 127175,
    "productId": 5749,
    "specificationId": 10,
    "name": "Guarantee",
    "value": "10 years"
    }
    ]
    }
    }
    

    _索引时会生成id,所以在我要更新时不知道这一点。我有productId值,我想用它来选择一个文档,然后更新/删除如果您知道一个特定的精确值,是否有方法返回单个文档。

    谢谢

    1 回复  |  直到 7 年前
        1
  •  1
  •   sammy    7 年前

    在编制索引时,可以使用以下内容 PUT your_index/5749 (5749是您的产品id)和ES将使用其值作为\u id字段,而不是自动生成它。