mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-16 20:07:03 +01:00
Add notes for 2017-04-22
This commit is contained in:
parent
7697a7507d
commit
aa63b31188
@ -323,3 +323,13 @@ $ wc -l /tmp/ciat
|
|||||||
$ export JAVA_OPTS="-Dfile.encoding=UTF-8 -Xmx1024m"
|
$ export JAVA_OPTS="-Dfile.encoding=UTF-8 -Xmx1024m"
|
||||||
$ time schedtool -D -e ionice -c2 -n7 nice -n19 [dspace]/bin/dspace filter-media -f -v -i 10568/71249 -p "ImageMagick PDF Thumbnail" -v >& /tmp/filter-media-cmyk.txt
|
$ time schedtool -D -e ionice -c2 -n7 nice -n19 [dspace]/bin/dspace filter-media -f -v -i 10568/71249 -p "ImageMagick PDF Thumbnail" -v >& /tmp/filter-media-cmyk.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## 2017-04-22
|
||||||
|
|
||||||
|
- Someone on the dspace-tech mailing list responded with a suggestion about the foreign key violation in the `cleanup` task
|
||||||
|
- The solution is to remove the ID (ie set to NULL) from the `primary_bitstream_id` column in the `bundle` table
|
||||||
|
- After doing that and running the `cleanup` task again I find more bitstreams that are affected and end up with a long list of IDs that need to be fixed:
|
||||||
|
|
||||||
|
```
|
||||||
|
dspace=# update bundle set primary_bitstream_id=NULL where primary_bitstream_id in (435, 1136, 1132, 1220, 1236, 3002, 3255, 5322);
|
||||||
|
```
|
||||||
|
@ -30,7 +30,7 @@ $ [dspace]/bin/dspace filter-media -f -i 10568/16498 -p "ImageMagick PDF Th
|
|||||||
|
|
||||||
|
|
||||||
<meta property="article:published_time" content="2017-04-02T17:08:52+02:00"/>
|
<meta property="article:published_time" content="2017-04-02T17:08:52+02:00"/>
|
||||||
<meta property="article:modified_time" content="2017-04-20T18:11:11+03:00"/>
|
<meta property="article:modified_time" content="2017-04-20T18:40:42+03:00"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -79,9 +79,9 @@ $ [dspace]/bin/dspace filter-media -f -i 10568/16498 -p "ImageMagick PDF Th
|
|||||||
"@type": "BlogPosting",
|
"@type": "BlogPosting",
|
||||||
"headline": "April, 2017",
|
"headline": "April, 2017",
|
||||||
"url": "https://alanorth.github.io/cgspace-notes/2017-04/",
|
"url": "https://alanorth.github.io/cgspace-notes/2017-04/",
|
||||||
"wordCount": "2182",
|
"wordCount": "2267",
|
||||||
"datePublished": "2017-04-02T17:08:52+02:00",
|
"datePublished": "2017-04-02T17:08:52+02:00",
|
||||||
"dateModified": "2017-04-20T18:11:11+03:00",
|
"dateModified": "2017-04-20T18:40:42+03:00",
|
||||||
"author": {
|
"author": {
|
||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
@ -532,6 +532,17 @@ $ wc -l /tmp/ciat
|
|||||||
$ time schedtool -D -e ionice -c2 -n7 nice -n19 [dspace]/bin/dspace filter-media -f -v -i 10568/71249 -p "ImageMagick PDF Thumbnail" -v >& /tmp/filter-media-cmyk.txt
|
$ time schedtool -D -e ionice -c2 -n7 nice -n19 [dspace]/bin/dspace filter-media -f -v -i 10568/71249 -p "ImageMagick PDF Thumbnail" -v >& /tmp/filter-media-cmyk.txt
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
|
<h2 id="2017-04-22">2017-04-22</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Someone on the dspace-tech mailing list responded with a suggestion about the foreign key violation in the <code>cleanup</code> task</li>
|
||||||
|
<li>The solution is to remove the ID (ie set to NULL) from the <code>primary_bitstream_id</code> column in the <code>bundle</code> table</li>
|
||||||
|
<li>After doing that and running the <code>cleanup</code> task again I find more bitstreams that are affected and end up with a long list of IDs that need to be fixed:</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>dspace=# update bundle set primary_bitstream_id=NULL where primary_bitstream_id in (435, 1136, 1132, 1220, 1236, 3002, 3255, 5322);
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/2017-04/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/2017-04/</loc>
|
||||||
<lastmod>2017-04-20T18:11:11+03:00</lastmod>
|
<lastmod>2017-04-20T18:40:42+03:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
@ -93,7 +93,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||||
<lastmod>2017-04-20T18:11:11+03:00</lastmod>
|
<lastmod>2017-04-20T18:40:42+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@ -104,19 +104,19 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||||
<lastmod>2017-04-20T18:11:11+03:00</lastmod>
|
<lastmod>2017-04-20T18:40:42+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/post/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/post/</loc>
|
||||||
<lastmod>2017-04-20T18:11:11+03:00</lastmod>
|
<lastmod>2017-04-20T18:40:42+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>2017-04-20T18:11:11+03:00</lastmod>
|
<lastmod>2017-04-20T18:40:42+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user