{"id":50719,"date":"2021-01-21T00:00:00","date_gmt":"2021-01-21T08:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/"},"modified":"2025-11-14T07:54:16","modified_gmt":"2025-11-14T15:54:16","slug":"griddb-optimization-with-multi-put-and-query","status":"publish","type":"post","link":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/","title":{"rendered":"\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316"},"content":{"rendered":"<p>\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001GridDB\u306e\u30d0\u30c3\u30c1\u64cd\u4f5c\uff08\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u30fc\uff09\u3092\u4f7f\u3063\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002<\/p>\n<h1>\u30de\u30eb\u30c1\u30d7\u30c3\u30c8<\/h1>\n<p>\u30d0\u30c3\u30c1\u66f8\u304d\u8fbc\u307f\u64cd\u4f5c\u306f\u3001\u904e\u53bb\u306b\u8a18\u9332\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306e\u4e00\u62ec\u8aad\u307f\u8fbc\u307f\u3001\u30a8\u30c3\u30b8\u30c7\u30d0\u30a4\u30b9\u304b\u3089\u306e\u8907\u6570\u306e\u30bb\u30f3\u30b5\u30fc\u8aad\u307f\u53d6\u308a\u5024\u306e\u4e00\u5ea6\u306e\u5165\u529b\u3001\u30c7\u30fc\u30bf\u30b3\u30ec\u30af\u30bf\u5185\u3067\u306e\u5165\u529b\u30c7\u30fc\u30bf\u306e\u52b9\u7387\u5316\u306e\u305f\u3081\u306e\u610f\u56f3\u7684\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u306a\u3069\u3001\u3055\u307e\u3056\u307e\u306a\u5834\u9762\u3067\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002\u30d0\u30c3\u30c1\u30af\u30a8\u30ea\u64cd\u4f5c\u306f\u3001\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u304b\u3089\u30c7\u30fc\u30bf\u3092\u30de\u30fc\u30b8\u3057\u305f\u308a\u3001\u8907\u6570\u306e\u96c6\u7d04\u64cd\u4f5c\u3092\u52b9\u7387\u7684\u306b\u5b9f\u65bd\u3059\u308b\u306e\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002<\/p>\n<h2>\u30b7\u30f3\u30b0\u30eb\u30b3\u30f3\u30c6\u30ca<\/h2>\n<p>\u307e\u305a\u6700\u521d\u306e\u4f8b\u3067\u306f\u3001\u30b7\u30f3\u30b0\u30eb\u30b3\u30f3\u30c6\u30ca\u306b10,000\u884c\u3092\u4e00\u5ea6\u306b\u66f8\u304d\u8fbc\u3093\u3067\u307f\u307e\u3057\u3087\u3046\u3002<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">blob = bytearray([65, 66, 67, 68, 69, 70, 71, 72, 73, 74])\n\nconInfo = griddb.ContainerInfo(\"col01\",\n    [[\"name\", griddb.Type.STRING],\n    [\"status\", griddb.Type.BOOL],\n    [\"count\", griddb.Type.LONG],\n    [\"lob\", griddb.Type.BLOB]],\n    griddb.ContainerType.COLLECTION, True)\ncol = gridstore.put_container(conInfo)\n\ni=0\nstart =  datetime.datetime.utcnow().timestamp()\nwhile i &lt; 10000:\n    row = [str(uuid.uuid1()), False, random.randint(0, 1048576), blob]\n    col.put(row)\n    i=i+1\nprint(\"single put took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30b7\u30f3\u30b0\u30eb\u30d7\u30c3\u30c8\u3067\u306f\u4e0a\u8a18\u306e\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u304c\u3001\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3067\u3053\u308c\u3092\u6700\u9069\u5316\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30b7\u30f3\u30b0\u30eb\u30d7\u30c3\u30c8\u30671\u3064\u306e\u884c\u309210,000\u56de\u66f8\u304f\u4ee3\u308f\u308a\u306b\u3001\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u30671,000\u884c\u309210\u56de\u66f8\u304d\u307e\u3059\u3002<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">col = gridstore.put_container(conInfo)\ni=0\nstart =  datetime.datetime.utcnow().timestamp()\nrows=[]\nwhile i &lt; 10000:\n    rows.append([str(uuid.uuid1()), False, random.randint(0, 1048576), blob])\n    if i != 0 and i% 1000 == 0:\n        col.multi_put(rows)\n        rows=[]\n    i=i+1\nprint(\"multiput put took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30b7\u30f3\u30b0\u30eb\u30d7\u30c3\u30c8\u3067\u306f<b>0.92<\/b>\u79d2\u3060\u3063\u305f\u306e\u306b\u5bfe\u3057\u3001\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3067\u306f<b>0.32<\/b>\u79d2\u3068\u306a\u308a\u3001290%\u3082\u306e\u6539\u5584\u304c\u898b\u3089\u308c\u307e\u3057\u305f\u3002<\/p>\n<h2>\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca<\/h2>\n<p>\u4e00\u822c\u7684\u306b\u3001\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3067\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u306b\u66f8\u304d\u8fbc\u3080\u306e\u306f\u3001Kafka\u306e\u3088\u3046\u306a\u30b9\u30c8\u30ea\u30fc\u30df\u30f3\u30b0\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3092\u5229\u7528\u3059\u308b\u6642\u3067\u3001Sink\u30b3\u30cd\u30af\u30bf\u3084Consumer\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u5185\u3067\u8907\u6570\u306e\u30bb\u30f3\u30b5\u30fc\u306e\u30c7\u30fc\u30bf\u304c\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u3068\u3057\u3066Kafka\u304b\u3089\u30d5\u30a7\u30c3\u30c1\u3055\u308c\u308b\u5834\u5408\u3067\u3059\u3002<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">start =  datetime.datetime.utcnow().timestamp()\nfor no in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ]:\n    col = cols[no]\n    i=0\n    rows=[]\n    while i &lt; 10000:\n        rows.append([str(uuid.uuid1()), False, random.randint(0, 1048576), blob])\n        if i != 0 and i% 1000 == 0:\n            col.multi_put(rows)\n            rows=[]\n        i=i+1\n\nprint(\"single container multi put took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u3092\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3067\u8a18\u8ff0\u3059\u308b\u306b\u306f\u3001gridstore.multi_put()\u3067\u3001\u30b3\u30f3\u30c6\u30ca\u540d\u3092\u30ad\u30fc\u306b\u3057\u305f\u30de\u30c3\u30d7\u3092\u5f15\u6570\u306b\u3057\u307e\u3059\u3002<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">start =  datetime.datetime.utcnow().timestamp()\ni=0\nentries={}\nfor no in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ]:\n    rows=[]\n    i=0\n    while i &lt; 10000:\n        rows.append([str(uuid.uuid1()), False, random.randint(0, 1048576), blob])\n        i=i+1\n    entries[\"col0\"+str(no)] = rows\ngridstore.multi_put(entries)\n\nprint(\"multi container multi put took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30b7\u30f3\u30b0\u30eb\u30b3\u30f3\u30c6\u30ca\u306e\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3067\u306f<b>3.92<\/b>\u79d2\u3067\u3057\u305f\u304c\u3001\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u306e\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3067\u306f\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u304c25%\u5411\u4e0a\u3057\u3001<b>3.13<\/b>\u79d2\u3068\u306a\u308a\u307e\u3057\u305f\u3002<\/p>\n<p>\u3067\u306f\u3001\u306a\u305c\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u306e\u30c6\u30b9\u30c8\u306f\u3053\u308c\u307b\u3069\u9045\u304f\u3001\u6539\u5584\u7387\u3082\u9ad8\u304f\u306a\u3044\u306e\u3067\u3057\u3087\u3046\u304b\u3002\u307e\u305a\u7b2c\u4e00\u306b\u300110\u500d\u306e\u30c7\u30fc\u30bf\u3092\u66f8\u304d\u8fbc\u3093\u3067\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u3067\u5168\u4f53\u7684\u306a\u5dee\u306f\u8aac\u660e\u3067\u304d\u307e\u3059\u3002\u6539\u5584\u7387\u306e\u4f4e\u4e0b\u306f\u30c7\u30fc\u30bf\u8ee2\u9001\u306e\u30b5\u30a4\u30ba\u304c\u7406\u7531\u3067\u3042\u308b\u3068\u8003\u3048\u3089\u308c\u307e\u3059\u3002\u6700\u521d\u306e\u30b7\u30f3\u30b0\u30eb\u30b3\u30f3\u30c6\u30ca\u3001\u30b7\u30f3\u30b0\u30eb\u30d7\u30c3\u30c8\u306e\u30c6\u30b9\u30c8\u3067\u306f\u3001\u30c7\u30fc\u30bf\u8ee2\u9001\u30b5\u30a4\u30ba\u304c\u975e\u5e38\u306b\u5c0f\u3055\u3044\u305f\u3081\u3001\u30ec\u30b3\u30fc\u30c9\u3042\u305f\u308a\u306e\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9\u304c\u975e\u5e38\u306b\u5927\u304d\u304f\u306a\u3063\u3066\u3044\u307e\u3059\u304c\u3001\u30b7\u30f3\u30b0\u30eb\u30b3\u30f3\u30c6\u30ca\u3001\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3067\u306f\u30c7\u30fc\u30bf\u8ee2\u9001\u30b5\u30a4\u30ba\u304c\u5927\u304d\u304f\u3001\u30ec\u30b3\u30fc\u30c9\u3042\u305f\u308a\u306e\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9\u306f\u3059\u3067\u306b\u5c0f\u3055\u304f\u306a\u3063\u3066\u3044\u307e\u3059\u3002\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u306b\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3057\u3066\u3082\u3001\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9\u306f\u5927\u304d\u304f\u6e1b\u5c11\u3057\u307e\u305b\u3093\u3002<\/p>\n<h1>\u30de\u30eb\u30c1\u30af\u30a8\u30ea<\/h1>\n<p>\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u306f\u901a\u5e38\u3001\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u306e\u30c7\u30fc\u30bf\u30921\u3064\u306e\u30ec\u30dd\u30fc\u30c8\u3067\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u4f7f\u7528\u3057\u307e\u3059\u3002<\/p>\n<h2>10\u500b\u306e\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca<\/h2>\n<p>\u4e00\u5ea6\u306b\u30b7\u30f3\u30b0\u30eb\u30b3\u30f3\u30c6\u30ca\u3092\u5b9f\u884c\u3059\u308b\u3068\u3001\u6b21\u306e\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">start =  datetime.datetime.utcnow().timestamp()\nfor no in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ]:\n    col = gridstore.get_container(\"col0\"+str(no))\n\n    query = col.query(\"select *\")\n    rs = query.fetch(False)\n    while rs.has_next():\n        data = rs.next()\nprint(\"single container query took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>gridstore.fetch_all() is used to query multiple containers:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">queries=[]\ncol={}\nstart =  datetime.datetime.utcnow().timestamp()\nfor no in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ]:\n    col[no] = gridstore.get_container(\"col0\"+str(no))\n    query = col[no].query(\"select *\")\n    if query != None:\n        queries.append(query)\n\ngridstore.fetch_all(queries)\n\nfor query in queries:\n    rs = query.get_row_set()\n    while rs.has_next():\n        data = rs.next()\nprint(\"multi container query took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30b7\u30f3\u30b0\u30eb\u30b3\u30f3\u30c6\u30ca\u306e\u30af\u30a8\u30ea\u306b\u304b\u304b\u3063\u305f\u6642\u9593\u306f<b>0.34\u79d2<\/b>\u3001\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u306e\u30af\u30a8\u30ea\u306b\u304b\u304b\u3063\u305f\u6642\u9593\u306f<b>0.28\u79d2<\/b>\u3068\u300120%\u306e\u6539\u5584\u304c\u898b\u3089\u308c\u307e\u3057\u305f\u3002<\/p>\n<h2>100\u500b\u306e\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca<\/h2>\n<p>100\u500b\u306e\u30b3\u30f3\u30c6\u30ca\u30921\u884c\u305a\u3064\u8fd4\u3059\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3059\u308b\u5834\u5408\u3001\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u306a\u3057\u3067\u306f\u6b21\u306e\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">start =  datetime.datetime.utcnow().timestamp()\nfor no in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, \n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9, \n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9, \n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9, \n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9  ]:\n\n\n    col = gridstore.get_container(\"col0\"+str(no))\n\n    query = col.query(\"select * limit 1\")\n    rs = query.fetch(False)\n    while rs.has_next():\n        data = rs.next()\nprint(\"single container query took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u3092\u4f7f\u3046\u3068\u3001<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">queries=[]\ncol={}\nstart =  datetime.datetime.utcnow().timestamp()\nfor no in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, \n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9, \n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9, \n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9, \n           0, 1, 2, 3, 4, 5, 6, 7, 8, 9  ]:\n\n    if col.get(no) == None:\n        col[no] = gridstore.get_container(\"col0\"+str(no))\n    query = col[no].query(\"select * limit 1\")\n    if query != None:\n        queries.append(query)\n\ngridstore.fetch_all(queries) \n\nfor query in queries:\n    rs = query.get_row_set()\n    while rs.has_next():\n        data = rs.next()\n\nprint(\"multi container query took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30b7\u30f3\u30b0\u30eb\u30b3\u30f3\u30c6\u30ca\u306e\u30af\u30a8\u30ea\u304c<b>0.04\u79d2<\/b>\u3060\u3063\u305f\u306e\u306b\u5bfe\u3057\u3001\u30de\u30eb\u30c1\u30b3\u30f3\u30c6\u30ca\u306e\u30af\u30a8\u30ea\u306f<b>0.01\u79d2<\/b>\u3068\u3001671%\u3082\u306e\u9ad8\u901f\u5316\u3092\u5b9f\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3057\u305f\u3002<\/p>\n<h2>\u96c6\u8a08<\/h2>\n<p>\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u306a\u3057\u3067\u306f\u3001<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">start =  datetime.datetime.utcnow().timestamp()\nfor no in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]:\n    col = gridstore.get_container(\"col0\"+str(no))\n    for agg in [ \"min\", \"max\", \"avg\", \"count\", \"stddev\"]:\n        query = col.query(\"select \"+agg+\"(count) \")\n        rs = query.fetch(False)\n        while rs.has_next():\n            data = rs.next()\nprint(\"single aggregation query took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-python\">queries=[]\ncol={}\nstart =  datetime.datetime.utcnow().timestamp()\nfor no in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]:\n\n    if col.get(no) == None:\n        col[no] = gridstore.get_container(\"col0\"+str(no))\n    for agg in [ \"min\", \"max\", \"avg\", \"count\", \"stddev\"]:\n        query = col[no].query(\"select min(count)\")\n        if query != None:\n            queries.append(query)\n\ngridstore.fetch_all(queries)\n\nfor query in queries:\n    rs = query.get_row_set()\n    while rs.has_next():\n        data = rs.next()\n\nprint(\"multi aggregation query took \"+  str(datetime.datetime.utcnow().timestamp() - start) +\" seconds\")<\/code><\/pre>\n<\/div>\n<p>\u30b7\u30f3\u30b0\u30eb\u96c6\u8a08\u306e\u30af\u30a8\u30ea\u304c<b>0.08<\/b>\u79d2\u3067\u3042\u3063\u305f\u306e\u306b\u5bfe\u3057\u3001\u30de\u30eb\u30c1\u96c6\u8a08\u306e\u30af\u30a8\u30ea\u306f<b>0.06<\/b>\u79d2\u3068\u300139%\u306e\u6539\u5584\u304c\u898b\u3089\u308c\u307e\u3057\u305f\u3002<\/p>\n<h1>\u7d50\u8ad6<\/h1>\n<p>\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u3092\u4f7f\u3046\u3053\u3068\u3067\u3001GridDB\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u98db\u8e8d\u7684\u306b\u5411\u4e0a\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u3069\u306e\u7a0b\u5ea6\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u304b\u306b\u3064\u3044\u3066\u306f\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059\u3002<\/p>\n<p>\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3001\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u304c\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u3069\u306e\u7a0b\u5ea6\u5411\u4e0a\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u304b\u306f\u3001\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u306e\u30c7\u30fc\u30bf\u306e\u91cf\u306b\u3088\u3063\u3066\u6c7a\u307e\u308a\u307e\u3059\u3002\u305d\u308c\u305e\u308c\u306e\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u304c\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u8ee2\u9001\u3059\u308b\u5834\u5408\u3001\u5f97\u3089\u308c\u308b\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u306e\u91cf\u306f\u6e1b\u5c11\u3057\u307e\u3059\u3002\u3053\u308c\u307e\u3067\u306e\u4f8b\u3092\u898b\u308b\u3068\u3001GridDB\u306e\u30c7\u30fc\u30bf\u30d6\u30ed\u30c3\u30af\u30b5\u30a4\u30ba\uff08\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f64kb\uff09\u3092\u8d85\u3048\u308b\u30c7\u30fc\u30bf\u3092\u8ee2\u9001\u3059\u308b\u30ea\u30af\u30a8\u30b9\u30c8\u3067\u306f\u3001\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u306e\u5411\u4e0a\u304c\u898b\u8fbc\u3081\u306a\u304f\u306a\u308b\u3053\u3068\u304c\u5206\u304b\u308a\u307e\u3057\u305f\u3002\u307e\u305f\u3001\u4f59\u5206\u306a\u8a08\u7b97\u3092\u5fc5\u8981\u3068\u3059\u308b\u30af\u30a8\u30ea\uff08where-claus\u3001order by\u3001aggregation\u306a\u3069\uff09\u3082\u3001\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u306b\u5f71\u97ff\u3092\u4e0e\u3048\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001GridDB\u306e\u30d0\u30c3\u30c1\u64cd\u4f5c\uff08\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u30fc\uff09\u3092\u4f7f\u3063\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30de\u30eb\u30c1\u30d7\u30c3\u30c8 \u30d0\u30c3\u30c1\u66f8\u304d\u8fbc\u307f\u64cd\u4f5c\u306f\u3001\u904e\u53bb\u306b\u8a18\u9332\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306e\u4e00\u62ec\u8aad\u307f\u8fbc\u307f\u3001\u30a8 [&hellip;]<\/p>\n","protected":false},"author":71,"featured_media":50164,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1005],"tags":[],"class_list":["post-50719","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-1005"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316 | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001GridDB\u306e\u30d0\u30c3\u30c1\u64cd\u4f5c\uff08\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u30fc\uff09\u3092\u4f7f\u3063\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30de\u30eb\u30c1\u30d7\u30c3\u30c8\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb.net\/ja\/\u672a\u5206\u985e\/griddb-optimization-with-multi-put-and-query\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316 | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001GridDB\u306e\u30d0\u30c3\u30c1\u64cd\u4f5c\uff08\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u30fc\uff09\u3092\u4f7f\u3063\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30de\u30eb\u30c1\u30d7\u30c3\u30c8\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/ja\/\u672a\u5206\u985e\/griddb-optimization-with-multi-put-and-query\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-21T08:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-14T15:54:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"371\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Owen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"Owen\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/\"},\"author\":{\"name\":\"Owen\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\"},\"headline\":\"\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316\",\"datePublished\":\"2021-01-21T08:00:00+00:00\",\"dateModified\":\"2025-11-14T15:54:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/\"},\"wordCount\":25,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png\",\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/\",\"url\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/\",\"name\":\"\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316 | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png\",\"datePublished\":\"2021-01-21T08:00:00+00:00\",\"dateModified\":\"2025-11-14T15:54:16+00:00\",\"description\":\"\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001GridDB\u306e\u30d0\u30c3\u30c1\u64cd\u4f5c\uff08\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u30fc\uff09\u3092\u4f7f\u3063\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30de\u30eb\u30c1\u30d7\u30c3\u30c8\",\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png\",\"contentUrl\":\"\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png\",\"width\":600,\"height\":371},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb.net\/en\/#website\",\"url\":\"https:\/\/griddb.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\",\"name\":\"Owen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"caption\":\"Owen\"},\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/author\/owen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316 | GridDB: Open Source Time Series Database for IoT","description":"\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001GridDB\u306e\u30d0\u30c3\u30c1\u64cd\u4f5c\uff08\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u30fc\uff09\u3092\u4f7f\u3063\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30de\u30eb\u30c1\u30d7\u30c3\u30c8","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:\/\/griddb.net\/ja\/\u672a\u5206\u985e\/griddb-optimization-with-multi-put-and-query\/","og_locale":"ja_JP","og_type":"article","og_title":"\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316 | GridDB: Open Source Time Series Database for IoT","og_description":"\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001GridDB\u306e\u30d0\u30c3\u30c1\u64cd\u4f5c\uff08\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u30fc\uff09\u3092\u4f7f\u3063\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30de\u30eb\u30c1\u30d7\u30c3\u30c8","og_url":"https:\/\/griddb.net\/ja\/\u672a\u5206\u985e\/griddb-optimization-with-multi-put-and-query\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2021-01-21T08:00:00+00:00","article_modified_time":"2025-11-14T15:54:16+00:00","og_image":[{"width":600,"height":371,"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png","type":"image\/png"}],"author":"Owen","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"\u57f7\u7b46\u8005":"Owen","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"3\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/"},"author":{"name":"Owen","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66"},"headline":"\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316","datePublished":"2021-01-21T08:00:00+00:00","dateModified":"2025-11-14T15:54:16+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/"},"wordCount":25,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png","inLanguage":"ja","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/","url":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/","name":"\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30af\u30a8\u30ea\u3092\u4f7f\u3063\u305fGridDB\u306e\u6700\u9069\u5316 | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png","datePublished":"2021-01-21T08:00:00+00:00","dateModified":"2025-11-14T15:54:16+00:00","description":"\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001GridDB\u306e\u30d0\u30c3\u30c1\u64cd\u4f5c\uff08\u30de\u30eb\u30c1\u30d7\u30c3\u30c8\u3068\u30de\u30eb\u30c1\u30af\u30a8\u30ea\u30fc\uff09\u3092\u4f7f\u3063\u3066\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u5411\u4e0a\u3055\u305b\u308b\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002 \u30de\u30eb\u30c1\u30d7\u30c3\u30c8","inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/griddb.net\/ja\/%e6%9c%aa%e5%88%86%e9%a1%9e\/griddb-optimization-with-multi-put-and-query\/#primaryimage","url":"\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png","contentUrl":"\/wp-content\/uploads\/2021\/03\/MultiPut_Query-Performance-Improvement-Lower-is-Better-11.png","width":600,"height":371},{"@type":"WebSite","@id":"https:\/\/griddb.net\/en\/#website","url":"https:\/\/griddb.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Organization","@id":"https:\/\/griddb.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66","name":"Owen","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","caption":"Owen"},"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/author\/owen\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/posts\/50719","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/comments?post=50719"}],"version-history":[{"count":1,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/posts\/50719\/revisions"}],"predecessor-version":[{"id":51557,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/posts\/50719\/revisions\/51557"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/media\/50164"}],"wp:attachment":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/media?parent=50719"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/categories?post=50719"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/ja\/wp-json\/wp\/v2\/tags?post=50719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}