mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 06:35:03 +01:00
Add notes for 2020-03-08
This commit is contained in:
parent
9d123bfa36
commit
c95d907461
@ -37,4 +37,32 @@ $ ./fix-metadata-values.py -i 2020-03-04-fix-1-ilri-subject.csv -db dspace -u ds
|
||||
- But I have not run it on CGSpace yet because we want to ask Peter if he is sure about it...
|
||||
- Send a message to Macaroni Bros to ask them about their Drupal module and its readiness for DSpace 6 UUIDs
|
||||
|
||||
## 2020-03-05
|
||||
|
||||
- I found a very [interesting comment on the Solr 8.1 guide](https://lucene.apache.org/solr/guide/8_1/solr-system-requirements.html#lucene-solr-prior-to-7-0) about Java compatibility:
|
||||
|
||||
> Lucene/Solr 7.0 was the first version that successfully passed our tests using Java 9 and higher. You should avoid Java 9 or later for Lucene/Solr 6.x or earlier.
|
||||
|
||||
## 2020-03-08
|
||||
|
||||
- I want to try to consolidate our yearly Solr statistics cores back into one `statistics` core using the solr-import-export-json tool
|
||||
- I will try it on DSpace test, doing one year at a time:
|
||||
|
||||
```
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics-2010 -a export -o /tmp/statistics-2010.json -k uid
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics -a import -o /tmp/statistics-2010.json -k uid
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2010/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>time:2010*</query></delete>"
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics-2011 -a export -o /tmp/statistics-2011.json -k uid
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics -a import -o /tmp/statistics-2011.json -k uid
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2011/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>time:2011*</query></delete>"
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics -a import -o /tmp/statistics-2012.json -k uid
|
||||
$ curl -s 'http://localhost:8081/solr/statistics/select?q=time:2012*&rows=0&wt=json&indent=true' | grep numFound
|
||||
"response":{"numFound":3761989,"start":0,"docs":[]
|
||||
$ curl -s 'http://localhost:8081/solr/statistics-2012/select?q=time:2012*&rows=0&wt=json&indent=true' | grep numFound
|
||||
"response":{"numFound":3761989,"start":0,"docs":[]
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2012/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>time:2012*</query></delete>"
|
||||
```
|
||||
|
||||
- I will do this for as many cores as I can (disk space limited) and then monitor the effect on the system and JVM memory usage
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
@ -20,7 +20,7 @@ The code finally builds and runs with a fresh install
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2020-02/" />
|
||||
<meta property="article:published_time" content="2020-02-02T11:56:30+02:00" />
|
||||
<meta property="article:modified_time" content="2020-03-03T18:56:09+02:00" />
|
||||
<meta property="article:modified_time" content="2020-03-04T18:02:54+02:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="February, 2020"/>
|
||||
@ -47,7 +47,7 @@ The code finally builds and runs with a fresh install
|
||||
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2020-02\/",
|
||||
"wordCount": "7238",
|
||||
"datePublished": "2020-02-02T11:56:30+02:00",
|
||||
"dateModified": "2020-03-03T18:56:09+02:00",
|
||||
"dateModified": "2020-03-04T18:02:54+02:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
|
@ -22,7 +22,7 @@ You need to download this into the DSpace 6.x source and compile it
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2020-03/" />
|
||||
<meta property="article:published_time" content="2020-03-02T12:31:30+02:00" />
|
||||
<meta property="article:modified_time" content="2020-03-02T12:38:10+02:00" />
|
||||
<meta property="article:modified_time" content="2020-03-04T18:02:54+02:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="March, 2020"/>
|
||||
@ -49,9 +49,9 @@ You need to download this into the DSpace 6.x source and compile it
|
||||
"@type": "BlogPosting",
|
||||
"headline": "March, 2020",
|
||||
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2020-03\/",
|
||||
"wordCount": "162",
|
||||
"wordCount": "358",
|
||||
"datePublished": "2020-03-02T12:31:30+02:00",
|
||||
"dateModified": "2020-03-02T12:38:10+02:00",
|
||||
"dateModified": "2020-03-04T18:02:54+02:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -162,6 +162,33 @@ $ ~/dspace63/bin/dspace solr-upgrade-statistics-6x
|
||||
<li>But I have not run it on CGSpace yet because we want to ask Peter if he is sure about it…</li>
|
||||
<li>Send a message to Macaroni Bros to ask them about their Drupal module and its readiness for DSpace 6 UUIDs</li>
|
||||
</ul>
|
||||
<h2 id="2020-03-05">2020-03-05</h2>
|
||||
<ul>
|
||||
<li>I found a very <a href="https://lucene.apache.org/solr/guide/8_1/solr-system-requirements.html#lucene-solr-prior-to-7-0">interesting comment on the Solr 8.1 guide</a> about Java compatibility:</li>
|
||||
</ul>
|
||||
<blockquote>
|
||||
<p>Lucene/Solr 7.0 was the first version that successfully passed our tests using Java 9 and higher. You should avoid Java 9 or later for Lucene/Solr 6.x or earlier.</p>
|
||||
</blockquote>
|
||||
<h2 id="2020-03-08">2020-03-08</h2>
|
||||
<ul>
|
||||
<li>I want to try to consolidate our yearly Solr statistics cores back into one <code>statistics</code> core using the solr-import-export-json tool</li>
|
||||
<li>I will try it on DSpace test, doing one year at a time:</li>
|
||||
</ul>
|
||||
<pre><code>$ ./run.sh -s http://localhost:8081/solr/statistics-2010 -a export -o /tmp/statistics-2010.json -k uid
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics -a import -o /tmp/statistics-2010.json -k uid
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2010/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>time:2010*</query></delete>"
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics-2011 -a export -o /tmp/statistics-2011.json -k uid
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics -a import -o /tmp/statistics-2011.json -k uid
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2011/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>time:2011*</query></delete>"
|
||||
$ ./run.sh -s http://localhost:8081/solr/statistics -a import -o /tmp/statistics-2012.json -k uid
|
||||
$ curl -s 'http://localhost:8081/solr/statistics/select?q=time:2012*&rows=0&wt=json&indent=true' | grep numFound
|
||||
"response":{"numFound":3761989,"start":0,"docs":[]
|
||||
$ curl -s 'http://localhost:8081/solr/statistics-2012/select?q=time:2012*&rows=0&wt=json&indent=true' | grep numFound
|
||||
"response":{"numFound":3761989,"start":0,"docs":[]
|
||||
$ curl -s "http://localhost:8081/solr/statistics-2012/update?softCommit=true" -H "Content-Type: text/xml" --data-binary "<delete><query>time:2012*</query></delete>"
|
||||
</code></pre><ul>
|
||||
<li>I will do this for as many cores as I can (disk space limited) and then monitor the effect on the system and JVM memory usage</li>
|
||||
</ul>
|
||||
<!-- raw HTML omitted -->
|
||||
|
||||
|
||||
|
@ -4,32 +4,32 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/categories/</loc>
|
||||
<lastmod>2020-03-03T18:56:09+02:00</lastmod>
|
||||
<lastmod>2020-03-04T18:02:54+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||
<lastmod>2020-03-03T18:56:09+02:00</lastmod>
|
||||
<lastmod>2020-03-04T18:02:54+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2020-03/</loc>
|
||||
<lastmod>2020-03-02T12:38:10+02:00</lastmod>
|
||||
<lastmod>2020-03-04T18:02:54+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
||||
<lastmod>2020-03-03T18:56:09+02:00</lastmod>
|
||||
<lastmod>2020-03-04T18:02:54+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||
<lastmod>2020-03-03T18:56:09+02:00</lastmod>
|
||||
<lastmod>2020-03-04T18:02:54+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2020-02/</loc>
|
||||
<lastmod>2020-03-03T18:56:09+02:00</lastmod>
|
||||
<lastmod>2020-03-04T18:02:54+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
|
Loading…
Reference in New Issue
Block a user