Sentry is a parallelized web crawler written in Go that writes urls, links, & response headers to a Postgres database, then stores the response itself on amazon S3. It keeps a list of “sources”, which use simple string comparison to keep it from wandering outside of designated domains or url paths.
The big difference from other crawlers is a tunable “stale duration”, which will tell the crawler to capture an updated snapshot of the page if the time since the last GET request is older than the stale duration. This gives it a continual “watching” property.
Sentry holds a separate stream of scraping for any url that looks like a
dataset. So when it encounters urls that look like https://foo.com/file.csv
,
it assumes that file ending may be a static asset, and places that url on a
separate thread for archiving.
Copyright (C) 2017 Data Together
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3.0.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
We would love involvement from more people! If you notice any errors or would like to submit changes, please see our Contributing Guidelines.
We use GitHub issues for tracking bugs and feature requests and Pull Requests (PRs) for submitting changes
Though it has mostly been used with the Data Together webapp, sentry is a stand-alone web crawler and can be used on its own. It currently requires a somewhat elaborate infrastructure and, for instance, it can not simply be fed a job over the command line.
At present, sentry reads crawling instructions directly from a Postgres
database (see the schema file for details of the
database structure), and places crawled resources in an S3 bucket. For
every domain to be crawled, create a record in the sources
table with
crawl
set to true. Sentry will crawl that domain repeatedly. Resources
will be hashed and stored on S3, where they can be retrieved by
content or any other service
capable of reverse-engineering the identifying hash. Other storage backends
are planned (see roadmap, below), and if you are interested in
helping to develop them please contact us!
To get started developing using Docker and Docker Compose, run:
$ git clone [email protected]:datatogether/webapp.git
$ cd webapp
$ docker-compose up
- Install Go language
- Download and build repository
export GOPATH=$(go env GOPATH) mkdir -pv $GOPATH cd $GOPATH go get github.com/datatogether/sentry cd github.com/datatogether/sentry go install
- Configure Postgres server and then set connection URL
export POSTGRES_DB_URL=postgres://[USERNAME_HERE]:[PASSWORD_HERE]@localhost:[PORT]/[DB_NAME]
- Run sentry
$GOPATH/bin/sentry
- Configure S3 buckets [TODO]
- on production
- on development (how do you work with them in development env?)
Two major changes to sentry will make it much more generally usable:
- we plan to shift the storage backend from S3 to IPFS. Once this is accomplished, any local or remote IPFS node can be used as a storage node.
- we are considering additional mechanisms for adidng crawls to sentry's queue. This should make sentry distinctly more flexible.
In parallel to building this tool, we have engaged in efforts to map the landscape of similar projects: