Michael Peter Christen
3268a93019
added a 'minified' option to YaCy dumps
1 year ago
Michael Peter Christen
c20c4b8a21
modified export: added maximum number of docs per chunk
...
The export file can now be many files, called chunks.
By default still only one chunk is exported.
This function is required in case that the exported files shall be
imported to an elasticsearch/opensearch index. The bulk import function
of elasticsearch/opensearch is limited to 100MB. To make it possible to
import YaCy files, those must be splitted into chunks. Right now we
cannot estimate the chunk size as bytes, only as number of documents.
The user must do experiments to find out the optimum chunk max size,
like 50000 docs per chunk. Try this as first attempt.
1 year ago
Michael Peter Christen
24011dcbcc
more file name extensions for json list surrogate files
1 year ago
Michael Peter Christen
34a9fc1a07
bugfixes to zim reader:
1 year ago
Michael Peter Christen
7db0534d8a
Added a zim parser to the surrogate import option.
...
You can now import zim files into YaCy by simply moving them
to the DATA/SURROGATE/IN folder. They will be fetched and after
parsing moved to DATA/SURROGATE/OUT.
There are exceptions where the parser is not able to identify the
original URL of the documents in the zim file. In that case the file
is simply ignored.
This commit also carries an important fix to the pdf parser and an
increase of the maximum parsing speed to 60000 PPM which should make it
possible to index up to 1000 files in one second.
1 year ago
Michael Peter Christen
70e29937ef
added a check in zim importer which tests if import URLs actually exist
1 year ago
Michael Peter Christen
fdc6311dc7
added parsing rules for wikibooks and wikinews in zim reader
1 year ago
Michael Peter Christen
53b01dbf2e
Merge branch 'master' of https://github.com/yacy/yacy_search_server.git
1 year ago
Michael Peter Christen
1c0df28bfb
added a zim importer that can be used for surrogate imports.
...
Can not be used yet because it requires some security additions
to verify that the given urls actually work.
1 year ago
okybaca
4add1f6bc7
replaced all the links to legacy legacy wiki to legacy wiki
1 year ago
Michael Peter Christen
4a54b24703
fix for "negative seek offset" error during extension of heap files.
...
This would have always happend when a heap file exceeds 2GB.
should fix https://github.com/yacy/yacy_search_server/issues/372
1 year ago
Michael Peter Christen
5ba5fb5d23
upgraded pdfbox to 3.0.0
1 year ago
Michael Peter Christen
4308aa5415
removed concept of empty passwords as "no passwords used",
...
because we now start YaCy with a default password (yacy).
This has impact of all function that check the current state of
password-protection that included the empty password situation,
including the warnings to set a password in case that none is set (which
cannot be the case any more).
1 year ago
Michael Peter Christen
2c60ff14bb
fixed default pw comparison
1 year ago
Michael Peter Christen
4da320bebf
added a warning message in ConfigBasic in case that the default password
...
was not changed.
1 year ago
Michael Peter Christen
7830268be1
fix 756c817b5a
...
must be applied to all code where a transaction token is generated.
1 year ago
Michael Peter Christen
756c817b5a
fix for https://github.com/yacy/yacy_search_server/issues/544
1 year ago
Michael Peter Christen
03bf259601
fix for https://github.com/yacy/yacy_search_server/issues/363
...
We still need to set the load in the process because a demand for higher
crawl speed may require to increase the maximum load limit. However,
following the criticism in the bug, we do never reduce the load limit
again.
1 year ago
mchristen
8fc51f66c6
fixed a test class which prevented compilation on latest jvm
1 year ago
Joel Strasser
53bafa1544
consistent formatting in string concatenation
1 year ago
Joel Strasser
22c4188001
additionally match release stub for YaCy version
1 year ago
Michael Peter Christen
ff8fe7b6a4
fix for ',' or '.' appearing within a word or number. This will not
...
tokenize the query into parts around that character to make it possible
to search for numbers or version numbers.
1 year ago
Michael Peter Christen
0689f4f0ae
Check if the character is a minus sign and is followed by a letter or a
...
digit. Treat it as part of the word/number.
1 year ago
Michael Peter Christen
5db97a8928
parser can now separate numbers from words also when they are not
...
separated by space, i.e. 4.7Ohm
1 year ago
Michael Peter Christen
e3797de7de
enhanced the word tokenizer to recognize numbers in a proper way
1 year ago
Michael Peter Christen
88cd17ea57
migrated solr from 8.9.0 to 8.11.2; activated also migration script. A YaCy index with solr 8.9.0 will automatically be migrated to 8.11.2. This is a preparation step to migrate to 9.0.0 soon.
1 year ago
Michael Peter Christen
0089f234f4
added npe protection
1 year ago
Michael Peter Christen
8285fe715a
tab to spaces for classes supporting the condenser.
...
This is a preparation step to make changes in condenser and parser more
visible; no functional changes so far.
1 year ago
Michael Peter Christen
195bd2e444
extended the maximum header size to 16k to prevent http error 431
1 year ago
Michael Peter Christen
92dad3ed49
removed 7Zip parser because the old library could not be replaced by a maven repository
1 year ago
Michael Peter Christen
5afcba162b
updated libraries
1 year ago
Michael Christen
a348146d8f
setting connect host to 0.0.0.0
1 year ago
Michael Peter Christen
1c0f50985c
fixed documentation and some details of handling of keywords
2 years ago
Michael Christen
3472bcb4d3
patched a 'java.lang.NoSuchMethodError: com.twelvemonkeys.imageio.util.IIOUtil.lookupProviderByName' problem which occurred only on ARM
2 years ago
Michael Christen
f7b6e98ed7
Merge pull request #562 from thkoch2001/fix-warnings
...
Fix warnings
2 years ago
Michael Peter Christen
a157d01bb5
increased network image size limit for linuxtage poster
2 years ago
Thomas Koch
6bca836f49
fix 3 javac warnings: redundant cast
...
see GitHub issue #561 for context
[javac] /home/thk/git/yacy_search_server/source/net/yacy/htroot/ConfigAccounts_p.java:85: warning: [cast] redundant cast to YaCyHttpServer
[javac] final YaCyHttpServer jhttpserver = (YaCyHttpServer)sb.getHttpServer();
[javac] ^
[javac] /home/thk/git/yacy_search_server/source/net/yacy/htroot/ConfigUser_p.java:156: warning: [cast] redundant cast to YaCyHttpServer
[javac] final YaCyHttpServer jhttpserver = (YaCyHttpServer) sb.getHttpServer();
[javac] ^
[javac] /home/thk/git/yacy_search_server/source/net/yacy/htroot/ConfigUser_p.java:167: warning: [cast] redundant cast to YaCyHttpServer
[javac] final YaCyHttpServer jhttpserver = (YaCyHttpServer) sb.getHttpServer();
2 years ago
Michael Christen
9012fe4519
extended error message
2 years ago
Michael Christen
74104ff2d3
fix to timeout
2 years ago
Michael Peter Christen
9fcd8f1bda
added canonical filter
...
attention: this is on by default!
(it should do the right thing)
2 years ago
Michael Peter Christen
5a52b01c09
front-end integration of tag valency
2 years ago
Michael Peter Christen
7f728bb4b4
crawl profile storage extension for tag valency
2 years ago
Michael Christen
4304e07e6f
crawl profile adoption to new tag valency attribute
2 years ago
Michael Peter Christen
5acd98f4da
introduction of tag-to-indexing relation TagValency
2 years ago
Michael Peter Christen
ab3ef87abf
fixed exec start command where a path contains spaces
2 years ago
Michael Peter Christen
17eec667fb
better release number representation
2 years ago
Michael Peter Christen
b1199e97f8
enabling new update location release.yacy.net
...
with new version numbers
2 years ago
Michael Peter Christen
66169d1aad
default build properties to remove barrier developing in IDE
...
environments
2 years ago
Michael Peter Christen
309adb814e
fixed import of jsonlist imort from searchlab.eu using a direct URL
2 years ago
Michael Peter Christen
5ddc794bb9
code cleanup in http clieant
2 years ago