posts-go/docs/2023-03-05-incident.html

116 lines
3.7 KiB
HTML
Raw Normal View History

2023-07-18 18:38:30 +00:00
<!doctype html>
2023-03-05 08:48:43 +00:00
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
2023-12-20 18:45:20 +00:00
href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.5.0/github-markdown.min.css"
2023-03-05 08:48:43 +00:00
/>
<title>haunt98 posts</title>
2023-03-05 08:48:43 +00:00
</head>
<style>
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>
<body class="markdown-body">
2023-08-09 07:22:58 +00:00
<h2>
<a href="index.html"><code>~</code></a>
</h2>
2023-11-19 15:59:21 +00:00
<h1>
<a
id="user-content-incident-come-and-go"
class="anchor"
aria-hidden="true"
tabindex="-1"
href="#incident-come-and-go"
><span aria-hidden="true" class="octicon octicon-link"></span></a
>Incident come and go
2023-03-05 08:48:43 +00:00
</h1>
<p>This is collect of all incidents I created in the past :(</p>
2023-11-19 15:59:21 +00:00
<h2>
<a
id="user-content-service-starts-with-empty-port"
class="anchor"
aria-hidden="true"
tabindex="-1"
href="#service-starts-with-empty-port"
><span aria-hidden="true" class="octicon octicon-link"></span></a
>Service starts with empty port
2023-03-05 08:48:43 +00:00
</h2>
<p>Because all configs is read from file.</p>
<p>
But the port config is empty -&gt; So when service inits, it use that
empty port somehow.
</p>
<p>
<strong>Solution</strong>: For some configs, make sure to failed first if
it's empty.
</p>
2023-11-19 15:59:21 +00:00
<h2>
<a
id="user-content-race-condition-of-series-of-apis"
class="anchor"
aria-hidden="true"
tabindex="-1"
href="#race-condition-of-series-of-apis"
><span aria-hidden="true" class="octicon octicon-link"></span></a
>Race condition of series of APIs
2023-04-09 04:53:17 +00:00
</h2>
<p>For example I have 2 APIs:</p>
<ul>
<li>API upload: allow user to upload image</li>
<li>API submit: submit data to server</li>
</ul>
<p>
API upload is slow, it takes 10s to finish. API submit is fast, only takes
2s.
</p>
<p>
The problem is submit use data from upload too. When user calls API
upload, image is stored in cache. When user calls API submit, it use
whatever image is stored in cache.
</p>
<p>It's when the fun begins.</p>
<p>
Imagine user Trong already upload image. So he is ready to submit. But for
the same time, he re-call API upload to upload another image too.
</p>
<p>
2023-06-10 05:06:46 +00:00
So if API upload is finished first, which is kinda impossible (U know
2023-04-09 04:53:17 +00:00
upload file is not fast right?), everything right. But for most cases, API
submit is finished first. It means Trong's data is submitted with the old
image. Then API upload is finished, it will replace the old image with the
new one.So the old one, aka image in submitted data, is gone.
</p>
<p>Chaos right there!</p>
<p>
<strong>Solution</strong>: Use a lock, if user enter API upload, lock it
to prevent user call other APIs. Rememeber to unlock after finished
</p>
2023-03-05 08:48:43 +00:00
<div>
Feel free to ask me via
<a href="mailto:hauvipapro+posts@gmail.com">email</a> or
2023-08-20 17:29:13 +00:00
<a rel="me" href="https://hachyderm.io/@haunguyen">Mastodon</a>.
<br />Source code is available on
2023-03-05 08:48:43 +00:00
<a href="https://github.com/haunt98/posts-go">GitHub</a>
2023-08-20 17:29:13 +00:00
<a href="https://codeberg.org/yoshie/posts-go">Codeberg</a>
<a href="https://git.sr.ht/~youngyoshie/posts-go">sourcehut</a>
<a href="https://gitea.treehouse.systems/yoshie/posts-go">Treehouse</a>
<a href="https://gitlab.com/youngyoshie/posts-go">GitLab</a>
2023-03-05 08:48:43 +00:00
</div>
</body>
</html>