mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 14:45:03 +01:00
Update notes for 2018-07-09
This commit is contained in:
parent
9875754432
commit
5ad4a8f80e
@ -147,9 +147,37 @@ Caused by: java.lang.RuntimeException: Failed to startup the DSpace Service Mana
|
|||||||
- I wonder if I should convert some of the cron jobs to systemd services / timers...
|
- I wonder if I should convert some of the cron jobs to systemd services / timers...
|
||||||
- I sent a note to all our users on Yammer to ask them about possible maintenance on Sunday, July 14th
|
- I sent a note to all our users on Yammer to ask them about possible maintenance on Sunday, July 14th
|
||||||
- Abenet wants to be able to search by journal title (dc.source) in the advanced Discovery search so I opened an issue for it ([#384](https://github.com/ilri/DSpace/issues/384))
|
- Abenet wants to be able to search by journal title (dc.source) in the advanced Discovery search so I opened an issue for it ([#384](https://github.com/ilri/DSpace/issues/384))
|
||||||
|
- I regenerated the list of names for all our ORCID iDs using my [resolve-orcids.py](https://gist.github.com/alanorth/57a88379126d844563c1410bd7b8d12b) script:
|
||||||
|
|
||||||
## 2018-07-08
|
```
|
||||||
|
$ grep -oE '[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}' ~/src/git/DSpace/dspace/config/controlled-vocabularies/cg-creator-id.xml | sort | uniq > /tmp/2018-07-08-orcids.txt
|
||||||
|
$ ./resolve-orcids.py -i /tmp/2018-07-08-orcids.txt -o /tmp/2018-07-08-names.txt -d
|
||||||
|
```
|
||||||
|
|
||||||
|
- But after comparing to the existing list of names I didn't see much change, so I just ignored it
|
||||||
|
|
||||||
|
## 2018-07-09
|
||||||
|
|
||||||
- Uptime Robot said that CGSpace was down for two minutes early this morning but I don't see anything in Tomcat logs or dmesg
|
- Uptime Robot said that CGSpace was down for two minutes early this morning but I don't see anything in Tomcat logs or dmesg
|
||||||
|
- Uptime Robot said that CGSpace was down for two minutes again later in the day, and this time I saw a memory error in Tomcat's `catalina.out`:
|
||||||
|
|
||||||
|
```
|
||||||
|
Exception in thread "http-bio-127.0.0.1-8081-exec-557" java.lang.OutOfMemoryError: Java heap space
|
||||||
|
```
|
||||||
|
|
||||||
|
- I'm not sure if it's the same error, but I see this in DSpace's `solr.log`:
|
||||||
|
|
||||||
|
```
|
||||||
|
2018-07-09 06:25:09,913 ERROR org.apache.solr.servlet.SolrDispatchFilter @ null:java.lang.RuntimeException: java.lang.OutOfMemoryError: Java heap space
|
||||||
|
```
|
||||||
|
|
||||||
|
- I see a strange error around that time in `dspace.log.2018-07-08`:
|
||||||
|
|
||||||
|
```
|
||||||
|
2018-07-09 06:23:43,510 ERROR com.atmire.statistics.SolrLogThread @ IOException occured when talking to server at: http://localhost:8081/solr/statistics
|
||||||
|
org.apache.solr.client.solrj.SolrServerException: IOException occured when talking to server at: http://localhost:8081/solr/statistics
|
||||||
|
```
|
||||||
|
|
||||||
|
- But not sure what caused that...
|
||||||
|
|
||||||
<!-- vim: set sw=2 ts=2: -->
|
<!-- vim: set sw=2 ts=2: -->
|
||||||
|
@ -30,7 +30,7 @@ There is insufficient memory for the Java Runtime Environment to continue.
|
|||||||
|
|
||||||
<meta property="article:published_time" content="2018-07-01T12:56:54+03:00"/>
|
<meta property="article:published_time" content="2018-07-01T12:56:54+03:00"/>
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2018-07-08T23:20:36+03:00"/>
|
<meta property="article:modified_time" content="2018-07-09T07:51:04+03:00"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -71,9 +71,9 @@ There is insufficient memory for the Java Runtime Environment to continue.
|
|||||||
"@type": "BlogPosting",
|
"@type": "BlogPosting",
|
||||||
"headline": "July, 2018",
|
"headline": "July, 2018",
|
||||||
"url": "https://alanorth.github.io/cgspace-notes/2018-07/",
|
"url": "https://alanorth.github.io/cgspace-notes/2018-07/",
|
||||||
"wordCount": "1064",
|
"wordCount": "1213",
|
||||||
"datePublished": "2018-07-01T12:56:54+03:00",
|
"datePublished": "2018-07-01T12:56:54+03:00",
|
||||||
"dateModified": "2018-07-08T23:20:36+03:00",
|
"dateModified": "2018-07-09T07:51:04+03:00",
|
||||||
"author": {
|
"author": {
|
||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
@ -304,12 +304,44 @@ Caused by: java.lang.RuntimeException: Failed to startup the DSpace Service Mana
|
|||||||
<li>I wonder if I should convert some of the cron jobs to systemd services / timers…</li>
|
<li>I wonder if I should convert some of the cron jobs to systemd services / timers…</li>
|
||||||
<li>I sent a note to all our users on Yammer to ask them about possible maintenance on Sunday, July 14th</li>
|
<li>I sent a note to all our users on Yammer to ask them about possible maintenance on Sunday, July 14th</li>
|
||||||
<li>Abenet wants to be able to search by journal title (dc.source) in the advanced Discovery search so I opened an issue for it (<a href="https://github.com/ilri/DSpace/issues/384">#384</a>)</li>
|
<li>Abenet wants to be able to search by journal title (dc.source) in the advanced Discovery search so I opened an issue for it (<a href="https://github.com/ilri/DSpace/issues/384">#384</a>)</li>
|
||||||
|
<li>I regenerated the list of names for all our ORCID iDs using my <a href="https://gist.github.com/alanorth/57a88379126d844563c1410bd7b8d12b">resolve-orcids.py</a> script:</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h2 id="2018-07-08-1">2018-07-08</h2>
|
<pre><code>$ grep -oE '[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}' ~/src/git/DSpace/dspace/config/controlled-vocabularies/cg-creator-id.xml | sort | uniq > /tmp/2018-07-08-orcids.txt
|
||||||
|
$ ./resolve-orcids.py -i /tmp/2018-07-08-orcids.txt -o /tmp/2018-07-08-names.txt -d
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>But after comparing to the existing list of names I didn’t see much change, so I just ignored it</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 id="2018-07-09">2018-07-09</h2>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Uptime Robot said that CGSpace was down for two minutes early this morning but I don’t see anything in Tomcat logs or dmesg</li>
|
<li>Uptime Robot said that CGSpace was down for two minutes early this morning but I don’t see anything in Tomcat logs or dmesg</li>
|
||||||
|
<li>Uptime Robot said that CGSpace was down for two minutes again later in the day, and this time I saw a memory error in Tomcat’s <code>catalina.out</code>:</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>Exception in thread "http-bio-127.0.0.1-8081-exec-557" java.lang.OutOfMemoryError: Java heap space
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>I’m not sure if it’s the same error, but I see this in DSpace’s <code>solr.log</code>:</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>2018-07-09 06:25:09,913 ERROR org.apache.solr.servlet.SolrDispatchFilter @ null:java.lang.RuntimeException: java.lang.OutOfMemoryError: Java heap space
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>I see a strange error around that time in <code>dspace.log.2018-07-08</code>:</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>2018-07-09 06:23:43,510 ERROR com.atmire.statistics.SolrLogThread @ IOException occured when talking to server at: http://localhost:8081/solr/statistics
|
||||||
|
org.apache.solr.client.solrj.SolrServerException: IOException occured when talking to server at: http://localhost:8081/solr/statistics
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>But not sure what caused that…</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<!-- vim: set sw=2 ts=2: -->
|
<!-- vim: set sw=2 ts=2: -->
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/2018-07/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/2018-07/</loc>
|
||||||
<lastmod>2018-07-08T23:20:36+03:00</lastmod>
|
<lastmod>2018-07-09T07:51:04+03:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
@ -174,7 +174,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||||
<lastmod>2018-07-08T23:20:36+03:00</lastmod>
|
<lastmod>2018-07-09T07:51:04+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@ -185,7 +185,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||||
<lastmod>2018-07-08T23:20:36+03:00</lastmod>
|
<lastmod>2018-07-09T07:51:04+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@ -197,13 +197,13 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||||
<lastmod>2018-07-08T23:20:36+03:00</lastmod>
|
<lastmod>2018-07-09T07:51:04+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||||
<lastmod>2018-07-08T23:20:36+03:00</lastmod>
|
<lastmod>2018-07-09T07:51:04+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user