mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 06:35:03 +01:00
Add notes for 2021-04-13
This commit is contained in:
parent
3400ed2e42
commit
5daf2f8c21
@ -177,7 +177,7 @@ $ curl -s 'http://localhost:9200/_alias/' | python -m json.tool | less
|
|||||||
},
|
},
|
||||||
```
|
```
|
||||||
|
|
||||||
- But on AReS production `openrxv-items` has somehow become an index:
|
- But on AReS production `openrxv-items` has somehow become a concrete index:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ curl -s 'http://localhost:9200/_alias/' | python -m json.tool | less
|
$ curl -s 'http://localhost:9200/_alias/' | python -m json.tool | less
|
||||||
|
@ -481,4 +481,117 @@ $ psql -c 'SELECT * FROM pg_locks pl LEFT JOIN pg_stat_activity psa ON pl.pid =
|
|||||||
|
|
||||||
- I definitely need to look into that!
|
- I definitely need to look into that!
|
||||||
|
|
||||||
|
## 2021-04-11
|
||||||
|
|
||||||
|
- I am trying to resolve the AReS Elasticsearch index issues that happened last week
|
||||||
|
- I decided to back up the `openrxv-items` index to `openrxv-items-backup` and then delete all the others:
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ curl -X PUT "localhost:9200/openrxv-items/_settings" -H 'Content-Type: application/json' -d'{"settings": {"index.blocks.write": true}}'
|
||||||
|
$ curl -s -X POST http://localhost:9200/openrxv-items-temp/_clone/openrxv-items-backup
|
||||||
|
$ curl -X PUT "localhost:9200/openrxv-items/_settings" -H 'Content-Type: application/json' -d'{"settings": {"index.blocks.write": false}}'
|
||||||
|
$ curl -XDELETE 'http://localhost:9200/openrxv-items-temp'
|
||||||
|
$ curl -XDELETE 'http://localhost:9200/openrxv-items-final'
|
||||||
|
$ curl -XDELETE 'http://localhost:9200/openrxv-items-final'
|
||||||
|
```
|
||||||
|
|
||||||
|
- Then I updated all Docker containers and rebooted the server (linode20) so that the correct indexes would be created again:
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ docker images | grep -v ^REPO | sed 's/ \+/:/g' | cut -d: -f1,2 | xargs -L1 docker pull
|
||||||
|
```
|
||||||
|
|
||||||
|
- Then I realized I have to clone the backup index directly to `openrxv-items-final`, and re-create the `openrxv-items` alias:
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ curl -XDELETE 'http://localhost:9200/openrxv-items-final'
|
||||||
|
$ curl -X PUT "localhost:9200/openrxv-items-backup/_settings" -H 'Content-Type: application/json' -d'{"settings": {"index.blocks.write": true}}'
|
||||||
|
$ curl -s -X POST http://localhost:9200/openrxv-items-backup/_clone/openrxv-items-final
|
||||||
|
$ curl -s -X POST 'http://localhost:9200/_aliases' -H 'Content-Type: application/json' -d'{"actions" : [{"add" : { "index" : "openrxv-items-final", "alias" : "openrxv-items"}}]}'
|
||||||
|
```
|
||||||
|
|
||||||
|
- Now I see both `openrxv-items-final` and `openrxv-items` have the current number of items:
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ curl -s 'http://localhost:9200/openrxv-items/_count?q=*&pretty'
|
||||||
|
{
|
||||||
|
"count" : 103373,
|
||||||
|
"_shards" : {
|
||||||
|
"total" : 1,
|
||||||
|
"successful" : 1,
|
||||||
|
"skipped" : 0,
|
||||||
|
"failed" : 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$ curl -s 'http://localhost:9200/openrxv-items-final/_count?q=*&pretty'
|
||||||
|
{
|
||||||
|
"count" : 103373,
|
||||||
|
"_shards" : {
|
||||||
|
"total" : 1,
|
||||||
|
"successful" : 1,
|
||||||
|
"skipped" : 0,
|
||||||
|
"failed" : 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
- Then I started a fresh harvesting in the AReS Explorer admin dashboard
|
||||||
|
|
||||||
|
## 2021-04-12
|
||||||
|
|
||||||
|
- The harvesting on AReS finished last night, but the indexes got messed up again
|
||||||
|
- I will have to fix them manually next time...
|
||||||
|
|
||||||
|
## 2021-04-13
|
||||||
|
|
||||||
|
- Looking into the logs on 2021-04-06 on CGSpace and DSpace Test to see if there is anything specific that stands out about the activty on those days that would cause the PostgreSQL issues
|
||||||
|
- Digging into the Munin graphs for the last week I found a few other things happening on that morning:
|
||||||
|
|
||||||
|
![/dev/sda disk latency week](/cgspace-notes/2021/04/sda-week.png)
|
||||||
|
![JVM classes unloaded week](/cgspace-notes/2021/04/classes_unloaded-week.png)
|
||||||
|
![Nginx status week](/cgspace-notes/2021/04/nginx_status-week.png)
|
||||||
|
|
||||||
|
- 13,000 requests in the last two months from a user with user agent `SomeRandomText`, for example:
|
||||||
|
|
||||||
|
```console
|
||||||
|
84.33.2.97 - - [06/Apr/2021:06:25:13 +0200] "GET /bitstream/handle/10568/77776/CROP%20SCIENCE.jpg.jpg HTTP/1.1" 404 10890 "-" "SomeRandomText"
|
||||||
|
```
|
||||||
|
|
||||||
|
- I purged them:
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ ./ilri/check-spider-hits.sh -f /tmp/agents.txt -p
|
||||||
|
Purging 13159 hits from SomeRandomText in statistics
|
||||||
|
|
||||||
|
Total number of bot hits purged: 13159
|
||||||
|
```
|
||||||
|
|
||||||
|
- I noticed there were 78 items submitted in the hour before CGSpace crashed:
|
||||||
|
|
||||||
|
```console
|
||||||
|
# grep -a -E '2021-04-06 0(6|7):' /home/cgspace.cgiar.org/log/dspace.log.2021-04-06 | grep -c -a add_item
|
||||||
|
78
|
||||||
|
```
|
||||||
|
|
||||||
|
- Of those 78, 77 of them were from Udana
|
||||||
|
- Compared to other mornings (0 to 9 AM) this month that seems to be pretty high:
|
||||||
|
|
||||||
|
```console
|
||||||
|
# for num in {01..13}; do grep -a -E "2021-04-$num 0" /home/cgspace.cgiar.org/log/dspace.log.2021-04-$num | grep -c -a
|
||||||
|
add_item; done
|
||||||
|
32
|
||||||
|
0
|
||||||
|
0
|
||||||
|
2
|
||||||
|
8
|
||||||
|
108
|
||||||
|
4
|
||||||
|
0
|
||||||
|
29
|
||||||
|
0
|
||||||
|
1
|
||||||
|
1
|
||||||
|
2
|
||||||
|
```
|
||||||
|
|
||||||
<!-- vim: set sw=2 ts=2: -->
|
<!-- vim: set sw=2 ts=2: -->
|
||||||
|
@ -44,7 +44,7 @@ Also, we found some issues building and running OpenRXV currently due to ecosyst
|
|||||||
"@type": "BlogPosting",
|
"@type": "BlogPosting",
|
||||||
"headline": "March, 2021",
|
"headline": "March, 2021",
|
||||||
"url": "https://alanorth.github.io/cgspace-notes/2021-03/",
|
"url": "https://alanorth.github.io/cgspace-notes/2021-03/",
|
||||||
"wordCount": "4452",
|
"wordCount": "4453",
|
||||||
"datePublished": "2021-03-01T10:13:54+02:00",
|
"datePublished": "2021-03-01T10:13:54+02:00",
|
||||||
"dateModified": "2021-04-05T19:36:44+03:00",
|
"dateModified": "2021-04-05T19:36:44+03:00",
|
||||||
"author": {
|
"author": {
|
||||||
@ -306,7 +306,7 @@ $ curl -XDELETE 'http://localhost:9200/openrxv-items-2021-03-05'
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
</code></pre><ul>
|
</code></pre><ul>
|
||||||
<li>But on AReS production <code>openrxv-items</code> has somehow become an index:</li>
|
<li>But on AReS production <code>openrxv-items</code> has somehow become a concrete index:</li>
|
||||||
</ul>
|
</ul>
|
||||||
<pre><code class="language-console" data-lang="console">$ curl -s 'http://localhost:9200/_alias/' | python -m json.tool | less
|
<pre><code class="language-console" data-lang="console">$ curl -s 'http://localhost:9200/_alias/' | python -m json.tool | less
|
||||||
...
|
...
|
||||||
|
@ -24,7 +24,7 @@ Perhaps one of the containers crashed, I should have looked closer but I was in
|
|||||||
<meta property="og:type" content="article" />
|
<meta property="og:type" content="article" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2021-04/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2021-04/" />
|
||||||
<meta property="article:published_time" content="2021-04-01T09:50:54+03:00" />
|
<meta property="article:published_time" content="2021-04-01T09:50:54+03:00" />
|
||||||
<meta property="article:modified_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="article:modified_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -54,9 +54,9 @@ Perhaps one of the containers crashed, I should have looked closer but I was in
|
|||||||
"@type": "BlogPosting",
|
"@type": "BlogPosting",
|
||||||
"headline": "April, 2021",
|
"headline": "April, 2021",
|
||||||
"url": "https://alanorth.github.io/cgspace-notes/2021-04/",
|
"url": "https://alanorth.github.io/cgspace-notes/2021-04/",
|
||||||
"wordCount": "2530",
|
"wordCount": "2984",
|
||||||
"datePublished": "2021-04-01T09:50:54+03:00",
|
"datePublished": "2021-04-01T09:50:54+03:00",
|
||||||
"dateModified": "2021-04-06T22:48:44+03:00",
|
"dateModified": "2021-04-13T15:42:35+03:00",
|
||||||
"author": {
|
"author": {
|
||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
@ -192,7 +192,7 @@ $ curl -X PUT "localhost:9200/openrxv-items-final/_settings" -H 'Conte
|
|||||||
</li>
|
</li>
|
||||||
<li>Create the CGSpace community and collection structure for the new Accelerating Impacts of CGIAR Climate Research for Africa (AICCRA) and assign all workflow steps</li>
|
<li>Create the CGSpace community and collection structure for the new Accelerating Impacts of CGIAR Climate Research for Africa (AICCRA) and assign all workflow steps</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="2021-04-04-1">2021-04-04</h2>
|
<h2 id="2021-04-05">2021-04-05</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>The AReS Explorer harvesting from yesterday finished, and the results look OK, but actually the Elasticsearch indexes are messed up again:</li>
|
<li>The AReS Explorer harvesting from yesterday finished, and the results look OK, but actually the Elasticsearch indexes are messed up again:</li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -600,7 +600,112 @@ $ psql -c 'SELECT * FROM pg_locks pl LEFT JOIN pg_stat_activity psa ON pl.pid =
|
|||||||
<ul>
|
<ul>
|
||||||
<li>I definitely need to look into that!</li>
|
<li>I definitely need to look into that!</li>
|
||||||
</ul>
|
</ul>
|
||||||
<!-- raw HTML omitted -->
|
<h2 id="2021-04-11">2021-04-11</h2>
|
||||||
|
<ul>
|
||||||
|
<li>I am trying to resolve the AReS Elasticsearch index issues that happened last week
|
||||||
|
<ul>
|
||||||
|
<li>I decided to back up the <code>openrxv-items</code> index to <code>openrxv-items-backup</code> and then delete all the others:</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code class="language-console" data-lang="console">$ curl -X PUT "localhost:9200/openrxv-items/_settings" -H 'Content-Type: application/json' -d'{"settings": {"index.blocks.write": true}}'
|
||||||
|
$ curl -s -X POST http://localhost:9200/openrxv-items-temp/_clone/openrxv-items-backup
|
||||||
|
$ curl -X PUT "localhost:9200/openrxv-items/_settings" -H 'Content-Type: application/json' -d'{"settings": {"index.blocks.write": false}}'
|
||||||
|
$ curl -XDELETE 'http://localhost:9200/openrxv-items-temp'
|
||||||
|
$ curl -XDELETE 'http://localhost:9200/openrxv-items-final'
|
||||||
|
$ curl -XDELETE 'http://localhost:9200/openrxv-items-final'
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>Then I updated all Docker containers and rebooted the server (linode20) so that the correct indexes would be created again:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code class="language-console" data-lang="console">$ docker images | grep -v ^REPO | sed 's/ \+/:/g' | cut -d: -f1,2 | xargs -L1 docker pull
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>Then I realized I have to clone the backup index directly to <code>openrxv-items-final</code>, and re-create the <code>openrxv-items</code> alias:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code class="language-console" data-lang="console">$ curl -XDELETE 'http://localhost:9200/openrxv-items-final'
|
||||||
|
$ curl -X PUT "localhost:9200/openrxv-items-backup/_settings" -H 'Content-Type: application/json' -d'{"settings": {"index.blocks.write": true}}'
|
||||||
|
$ curl -s -X POST http://localhost:9200/openrxv-items-backup/_clone/openrxv-items-final
|
||||||
|
$ curl -s -X POST 'http://localhost:9200/_aliases' -H 'Content-Type: application/json' -d'{"actions" : [{"add" : { "index" : "openrxv-items-final", "alias" : "openrxv-items"}}]}'
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>Now I see both <code>openrxv-items-final</code> and <code>openrxv-items</code> have the current number of items:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code class="language-console" data-lang="console">$ curl -s 'http://localhost:9200/openrxv-items/_count?q=*&pretty'
|
||||||
|
{
|
||||||
|
"count" : 103373,
|
||||||
|
"_shards" : {
|
||||||
|
"total" : 1,
|
||||||
|
"successful" : 1,
|
||||||
|
"skipped" : 0,
|
||||||
|
"failed" : 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$ curl -s 'http://localhost:9200/openrxv-items-final/_count?q=*&pretty'
|
||||||
|
{
|
||||||
|
"count" : 103373,
|
||||||
|
"_shards" : {
|
||||||
|
"total" : 1,
|
||||||
|
"successful" : 1,
|
||||||
|
"skipped" : 0,
|
||||||
|
"failed" : 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>Then I started a fresh harvesting in the AReS Explorer admin dashboard</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="2021-04-12">2021-04-12</h2>
|
||||||
|
<ul>
|
||||||
|
<li>The harvesting on AReS finished last night, but the indexes got messed up again
|
||||||
|
<ul>
|
||||||
|
<li>I will have to fix them manually next time…</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="2021-04-13">2021-04-13</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Looking into the logs on 2021-04-06 on CGSpace and DSpace Test to see if there is anything specific that stands out about the activty on those days that would cause the PostgreSQL issues
|
||||||
|
<ul>
|
||||||
|
<li>Digging into the Munin graphs for the last week I found a few other things happening on that morning:</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p><img src="/cgspace-notes/2021/04/sda-week.png" alt="/dev/sda disk latency week">
|
||||||
|
<img src="/cgspace-notes/2021/04/classes_unloaded-week.png" alt="JVM classes unloaded week">
|
||||||
|
<img src="/cgspace-notes/2021/04/nginx_status-week.png" alt="Nginx status week"></p>
|
||||||
|
<ul>
|
||||||
|
<li>13,000 requests in the last two months from a user with user agent <code>SomeRandomText</code>, for example:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code class="language-console" data-lang="console">84.33.2.97 - - [06/Apr/2021:06:25:13 +0200] "GET /bitstream/handle/10568/77776/CROP%20SCIENCE.jpg.jpg HTTP/1.1" 404 10890 "-" "SomeRandomText"
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>I purged them:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code class="language-console" data-lang="console">$ ./ilri/check-spider-hits.sh -f /tmp/agents.txt -p
|
||||||
|
Purging 13159 hits from SomeRandomText in statistics
|
||||||
|
|
||||||
|
Total number of bot hits purged: 13159
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>I noticed there were 78 items submitted in the hour before CGSpace crashed:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code class="language-console" data-lang="console"># grep -a -E '2021-04-06 0(6|7):' /home/cgspace.cgiar.org/log/dspace.log.2021-04-06 | grep -c -a add_item
|
||||||
|
78
|
||||||
|
</code></pre><ul>
|
||||||
|
<li>Of those 78, 77 of them were from Udana</li>
|
||||||
|
<li>Compared to other mornings (0 to 9 AM) this month that seems to be pretty high:</li>
|
||||||
|
</ul>
|
||||||
|
<pre><code class="language-console" data-lang="console"># for num in {01..13}; do grep -a -E "2021-04-$num 0" /home/cgspace.cgiar.org/log/dspace.log.2021-04-$num | grep -c -a
|
||||||
|
add_item; done
|
||||||
|
32
|
||||||
|
0
|
||||||
|
0
|
||||||
|
2
|
||||||
|
8
|
||||||
|
108
|
||||||
|
4
|
||||||
|
0
|
||||||
|
29
|
||||||
|
0
|
||||||
|
1
|
||||||
|
1
|
||||||
|
2
|
||||||
|
</code></pre><!-- raw HTML omitted -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
BIN
docs/2021/04/classes_unloaded-week.png
Normal file
BIN
docs/2021/04/classes_unloaded-week.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.7 KiB |
BIN
docs/2021/04/nginx_status-week.png
Normal file
BIN
docs/2021/04/nginx_status-week.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
BIN
docs/2021/04/sda-week.png
Normal file
BIN
docs/2021/04/sda-week.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||||
<meta property="og:updated_time" content="2021-04-06T22:48:44+03:00" />
|
<meta property="og:updated_time" content="2021-04-13T15:42:35+03:00" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,19 +3,19 @@
|
|||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/2021-04/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/2021-04/</loc>
|
||||||
<lastmod>2021-04-06T22:48:44+03:00</lastmod>
|
<lastmod>2021-04-13T15:42:35+03:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/categories/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/categories/</loc>
|
||||||
<lastmod>2021-04-06T22:48:44+03:00</lastmod>
|
<lastmod>2021-04-13T15:42:35+03:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||||
<lastmod>2021-04-06T22:48:44+03:00</lastmod>
|
<lastmod>2021-04-13T15:42:35+03:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
||||||
<lastmod>2021-04-06T22:48:44+03:00</lastmod>
|
<lastmod>2021-04-13T15:42:35+03:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||||
<lastmod>2021-04-06T22:48:44+03:00</lastmod>
|
<lastmod>2021-04-13T15:42:35+03:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/2021-03/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/2021-03/</loc>
|
||||||
<lastmod>2021-04-05T19:36:44+03:00</lastmod>
|
<lastmod>2021-04-05T19:36:44+03:00</lastmod>
|
||||||
|
BIN
static/2021/04/classes_unloaded-week.png
Normal file
BIN
static/2021/04/classes_unloaded-week.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.7 KiB |
BIN
static/2021/04/nginx_status-week.png
Normal file
BIN
static/2021/04/nginx_status-week.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
BIN
static/2021/04/sda-week.png
Normal file
BIN
static/2021/04/sda-week.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Loading…
Reference in New Issue
Block a user