summaryrefslogtreecommitdiff
path: root/defaults/yacy.logging
AgeCommit message (Collapse)Author
2026-06-28added log report generator for recursive self-improvementMichael Peter Christen
2024-12-24modified kelondro so it uses KELONDRO prefix when loggingokybaca
2024-11-25renamed INDEX-TRANSFER-DISPATCHER to DHT-OUT in the logokybaca
2023-12-03Merge pull request #615 from okybaca/logging2Michael Christen
Logging unclutter
2023-11-26changed network operation log category from YACY to NETWORKokybaca
2023-11-25added some logging prefixes to yacy.loggingokybaca
2022-10-05increases log history length to 10000Michael Peter Christen
implements https://github.com/yacy/yacy_search_server/issues/512
2017-06-14Prevent log pollution from unwanted Solr warnings.luccioman
Many non-blocking "java.nio.file.NoSuchFileException" traces with warning log level can be logged by Solr, especially when heavily crawling. This is issue is known from Solr 5.x but still unresolved with Solr 6.x ( https://issues.apache.org/jira/browse/SOLR-9120 ) Consequently upgraded to "SEVERE" the default log level of the related internal Solr class. See also mantis 727 ( http://mantis.tokeek.de/view.php?id=727 )
2014-09-02removed solr warning during startupMichael Peter Christen
2014-06-01fix logging settingsreger
- add missing .level - remove obsolete jena settings - set default level=INFO to prevent debug logging of not explicite specified classes
2014-05-21migration to Solr 4.8.1Michael Peter Christen
This includes also an update to zookeeper 3.4.6 and a new library that Solr initializes by default: org.restlet from http://restlet.com/download/current#release=stable&edition=jse&distribution=zip which is included in version 2.2.1 from may 6th 2014
2014-04-16- added a new Crawler Balancer: HostBalancer and HostQueues:Michael Peter Christen
This organizes all urls to be loaded in separate queues for each host. Each host separates the crawl depth into it's own queue. The primary rule for urls taken from any queue is, that the crawl depth is minimal. This produces a crawl depth which is identical to the clickdepth. Furthermorem the crawl is able to create a much better balancing over all hosts which is fair to all hosts that are in the queue. This process will create a very large number of files for wide crawls in the QUEUES folder: for each host a directory, for each crawl depth a file inside the directory. A crawl with maxdepth = 4 will be able to create 10.000s of files. To be able to use that many file readers, it was necessary to implement a new index data structure which opens the file only if an access is wanted (OnDemandOpenFileIndex). The usage of such on-demand file reader shall prevent that the number of file pointers is over the system limit, which is usually about 10.000 open files. Some parts of YaCy had to be adopted to handle the crawl depth number correctly. The logging and the IndexCreateQueues servlet had to be adopted to show the crawl queues differently, because the host name is attached to the port on the host to differentiate between http, https, and ftp services.
2013-11-17Merge origin/master into jettyreger
2013-11-15fixed logging for remote solr configurationMichael Peter Christen
2013-10-27Merge origin/master into jettyreger
2013-10-24- removed a lot of garbage and bloated code from GuiHandler.orbiter
- transformed log lines to String before they are stored because the storage space is about 1:250 (45kb for one line before transformation, 180 bytes afterwards) - this saves up to 10MB RAM so we can increase the number of lines to 1000 again.
2013-10-24reduced logging line memory, 10000 lines had filled up 450MB! grrr.Michael Peter Christen
(thank you, a bomb from the past)
2013-10-13- add size check to multipart form data handling of YaCyDefaultServlet (same ↵reger
as in HTTPDemon.parseMultipart) - reduce Jetty logging - give build.run a bit more memory (set to YaCy.default 600m from 512m)
2013-09-23- reduce Jetty debug loggingreger
- fix Context path initialization
2013-07-17Added some cora package loggersRoland Haeder
2013-07-13Fixed CHMOD on many files + added missing loggers (e.g. jena) and made some ↵Roland Haeder
noisy loggers quiet
2013-05-10reduce SolrConnectorLogging setting (from default ALL to INFO)reger
2013-02-25- generalized SchemaConfiguration into super-class Configuration andMichael Peter Christen
adopted other classes which used the configuration-only access for that class - removed many warnings - adjusted logging
2013-02-23- Removed log4j from libraries. This can be removed because the packageMichael Peter Christen
log4j-over-slf4j is there. From slf4j all loggings are routed to the jdk logger. Now all loggings are consistently done to the jdk logger. - added some lines to the logging properties to suppress many solr logging statements. The number of the logging entries had already become a performance issue, therefore removing these from the log should increase performance.
2012-12-29fix: Broken Link on Crawler_p.html - issue 218 reger
http://bugs.yacy.net/view.php?id=218 - reduced Solr logging (/select)
2012-10-25- show more lines in online logMichael Peter Christen
- reverse order is default now
2012-09-28some more after-refactoring fixesMichael Peter Christen
2012-08-31- added new solr fields:Michael Peter Christen
title_count_i, title_chars_val, title_words_val description_count_i, description_chars_val, description_words_val - added many asserts to ensure data type correctness from YaCy to Solr and vice versa - made many fixes according to new findings from these asserts (!)
2012-08-27switched off some solr loggingMichael Peter Christen
2012-05-17moved yacy.logging to defaults according to request inMichael Peter Christen
http://bugs.yacy.net/view.php?id=55