{"id":47359,"date":"2022-08-18T18:26:17","date_gmt":"2022-11-26T05:40:31","guid":{"rendered":"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/"},"modified":"2024-01-15T12:22:19","modified_gmt":"2024-01-15T04:22:19","slug":"%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/","title":{"rendered":"\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316"},"content":{"rendered":"<p>\u6211\u5011\u6b63\u5728\u9032\u884c\u4e2d\u9032\u884c\u5404\u7a2e\u5617\u8a66\uff0c\u4f46\u76ee\u524d\u6211\u5011\u60f3\u8981\u4f7f\u7528\u641c\u7d22\u7cfb\u7d71\u5728\u5e38\u7528\u7684\u61c9\u7528\u7a0b\u5f0f\u4e0a\u9032\u884c\u641c\u7d22\uff0c\u56e0\u6b64\u55ae\u53f0\u914d\u7f6e\u611f\u89ba\u6709\u4e9b\u4e0d\u5b89\u5168\uff0c\u6240\u4ee5\u6211\u5011\u6703\u4f7f\u7528\u591a\u53f0\u96c6\u7fa4\u914d\u7f6e\u3002<\/p>\n<p>\u5982\u679c\u60a8\u641c\u7d22\u4e00\u4e0bElasticSearch\u7684\u96c6\u7fa4\u914d\u7f6e\uff0c\u6211\u8ba4\u4e3a\u60a8\u5e94\u8be5\u80fd\u591f\u7406\u89e3\uff0c\u4e00\u822c\u4f7f\u7528\u8d77\u6765\u975e\u5e38\u5bb9\u6613\u3002\u4e5f\u8bb8\u6709\u4e00\u4e9b\u5c0f\u6280\u5de7\uff0c\u4f46\u6211\u4eec\u5728\u8fd9\u91cc\u5c06\u4ee5\u975e\u5e38\u7b80\u5355\u7684\u65b9\u5f0f\u914d\u7f6e\u3002<\/p>\n<p>\u9996\u5148\uff0c\u770b\u4e00\u4e0b\u8bbe\u7f6e\u6587\u4ef6\u3002<\/p>\n<pre class=\"post-pre\"><code>################################### Cluster ###################################\r\n\r\n# Cluster name identifies your cluster for auto-discovery. If you're running\r\n# multiple clusters on the same network, make sure you're using unique names.\r\n#\r\n#cluster.name: elasticsearch\r\n\r\n#################################### Node #####################################\r\n\r\n# Node names are generated dynamically on startup, so you're relieved\r\n# from configuring them manually. You can tie this node to a specific name:\r\n#\r\n#node.name: \"Franz Kafka\"\r\n\r\n# Every node can be configured to allow or deny being eligible as the master,\r\n# and to allow or deny to store the data.\r\n#\r\n# Allow this node to be eligible as a master node (enabled by default):\r\n#\r\n#node.master: true\r\n#\r\n# Allow this node to store data (enabled by default):\r\n#\r\n#node.data: true\r\n# You can exploit these settings to design advanced cluster topologies.\r\n#\r\n# 1. You want this node to never become a master node, only to hold data.\r\n#    This will be the \"workhorse\" of your cluster.\r\n#\r\n#node.master: false\r\n#node.data: true\r\n#\r\n# 2. You want this node to only serve as a master: to not store any data and\r\n#    to have free resources. This will be the \"coordinator\" of your cluster.\r\n#\r\n#node.master: true\r\n#node.data: false\r\n#\r\n# 3. You want this node to be neither master nor data node, but\r\n#    to act as a \"search load balancer\" (fetching data from nodes,\r\n#    aggregating results, etc.)\r\n#\r\n#node.master: false\r\n#node.data: false\r\n\r\n# Use the Cluster Health API [http:\/\/localhost:9200\/_cluster\/health], the\r\n# Node Info API [http:\/\/localhost:9200\/_nodes] or GUI tools\r\n# such as &lt;http:\/\/www.elasticsearch.org\/overview\/marvel\/&gt;,\r\n# &lt;http:\/\/github.com\/karmi\/elasticsearch-paramedic&gt;,\r\n# &lt;http:\/\/github.com\/lukas-vlcek\/bigdesk&gt; and\r\n# &lt;http:\/\/mobz.github.com\/elasticsearch-head&gt; to inspect the cluster state.\r\n\r\n# A node can have generic attributes associated with it, which can later be used\r\n# for customized shard allocation filtering, or allocation awareness. An attribute\r\n# is a simple key value pair, similar to node.key: value, here is an example:\r\n#\r\n#node.rack: rack314\r\n\r\n# By default, multiple nodes are allowed to start from the same installation location\r\n# to disable it, set the following:\r\n#node.max_local_storage_nodes: 1\r\n<\/code><\/pre>\n<p>\u6839\u636e\u82f1\u6587\u8bf4\u660e\uff0cCluster\u7684\u8bbe\u7f6e\u76f8\u5bf9\u6765\u8bf4\u6bd4\u8f83\u5bb9\u6613\u7406\u89e3\u3002ElasticSearch\u4f1a\u6839\u636e\u96c6\u7fa4\u540d\u79f0\u81ea\u52a8\u8fdb\u884c\u96c6\u7fa4\u64cd\u4f5c\u3002\u56e0\u6b64\uff0c\u6700\u91cd\u8981\u7684\u662f\u786e\u4fdd\u96c6\u7fa4\u540d\u79f0\u76f8\u540c\u5373\u53ef\u3002<\/p>\n<p>\u63a5\u4e0b\u6765\uff0c\u8bbe\u7f6e\u96c6\u7fa4\u5316\u540e\u7684\u8282\u70b9\u5982\u4f55\u8fd0\u4f5c\u3002\u9996\u5148\u662f\u8282\u70b9\u7684\u540d\u79f0\u3002\u8ba9\u6211\u4eec\u7ed9\u5b83\u53d6\u4e00\u4e2a\u5bb9\u6613\u7406\u89e3\u7684\u540d\u5b57\u5427\u3002<\/p>\n<p>\u7136\u540e\uff0c\u8bbe\u7f6e\u5982\u4f55\u8fd0\u4f5c\uff1a<br \/>\nnode.master = true\u6216false<br \/>\nnode.data = true\u6216false<\/p>\n<p>\u4e0a\u8ff0\u7684\u8bbe\u7f6e\u7ec4\u5408\uff08\u51714\u79cd\uff09\u3002<br \/>\n\u4e3b\u8282\u70b9\u662f\u5426\u6210\u4e3a\u4e3b\u8282\u70b9\uff1f<br \/>\n\u6570\u636e\u662f\u5426\u5177\u6709\u6570\u636e\uff1f<\/p>\n<p>\u8282\u70b9.master = true<br \/>\n\u8282\u70b9.data = true<\/p>\n<p>\u5982\u679c\u8fd9\u6837\u7684\u8bdd\uff0c\u4e0d\u4ec5\u53ef\u4ee5\u7cbe\u901a\u6280\u80fd\uff0c\u8fd8\u53ef\u4ee5\u62e5\u6709\u6570\u636e\u3002\u53ea\u8981\u6b63\u5e38\u4f7f\u7528\uff0c\u8fd9\u4e2a\u65b9\u6cd5\u5f88\u65b9\u4fbf\u3002<\/p>\n<p>\u8282\u70b9.master = true<br \/>\n\u8282\u70b9.data = false<\/p>\n<p>\u56e0\u4e3a\u6ca1\u6709\u6570\u636e\u6301\u6709\u529f\u80fd\uff0c\u53ea\u6709\u4e3b\u8282\u70b9\u529f\u80fd\uff0c\u6240\u4ee5\u5728Elasticsearch\u4e2d\u79f0\u4e3a\u201c\u534f\u8c03\u8282\u70b9\u201d\u3002<\/p>\n<p>\u8282\u70b9\u7684\u4e3b\u8282\u70b9\u8bbe\u7f6e\u4e3a\u5047\uff0c\u800c\u6570\u636e\u8282\u70b9\u8bbe\u7f6e\u4e3a\u771f\u3002<\/p>\n<p>\u6211\u53ea\u6709\u6570\u636e\u3002<\/p>\n<p>\u8282\u70b9\u4e3b\u673a = false<br \/>\n\u8282\u70b9\u6570\u636e = false<\/p>\n<p>\u6839\u636e\u8bf4\u6cd5\uff0celasticsearch\u4ec5\u5145\u5f53\u4e00\u4e2a\u8d1f\u8f7d\u5747\u8861\u5668\u7684\u89d2\u8272\u3002<\/p>\n<p>\u5728\u6211\u7684\u6848\u4f8b\u4e2d\uff0c\u6211\u4f7f\u7528\u4e86\u4e24\u53f0\u90fd\u662ftrue\u7684\u4e09\u53f0\u6784\u6210\u7684\u96c6\u7fa4\u5316\u3002<\/p>\n<p>\u53ea\u8981\u670d\u52a1\u5668\u6784\u6210\u5df2\u7ecf\u5b8c\u6210\uff0c\u8bf7\u786e\u4fdd\u4ee5\u4e0b\u7684\u67b6\u6784\u6b63\u786e\u3002<\/p>\n<pre class=\"post-pre\"><code>curl -XGET http:\/\/localhost:9200\/_cluster\/state?pretty\r\n\r\n{\r\n  \"cluster_name\" : \"*****-search\",\r\n  \"version\" : 7,\r\n  \"master_node\" : \"EKEbvVZrRDCRCcimEsKdKg\",\r\n  \"blocks\" : { },\r\n  \"nodes\" : {\r\n    \"EKEbvVZrRDCRCcimEsKdKg\" : {\r\n      \"name\" : \"*****-*****\",\r\n      \"transport_address\" : \"inet[\/***.***.***.***:9300]\",\r\n      \"attributes\" : { }\r\n    },\r\n    \"ZCGmnee6QuC4Mrxb19NzGg\" : {\r\n      \"name\" : \"*****-*****\",\r\n      \"transport_address\" : \"inet[\/***.***.***.***:9300]\",\r\n      \"attributes\" : { }\r\n    },\r\n    \"nX0umaReSDK57okDmTu-hA\" : {\r\n      \"name\" : \"*****-*****\",\r\n      \"transport_address\" : \"inet[\/***.***.***.***:9300]\",\r\n      \"attributes\" : { }\r\n    }\r\n  },\r\n  \"metadata\" : {\r\n    \"indices\" : { }\r\n  },\r\n  \"routing_table\" : {\r\n    \"indices\" : { }\r\n  },\r\n  \"routing_nodes\" : {\r\n    \"unassigned\" : [ ],\r\n    \"nodes\" : {\r\n      \"EKEbvVZrRDCRCcimEsKdKg\" : [ ],\r\n      \"ZCGmnee6QuC4Mrxb19NzGg\" : [ ],\r\n      \"nX0umaReSDK57okDmTu-hA\" : [ ]\r\n    }\r\n  },\r\n  \"allocations\" : [ ]\r\n}\r\n<\/code><\/pre>\n<p>\u6211\u786e\u8ba4\u4e86\u4e09\u53f0\u7ed3\u6784\u7684\u914d\u7f6e\u3002<\/p>\n<p>\u73b0\u5728\u8ba9\u6211\u4eec\u5173\u6ce8\u4e00\u4e0b\uff0c\u7ecf\u8fc7\u591a\u6b21\u52aa\u529b\u624d\u8fbe\u5230\u76ee\u524d\u7684\u6a21\u677f\u7ed3\u6784\u3002<\/p>\n<p>\u9700\u8981\u5bf9\u8fd9\u4e09\u53f0\u90fd\u5e94\u7528\u5417\uff1f\uff1f\uff1f\u6211\u6709\u70b9\u6000\u7591\u3002\u7531\u4e8eElasticsearch\u5177\u6709\u5206\u5e03\u5f0f\u6570\u636e\u5b58\u50a8\u7684\u7279\u70b9\uff0c\u6211\u60f3\u53ea\u5bf9\u4e00\u4e2a\u5e94\u7528\u4f1a\u88ab\u5e94\u7528\u5230\u6240\u6709\u5730\u65b9\u3002\u4e0d\u8fc7\u5f53\u6211\u8bd5\u4e86\u4e00\u4e0b\u4e4b\u540e\u3002\u3002\u3002\u3002\u7ed3\u679c\u5c45\u7136\u5168\u90e8\u90fd\u9002\u7528\u4e86\u3002<\/p>\n<p>\u8fd9\u4e2a\u52a8\u4f5c\u867d\u7136\u641e\u9519\u4e86\u4f1a\u89c9\u5f97\u5f88\u70e6\uff0c\u4f46\u4e5f\u89c9\u5f97\u89e3\u8131\u4e86\u7e41\u7410\u7684\u5de5\u4f5c\uff0c\u771f\u662f\u592a\u597d\u4e86\u3002<\/p>\n<p>\u5f53\u7136\uff0c\u6570\u636e\u540c\u6b65\u4e5f\u6ca1\u6709\u95ee\u9898\u3002<br \/>\n\u63a5\u4e0b\u6765\u662f\u96c6\u7fa4\u5065\u5eb7\u68c0\u67e5\uff0c\u6211\u5728\u8003\u8651\u662f\u5426\u8981\u5b89\u88c5\u4e4b\u524d\u5199\u8fc7\u7684elastic-HQ\u63d2\u4ef6\u3002<br \/>\n\u5982\u679c\u8981\u81ea\u5df1\u505a\u7684\u8bdd\uff0c\u81f3\u5c11\u9700\u8981\u8003\u8651\u4ee5\u4e0b\u4e24\u70b9\u3002<\/p>\n<p>\u96c6\u7fa4\u7684\u5065\u5eb7\u68c0\u67e5<\/p>\n<pre class=\"post-pre\"><code>curl -XGET 'http:\/\/localhost:9200\/_cluster\/health?pretty=true'\r\n<\/code><\/pre>\n<p>\u96c6\u7fa4\u72b6\u6001\u76d1\u63a7<\/p>\n<pre class=\"post-pre\"><code>curl -XGET 'http:\/\/localhost:9200\/_cluster\/stats?pretty=true'\r\n<\/code><\/pre>\n<p>\u76d1\u63a7\u96c6\u7fa4\u8282\u70b9\u7684\u72b6\u6001<\/p>\n<pre class=\"post-pre\"><code>curl -X GET http:\/\/localhost:9200\/_nodes\/stats?pretty\r\n<\/code><\/pre>\n<p>\u5bf9\u4e8e\u8fd9\u4e2a\u68c0\u7d22\u7ed3\u679c\uff0c\u4f3c\u4e4e\u662f\u901a\u8fc7\u5fc3\u8df3\u6765\u786e\u8ba4\u6545\u969c\uff0c\u5e76\u4e14\u5982\u679c\u6709\u5f02\u5e38\u60c5\u51b5\u4f1a\u53d1\u9001\u8b66\u62a5\u3002<\/p>\n<p>\u4e0b\u6b21\uff0c\u8bf7\u4e3a\u6211\u521b\u5efa\u4e00\u4e2aVIP\u8d26\u53f7\uff0c\u7136\u540e\u4ece\u90a3\u91cc\u5f00\u59cb\uff0c\u6211\u5e0c\u671b\u4f60\u80fd\u591f\u5c06\u5176\u5206\u914d\u5230\u5faa\u73af\u5904\u7406\u4e2d\u3002\u6211\u60f3\u8981\u68c0\u67e5\u90a3\u4e9b\u65e5\u5fd7\u7b49\u7b49\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6211\u5011\u6b63\u5728\u9032\u884c\u4e2d\u9032\u884c\u5404\u7a2e\u5617\u8a66\uff0c\u4f46\u76ee\u524d\u6211\u5011\u60f3\u8981\u4f7f\u7528\u641c\u7d22\u7cfb\u7d71\u5728\u5e38\u7528\u7684\u61c9\u7528\u7a0b\u5f0f\u4e0a\u9032\u884c\u641c\u7d22\uff0c\u56e0\u6b64\u55ae\u53f0\u914d\u7f6e\u611f\u89ba\u6709\u4e9b\u4e0d\u5b89\u5168\uff0c [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-47359","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316 - Blog - Silicon Cloud<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/zh\/blog\/\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109-\u96c6\u7fa4\u5316\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316\" \/>\n<meta property=\"og:description\" content=\"\u6211\u5011\u6b63\u5728\u9032\u884c\u4e2d\u9032\u884c\u5404\u7a2e\u5617\u8a66\uff0c\u4f46\u76ee\u524d\u6211\u5011\u60f3\u8981\u4f7f\u7528\u641c\u7d22\u7cfb\u7d71\u5728\u5e38\u7528\u7684\u61c9\u7528\u7a0b\u5f0f\u4e0a\u9032\u884c\u641c\u7d22\uff0c\u56e0\u6b64\u55ae\u53f0\u914d\u7f6e\u611f\u89ba\u6709\u4e9b\u4e0d\u5b89\u5168\uff0c [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/zh\/blog\/\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109-\u96c6\u7fa4\u5316\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-26T05:40:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-15T04:22:19+00:00\" \/>\n<meta name=\"author\" content=\"\u65b0, \u97f5\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u65b0, \u97f5\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/\",\"url\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/\",\"name\":\"\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316 - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#website\"},\"datePublished\":\"2022-11-26T05:40:31+00:00\",\"dateModified\":\"2024-01-15T04:22:19+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/4ba4019495123db3038fd0809e6959c9\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/zh\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/zh\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/4ba4019495123db3038fd0809e6959c9\",\"name\":\"\u65b0, \u97f5\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d484b6c6e4ae82e8a9efea989e1d2af46d9b6ef128101e63b18f559fca0ae627?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d484b6c6e4ae82e8a9efea989e1d2af46d9b6ef128101e63b18f559fca0ae627?s=96&d=mm&r=g\",\"caption\":\"\u65b0, \u97f5\"},\"url\":\"https:\/\/www.silicloud.com\/zh\/blog\/author\/yunxin\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316 - Blog - Silicon Cloud","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/zh\/blog\/\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109-\u96c6\u7fa4\u5316\/","og_locale":"zh_CN","og_type":"article","og_title":"\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316","og_description":"\u6211\u5011\u6b63\u5728\u9032\u884c\u4e2d\u9032\u884c\u5404\u7a2e\u5617\u8a66\uff0c\u4f46\u76ee\u524d\u6211\u5011\u60f3\u8981\u4f7f\u7528\u641c\u7d22\u7cfb\u7d71\u5728\u5e38\u7528\u7684\u61c9\u7528\u7a0b\u5f0f\u4e0a\u9032\u884c\u641c\u7d22\uff0c\u56e0\u6b64\u55ae\u53f0\u914d\u7f6e\u611f\u89ba\u6709\u4e9b\u4e0d\u5b89\u5168\uff0c [&hellip;]","og_url":"https:\/\/www.silicloud.com\/zh\/blog\/\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109-\u96c6\u7fa4\u5316\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2022-11-26T05:40:31+00:00","article_modified_time":"2024-01-15T04:22:19+00:00","author":"\u65b0, \u97f5","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"\u65b0, \u97f5","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"2 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/","url":"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/","name":"\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316 - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/#website"},"datePublished":"2022-11-26T05:40:31+00:00","dateModified":"2024-01-15T04:22:19+00:00","author":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/4ba4019495123db3038fd0809e6959c9"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/zh\/blog\/"},{"@type":"ListItem","position":2,"name":"\u6210\u4e3a\u5f39\u6027\u641c\u7d22\u7684\u641c\u7d22\u4e13\u5bb6\uff0109.\u96c6\u7fa4\u5316"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/zh\/blog\/#website","url":"https:\/\/www.silicloud.com\/zh\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"zh-Hans"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/4ba4019495123db3038fd0809e6959c9","name":"\u65b0, \u97f5","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.silicloud.com\/zh\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d484b6c6e4ae82e8a9efea989e1d2af46d9b6ef128101e63b18f559fca0ae627?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d484b6c6e4ae82e8a9efea989e1d2af46d9b6ef128101e63b18f559fca0ae627?s=96&d=mm&r=g","caption":"\u65b0, \u97f5"},"url":"https:\/\/www.silicloud.com\/zh\/blog\/author\/yunxin\/"},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.silicloud.com\/zh\/blog\/%e6%88%90%e4%b8%ba%e5%bc%b9%e6%80%a7%e6%90%9c%e7%b4%a2%e7%9a%84%e6%90%9c%e7%b4%a2%e4%b8%93%e5%ae%b6%ef%bc%8109-%e9%9b%86%e7%be%a4%e5%8c%96\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/47359","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/comments?post=47359"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/47359\/revisions"}],"predecessor-version":[{"id":59426,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/posts\/47359\/revisions\/59426"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/media?parent=47359"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/categories?post=47359"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/zh\/blog\/wp-json\/wp\/v2\/tags?post=47359"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}