{"id":29491,"date":"2022-11-25T18:32:05","date_gmt":"2022-11-25T13:02:05","guid":{"rendered":"https:\/\/blazeclan.com\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/"},"modified":"2023-03-14T14:56:21","modified_gmt":"2023-03-14T09:26:21","slug":"the-amazonians-nosql-a-dynamodb-hot-partition-use-case","status":"publish","type":"post","link":"https:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/","title":{"rendered":"The Amazonian\u2019s NoSQL &#8211; A DynamoDB Hot Partition Use Case"},"content":{"rendered":"<h2><span>Shopping on Amazon<\/span><\/h2>\n<p>Ever got frustrated while shopping on Amazon? Maybe because of their wide range of alternatives for every product, but definitely not because of their e-commerce Apps. Whether it&#8217;s your saved payment details or grocery items you wanted at the last minute, Amazon seamlessly manages your data at scale, speed and with state of the art security measures<\/p>\n<p>Data is the most critical part of any application, making sure it&#8217;s secured and delivers as quickly as possible is something most customers expect as a basic functionality these days. If a shopping website doesn&#8217;t impress you within the first 30 seconds, it&#8217;s probably the last time you might visit it right? Well, that\u2019s the approach we millennials carry on a usual weekend or a shopping sale festival. However, it takes a massive infrastructure setup to handle such kind of relentless performance and to keep the shopaholics coming back every time.<\/p>\n<p>It&#8217;s quite an uber-luxury for Amazon to have a decent IT department, they call themselves <a href=\"https:\/\/aws.amazon.com\/\">Amazon Web Services<\/a>, heard about them? If not, just an FYI they also back most of the infrastructure for Netflix (the mother of drag. err well the TV shows!). The very fact of having a high profile client&#8217;s finance and reputation at stake, anything short of a reliable, scalable and durable solution would have been intolerable.<\/p>\n<p>One of the databases that back Amazon&#8217;s huge data collection is indeed one of the giants of the NoSQL world &#8212; AWS DynamoDB &#8212; a fast and flexible non-relational database service for all applications that need consistent, single-digit millisecond latency at any scale. It is a fully managed cloud database and supports both document and key-value store models. Its flexible data model, reliable performance, and automatic scaling of throughput capacity make it a great fit for mobile, web, gaming, ad tech, IoT, and many other modern-day applications.<\/p>\n<h2><span>Why NoSQL?<\/span><\/h2>\n<p>NoSQL designs deliver faster data operations and can seem more intuitive, while not necessarily adhering to the ACID (atomicity, consistency, isolation, and durability) properties of a relational database. Although, with a little more effort of having an additional DynamoDB table to capture additional values or a Global Secondary Index, etc. you can make DynamoDB work for your case as a regular SQL store would have. There are many well-known <a href=\"https:\/\/blazeclan.com\/en-eu\/blog\/dive-deep-types-nosql-databases\/\">NoSQL databases<\/a> available, including MongoDB, Cassandra, HBase, Redis, Amazon DynamoDB, etc. Each of those was built for a specific range of uses and will offer different features.<\/p>\n<h2><span>Our story<\/span><\/h2>\n<p>Here at <a href=\"https:\/\/blazeclan.com\/en-eu\/contact-us\/\">Blazeclan<\/a>, we have been utilizing AWS <a href=\"https:\/\/docs.aws.amazon.com\/amazondynamodb\/latest\/developerguide\/Introduction.html\" target=\"_blank\" rel=\"noopener noreferrer\">DynamoDB <\/a>for many of our customers. One of our use cases was a complete Serverless and NoSQL solution for implementing a middleware application. AWS DynamoDB, AWS Lambda and a few more AWS services were chosen for storing data and creating APIs for implementing a microservices-based architecture.<\/p>\n<p>We used DynamoDB for storing Session and Configuration data of our customers. This data was consumed on the AWS Lambda functions for creating APIs for the application. AWS DynamoDB provided us millisecond latency at scale, helping us achieve blazing performance, monitoring and integrating with other AWS services with ease. API gateway was used to expose the APIs as well as to enforce security.<\/p>\n<div class=\"text-center\"><img decoding=\"async\" src=\"https:\/\/blazeclan.com\/wp-content\/uploads\/2019\/05\/Flow-copy-1.jpg\"><\/div>\n<p>DynamoDB is a key-value store and works really well if you are retrieving individual records based on key lookups. Although if you have a \u201chot-key\u201d in your dataset, i.e., a particular partition key that you are accessing frequently, make sure that the provisioned write capacity unit on your table is set high enough to handle all those queries.<\/p>\n<p>So if your application is using too many Read Capacity Units on a single key, you either need to over-provision all the other partitions (expensive), manage a ton of \u201cThroughput Exceeded\u201d errors (not ideal), or figure out how to decrease access to that key.<\/p>\n<p>In our case, we were able to identify the \u201cHot partition\u201d issue by logging every method\u2019s processing time. This way, we were able to narrow down the DynamoDB calls which were taking much longer than usual to respond when a particular partition key was queried frequently within a short time span.<\/p>\n<h2><span>The DRS for DynamoDb &#8211; DAX<\/span><\/h2>\n<p>One of the solutions to avoid hot-keys was using Amazon DynamoDB Accelerator (<a href=\"https:\/\/aws.amazon.com\/dynamodb\/dax\/\">DAX<\/a>), which is a fully managed, highly available, in-memory cache for DynamoDB that delivers up to a 10x performance improvement, even at millions of requests per second.<\/p>\n<p>DAX does all the heavy lifting required to add in-memory acceleration to your DynamoDB tables, without requiring developers to manage cache invalidation, data population, or cluster management.<\/p>\n<div class=\"text-center\"><img decoding=\"async\" src=\"https:\/\/blazeclan.com\/wp-content\/uploads\/2019\/05\/amazon-dynamodb-dax-1.jpg\"><\/div>\n<p>Moreover, one does not need to modify application logic, since DAX is compatible with existing DynamoDB API calls and can be enabled with just a few clicks in the AWS Management Console or using the AWS SDK.<\/p>\n<p>Although for cost optimization we proposed a much cheaper alternative, We created separate APIs which returned the DB response and were cached using AWS CloudFront. We further modified the code to call these cached APIs instead of the DB tables. As the data of the partition keys that was being queried was not frequently modified, caching the DB response for a few minutes did the trick, thus avoiding querying the partition key frequently.<\/p>\n<p>DynamoDB thus complemented our serverless solution quite well. It&#8217;s fast, flexible and if you architect your solution properly, it can fit like a glove in your application as well!&nbsp;Contact us today at&nbsp;<a href=\"mailto:sales@139.59.4.14\" target=\"_blank\" rel=\"noopener noreferrer\">sales@139.59.4.14<\/a>&nbsp;to know how we can leverage the benefits of AWS Cloud for your business requirements.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Shopping on Amazon Ever got frustrated while shopping on Amazon? Maybe because of their wide range of alternatives for every product, but definitely not because of their e-commerce Apps. Whether it&#8217;s your saved payment details or grocery items you wanted at the last minute, Amazon seamlessly manages your data at scale, speed and with state [&hellip;]<\/p>\n","protected":false},"author":192,"featured_media":18701,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[922,1549,2033,1464,1947],"tags":[2005,2368,1855,275,1209,2289,2369],"class_list":["post-29491","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud-en-eu","category-data-warehouse-on-aws-en-eu","category-news-more-en-eu","category-product-development-en-eu","category-tech-en-eu","tag-amazon-cloud-en-eu","tag-amazon-dynamodb-en-eu","tag-aws-en-eu","tag-aws-cloud","tag-aws-cloud-en-eu","tag-cloud-computing-e-commerce-en-eu","tag-mongodb-nosql-databases-en-eu"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>DynamoDB Hot Partition Use Case - The Amazonian&#039;s NoSQL<\/title>\n<meta name=\"description\" content=\"Ever got frustrated while shopping on Amazon? Maybe because of their wide range of alternatives for every product, but definitely not because of their e-commerce Apps.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DynamoDB Hot Partition Use Case - The Amazonian&#039;s NoSQL\" \/>\n<meta property=\"og:description\" content=\"Ever got frustrated while shopping on Amazon? Maybe because of their wide range of alternatives for every product, but definitely not because of their e-commerce Apps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/\" \/>\n<meta property=\"og:site_name\" content=\"Blazeclan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/blazeclan.hq\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-25T13:02:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-14T09:26:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1650\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Team Blazeclan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@blazeclan_hq\" \/>\n<meta name=\"twitter:site\" content=\"@blazeclan_hq\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team Blazeclan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/\"},\"author\":{\"name\":\"Team Blazeclan\",\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8\"},\"headline\":\"The Amazonian\u2019s NoSQL &#8211; A DynamoDB Hot Partition Use Case\",\"datePublished\":\"2022-11-25T13:02:05+00:00\",\"dateModified\":\"2023-03-14T09:26:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/\"},\"wordCount\":934,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#organization\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png\",\"keywords\":[\"Amazon Cloud\",\"Amazon DynamoDB\",\"AWS\",\"AWS Cloud\",\"AWS Cloud\",\"Cloud Computing e-Commerce\",\"MongoDB NoSQL Databases\"],\"articleSection\":[\"Cloud\",\"Data Warehouse On AWS\",\"News &amp; More\",\"Product Development\",\"Tech\"],\"inLanguage\":\"en-EU\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/\",\"url\":\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/\",\"name\":\"DynamoDB Hot Partition Use Case - The Amazonian's NoSQL\",\"isPartOf\":{\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png\",\"datePublished\":\"2022-11-25T13:02:05+00:00\",\"dateModified\":\"2023-03-14T09:26:21+00:00\",\"description\":\"Ever got frustrated while shopping on Amazon? Maybe because of their wide range of alternatives for every product, but definitely not because of their e-commerce Apps.\",\"breadcrumb\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#breadcrumb\"},\"inLanguage\":\"en-EU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-EU\",\"@id\":\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#primaryimage\",\"url\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png\",\"contentUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png\",\"width\":1650,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blazeclan.com\/en-eu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Amazonian\u2019s NoSQL &#8211; A DynamoDB Hot Partition Use Case\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#website\",\"url\":\"https:\/\/blazeclan.com\/en-eu\/\",\"name\":\"Blazeclan\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blazeclan.com\/en-eu\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-EU\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#organization\",\"name\":\"Blazeclan\",\"url\":\"https:\/\/blazeclan.com\/en-eu\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-EU\",\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg\",\"contentUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg\",\"caption\":\"Blazeclan\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/blazeclan.hq\/\",\"https:\/\/x.com\/blazeclan_hq\",\"https:\/\/www.instagram.com\/blazeclantechnologies\/\",\"https:\/\/www.linkedin.com\/company\/blazeclan-technologies\/\",\"https:\/\/www.youtube.com\/channel\/UCCKF4Lcbtus-pUoZr7Lxrow\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8\",\"name\":\"Team Blazeclan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-EU\",\"@id\":\"https:\/\/blazeclan.com\/en-eu\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g\",\"caption\":\"Team Blazeclan\"},\"sameAs\":[\"http:\/\/localhost\/ps-local-wp\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"DynamoDB Hot Partition Use Case - The Amazonian's NoSQL","description":"Ever got frustrated while shopping on Amazon? Maybe because of their wide range of alternatives for every product, but definitely not because of their e-commerce Apps.","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:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/","og_locale":"en_US","og_type":"article","og_title":"DynamoDB Hot Partition Use Case - The Amazonian's NoSQL","og_description":"Ever got frustrated while shopping on Amazon? Maybe because of their wide range of alternatives for every product, but definitely not because of their e-commerce Apps.","og_url":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/","og_site_name":"Blazeclan","article_publisher":"https:\/\/www.facebook.com\/blazeclan.hq\/","article_published_time":"2022-11-25T13:02:05+00:00","article_modified_time":"2023-03-14T09:26:21+00:00","og_image":[{"width":1650,"height":680,"url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png","type":"image\/png"}],"author":"Team Blazeclan","twitter_card":"summary_large_image","twitter_creator":"@blazeclan_hq","twitter_site":"@blazeclan_hq","twitter_misc":{"Written by":"Team Blazeclan","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#article","isPartOf":{"@id":"https:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/"},"author":{"name":"Team Blazeclan","@id":"https:\/\/blazeclan.com\/en-eu\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8"},"headline":"The Amazonian\u2019s NoSQL &#8211; A DynamoDB Hot Partition Use Case","datePublished":"2022-11-25T13:02:05+00:00","dateModified":"2023-03-14T09:26:21+00:00","mainEntityOfPage":{"@id":"https:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/"},"wordCount":934,"commentCount":0,"publisher":{"@id":"https:\/\/blazeclan.com\/en-eu\/#organization"},"image":{"@id":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#primaryimage"},"thumbnailUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png","keywords":["Amazon Cloud","Amazon DynamoDB","AWS","AWS Cloud","AWS Cloud","Cloud Computing e-Commerce","MongoDB NoSQL Databases"],"articleSection":["Cloud","Data Warehouse On AWS","News &amp; More","Product Development","Tech"],"inLanguage":"en-EU","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blazeclan.com\/en-eu\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/","url":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/","name":"DynamoDB Hot Partition Use Case - The Amazonian's NoSQL","isPartOf":{"@id":"https:\/\/blazeclan.com\/en-eu\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#primaryimage"},"image":{"@id":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#primaryimage"},"thumbnailUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png","datePublished":"2022-11-25T13:02:05+00:00","dateModified":"2023-03-14T09:26:21+00:00","description":"Ever got frustrated while shopping on Amazon? Maybe because of their wide range of alternatives for every product, but definitely not because of their e-commerce Apps.","breadcrumb":{"@id":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#breadcrumb"},"inLanguage":"en-EU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/"]}]},{"@type":"ImageObject","inLanguage":"en-EU","@id":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#primaryimage","url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png","contentUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2018\/07\/No-sql-1.png","width":1650,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/blazeclan.com\/blog\/the-amazonians-nosql-a-dynamodb-hot-partition-use-case\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blazeclan.com\/en-eu\/"},{"@type":"ListItem","position":2,"name":"The Amazonian\u2019s NoSQL &#8211; A DynamoDB Hot Partition Use Case"}]},{"@type":"WebSite","@id":"https:\/\/blazeclan.com\/en-eu\/#website","url":"https:\/\/blazeclan.com\/en-eu\/","name":"Blazeclan","description":"","publisher":{"@id":"https:\/\/blazeclan.com\/en-eu\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blazeclan.com\/en-eu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-EU"},{"@type":"Organization","@id":"https:\/\/blazeclan.com\/en-eu\/#organization","name":"Blazeclan","url":"https:\/\/blazeclan.com\/en-eu\/","logo":{"@type":"ImageObject","inLanguage":"en-EU","@id":"https:\/\/blazeclan.com\/en-eu\/#\/schema\/logo\/image\/","url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg","contentUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg","caption":"Blazeclan"},"image":{"@id":"https:\/\/blazeclan.com\/en-eu\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/blazeclan.hq\/","https:\/\/x.com\/blazeclan_hq","https:\/\/www.instagram.com\/blazeclantechnologies\/","https:\/\/www.linkedin.com\/company\/blazeclan-technologies\/","https:\/\/www.youtube.com\/channel\/UCCKF4Lcbtus-pUoZr7Lxrow"]},{"@type":"Person","@id":"https:\/\/blazeclan.com\/en-eu\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8","name":"Team Blazeclan","image":{"@type":"ImageObject","inLanguage":"en-EU","@id":"https:\/\/blazeclan.com\/en-eu\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g","caption":"Team Blazeclan"},"sameAs":["http:\/\/localhost\/ps-local-wp"]}]}},"_links":{"self":[{"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/posts\/29491","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/users\/192"}],"replies":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/comments?post=29491"}],"version-history":[{"count":0,"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/posts\/29491\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/media\/18701"}],"wp:attachment":[{"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/media?parent=29491"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/categories?post=29491"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blazeclan.com\/en-eu\/wp-json\/wp\/v2\/tags?post=29491"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}