Mitarbeit willkommen! Bitte schau unter Hilfe:Benutzerkonto oder informiere Dich über Populus.Wiki.

Populus:DezInV/Notes: Unterschied zwischen den Versionen

Aus Populus DE
Zur Navigation springenZur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 2: Zeile 2:


* [https://www.youtube.com/watch?v=0LTXCcVRQi0 Design a Basic Search Engine, System Design Interview Prep] (YT)
* [https://www.youtube.com/watch?v=0LTXCcVRQi0 Design a Basic Search Engine, System Design Interview Prep] (YT)
* [https://www.youtube.com/watch?v=BKZxZwUgL3Y System Design distributed web crawler to crawl Billions of web pages] (YT)
* [https://github.com/internetarchive/heritrix3/wiki/Internet%20Archive%20Crawler%20Requirements%20Analysis Internet Archive Crawler Requirements Analysis] 2018
* [https://github.com/nhthanh87/seck/wiki Search Engine Construction Kit Wiki]
* [https://www-nlp.stanford.edu/IR-book/ Introduction to Information Retrieval] book
* [https://webpages.charlotte.edu/sakella/courses/cloud09/papers/Mercator.pdf Mercator: A scalable, extensible Web crawler], paper 1999?
** [https://medium.com/@kslohith1729/mercator-a-masterclass-in-system-design-for-a-web-crawler-30e690a9103b Mercator, A masterclass in system design for a web crawler] 20.2.2024
** TODO search for mercator scheme


=== split between crawler/warc writer and processor ===
=== split between crawler/warc writer and processor ===
Zeile 57: Zeile 64:
* https://www.commoncrawl.org
* https://www.commoncrawl.org
** https://crates.io/crates/cc-downloader
** https://crates.io/crates/cc-downloader
* [https://github.com/crawler-commons/url-frontier/discussions/45 List of open source web crawlers - could they use URLFrontier?]


=== rust ===
=== rust ===
Zeile 77: Zeile 85:
* https://crates.io/crates/website_crawler
* https://crates.io/crates/website_crawler
* https://crates.io/crates/stream_crawler
* https://crates.io/crates/stream_crawler
* https://github.com/tokahuke/lopez - Crawling and scraping


=== url frontier ===
=== url frontier ===

Version vom 6. Dezember 2024, 17:37 Uhr

architecture

split between crawler/warc writer and processor

Having two separate processes for crawling and processing has advantages:

  • The crawler is simple: Work a queue of URLs and write a warc file
  • Processing can be redone as often as needed without network access

There should not be much overhead:

  • The (compressed) data should still be in the Kernels page cache if processing starts immediately after the warc file has been written.
  • Decompression is fast and the decompressed data can be piped directly into a HTML parser to minimize memory consumption.

relevant theory:

archive

compression

seekable (random access) compression

Spinning hard drives have sequential read speeds above 100 MB/s. Thus a record in e.g. a 64MB compressed warc file can be retrieved on average in less than 0.3s, even when the archive needs to be seeked from the start.

(64 MB once was the recommended size for Hadoop files.)

Still, these were the links I found:

crawling

rust

url frontier

url normalization

index

scraping

search

Search Engines

Terrier

  • Terrier.org (Java) by the Information Retrieval Group within the School of Computing Science at the University of Glasgow

news archiving

feeds

from org-mode/thk

dezentrale Suchmaschine

Internet Archive

Crawling, Crawler

  1. ArchiveBox

    Python, aktiv

    Open source self-hosted web archiving. Takes URLs/browser history/bookmarks/Pocket/Pinboard/etc., saves HTML, JS, PDFs, media, and more…

  2. grab-site

    Python, aktiv https://github.com/ArchiveTeam/grab-site

  3. WASP

  4. StormCrawler

  5. HTTrack

  6. Grub.org

    dezentraler Crawler des Wikia Projektes In C#, Pyton

  7. HCE – Hierarchical Cluster Engine

  8. Heritrix

  9. Haskell

Search

  1. openwebsearch.eu

  2. lemurproject.org

    1. lucindri

      https://lemurproject.org/lucindri.php

      Lucindri is an open-source implementation of Indri search logic and structured query language using the Lucene Search Engine. Lucindri consists of two components: the indexer and the searcher.

    2. Galago

      toolkit for experimenting with text search

Wikia

Recherche 2023-11-26

Scraping

sonstiges

verteilte Systeme

- https://crates.io/crates/amadeus stream processing on top of https://github.com/constellation-rs/constellation