Skip to content

Commit

Permalink
deploy: 5ea80a7
Browse files Browse the repository at this point in the history
  • Loading branch information
uh-zz committed Dec 27, 2023
1 parent f3973f0 commit 7d9134f
Show file tree
Hide file tree
Showing 99 changed files with 1,554 additions and 1,550 deletions.
2 changes: 1 addition & 1 deletion categories/aws/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
これの設計2を参考にしました。
全データ共通のダミー列を用意して、以下の GSI を作成します。
パーティションキーはダミー列 ソートキーに日付 これで同じ日付範囲の複数データを引っ張ってくることが可能になります。
確かに美しいと言えないかもしれませんが、機転の効いた方法だと思いました。</p></div><div class=card-footer><span class=float-left>Sunday, January 22, 2023
確かに美しいと言えないかもしれませんが、機転の効いた方法だと思いました。</p></div><div class=card-footer><span class=float-left>Friday, June 5, 2020
</span><a href=/posts/category/aws/2020/06/dynamo-only-sortkey-without-partionkey/ class="float-right btn btn-outline-info btn-sm">Read</a></div></div></a></div></div><div class=paginator></div></div></section></div><footer id=footer class="container-fluid text-center align-content-center footer pb-2"><div class="container pt-5"><div class="row text-left"><div class="col-md-4 col-sm-12"><h5>Navigation</h5><ul><li class=nav-item><a class=smooth-scroll href=https://uh-zz.github.io/#about>About</a></li><li class=nav-item><a class=smooth-scroll href=https://uh-zz.github.io/#skills>Skills</a></li><li class=nav-item><a class=smooth-scroll href=https://uh-zz.github.io/#experiences>Experiences</a></li><li class=nav-item><a class=smooth-scroll href=https://uh-zz.github.io/#education>Education</a></li><li class=nav-item><a class=smooth-scroll href=https://uh-zz.github.io/#projects>Projects</a></li><li class=nav-item><a class=smooth-scroll href=https://uh-zz.github.io/#recent-posts>Recent Posts</a></li></ul></div><div class="col-md-4 col-sm-12"><h5>Contact me:</h5><ul><li><a href=mailto:uhzz.contact@gmail.com target=_blank rel=noopener><span><i class="fas fa-envelope"></i></span> <span>uhzz.contact@gmail.com</span></a></li></ul></div></div></div><hr><div class=container><div class="row text-left"><div class=col-md-4><a id=theme href=https://github.com/hugo-toha/toha target=_blank rel=noopener><img src=/images/theme-logo_hu8376fd15465fef26ffe66b6bcf0ca686_13669_32x0_resize_box_3.png alt="Toha Theme Logo">
Toha</a></div><div class="col-md-4 text-center">Copyright © 2024 uh-zz, All rights reserved.</div><div class="col-md-4 text-right"><a id=hugo href=https://gohugo.io/ target=_blank rel=noopener>Powered by
<img src=/images/hugo-logo.svg alt="Hugo Logo" height=18></a></div></div></div></footer><script src=/application.b68a12dc7717f07656966ceb9e6873af3b28ec93f7e6dcb8b6b9ebeedf46a561.js integrity="sha256-tooS3HcX8HZWlmzrnmhzrzso7JP35ty4trnr7t9GpWE=" defer></script></body></html>
2 changes: 1 addition & 1 deletion categories/aws/index.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>AWS on small land</title><link>https://uh-zz.github.io/categories/aws/</link><description>Recent content in AWS on small land</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Sun, 22 Jan 2023 19:41:05 +0900</lastBuildDate><atom:link href="https://uh-zz.github.io/categories/aws/index.xml" rel="self" type="application/rss+xml"/><item><title>DynamoDB のソートキーだけで絞り込みたいとき</title><link>https://uh-zz.github.io/posts/category/aws/2020/06/dynamo-only-sortkey-without-partionkey/</link><pubDate>Sun, 22 Jan 2023 19:41:05 +0900</pubDate><guid>https://uh-zz.github.io/posts/category/aws/2020/06/dynamo-only-sortkey-without-partionkey/</guid><description>はじめに Dynamo のテーブルに GSI(グローバルセカンダリインデックス)を貼ってハッシュキー+ソートキーでクエリするパターンが通常の使い方かと思います。
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>AWS on small land</title><link>https://uh-zz.github.io/categories/aws/</link><description>Recent content in AWS on small land</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Fri, 05 Jun 2020 18:07:06 +0900</lastBuildDate><atom:link href="https://uh-zz.github.io/categories/aws/index.xml" rel="self" type="application/rss+xml"/><item><title>DynamoDB のソートキーだけで絞り込みたいとき</title><link>https://uh-zz.github.io/posts/category/aws/2020/06/dynamo-only-sortkey-without-partionkey/</link><pubDate>Fri, 05 Jun 2020 18:07:06 +0900</pubDate><guid>https://uh-zz.github.io/posts/category/aws/2020/06/dynamo-only-sortkey-without-partionkey/</guid><description>はじめに Dynamo のテーブルに GSI(グローバルセカンダリインデックス)を貼ってハッシュキー+ソートキーでクエリするパターンが通常の使い方かと思います。
ではソートキーを日付にしていた場合、同じ日付範囲のデータを一括で取得できる方法はありますでしょうか?
公式ドキュメントにはその辺の Tips なかったのですが、同僚から以下の記事を教えてもらいました。
DynamoDB の設計力をあげたい
Expand Down
Loading

0 comments on commit 7d9134f

Please sign in to comment.