The Controller app of the PDF Aggregation Service.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Lampros Smyrnaios bdc61c2cda When at least one worker is still active and have to wait for service-shutdown, show a log-message to inform the user, including that worker's IP. 3 months ago
gradle/wrapper - Allow to easily change the por used by workers. 4 months ago
prometheus - Improve the "shutdownController.sh" script. 9 months ago
src/main When at least one worker is still active and have to wait for service-shutdown, show a log-message to inform the user, including that worker's IP. 3 months ago
.gitignore springified project 2 years ago
Dockerfile Set Xms and Xmx Java-parameters when running the Jar, in Docker. 8 months ago
LICENSE Add LICENSE. 8 months ago
README.md - Optimize the "insertAssignmentsQuery". 10 months ago
build.gradle - Avoid continuing to request workerReport-batches when from the 1st batch, the base-directory of that assignments-counter is not found. 3 months ago
docker-compose.yml - Add handling for the "EmptyResultDataAccessException" in "UrlsServiceImpl.getAssignments()", which is thrown when no assignments are returned from the query. 10 months ago
gradle.properties - Improve some log-messages. 1 year ago
installAndRun.sh - Allow to easily change the por used by workers. 4 months ago
settings.gradle - Add the "isControllerAlive"-endpoint. 3 years ago
shutdownService.sh - Refactor the "shutdown" script to do an orderly-shutdown, by default, by calling the "shutdownService" endpoint. In case a "force-shutdown" is needed, that can be requested with a cmd-argument. 6 months ago

README.md

UrlsController

The Controller's Application receives requests coming from the Workers (deployed on the cloud), constructs an assignments-list with data received from a database and returns the list to the workers.
Then, it receives the "WorkerReports", it requests the full-texts from the workers, in batches, and uploads them on the S3-Object-Store. Finally, it writes the related reports, along with the updated file-locations into the database.

It can also process Bulk-Import requests, from compatible data sources, in which case it receives the full-text files immediately, without offloading crawling jobs to Workers.

For interacting with the database we use Impala.

BulkImport API:

  • "bulkImportFullTexts" endpoint: http://<IP>:<PORT>/api/bulkImportFullTexts?provenance=<provenance>&bulkImportDir=<bulkImportDir>&shouldDeleteFilesOnFinish={true|false}
    This endpoint loads the right configuration with the help of the "provenance" parameter, delegates the processing to a background thread and immediately returns a message with useful information, including the "reportFileID", which can be used at any moment to request a report about the progress of the bulk-import procedure.
    The processing job starts running after 30-60 minutes and processes the full-texts files inside the given directory, in the following way: it generates the OpenAIRE-IDs, uploads the files to the S3 Object Store, generates and stores the "payload" records in the database. If it is requested by the user, it removes the successfully imported full-texts from the directory.
  • "getBulkImportReport" endpoint: http://<IP>:<PORT>/api/getBulkImportReport?id=<reportFileID>
    This endpoint returns the bulkImport report, which corresponds to the given reportFileID, in JSON format.

Statistics API:

  • "getNumberOfAllPayloads" endpoint: http://<IP>:<PORT>/api/stats/getNumberOfAllPayloads
    This endpoint returns the total number of payloads existing in the database, independently of the way they were aggregated. This includes the payloads created by other pieces of software, before the PDF-Aggregation-Service was created.
  • "getNumberOfPayloadsAggregatedByServiceThroughCrawling" endpoint: http://<IP>:<PORT>/api/stats/getNumberOfPayloadsAggregatedByServiceThroughCrawling
    This endpoint returns the number of payloads aggregated by the PDF-Aggregated-Service itself, through crawling.
  • "getNumberOfPayloadsAggregatedByServiceThroughBulkImport" endpoint: http://<IP>:<PORT>/api/stats/getNumberOfPayloadsAggregatedByServiceThroughBulkImport
    This endpoint returns the number of payloads aggregated by the PDF-Aggregated-Service itself, through bulk-import procedures, from compatible datasources.
  • "getNumberOfPayloadsAggregatedByService" endpoint: http://<IP>:<PORT>/api/stats/getNumberOfPayloadsAggregatedByService
    This endpoint returns the number of payloads aggregated by the PDF-Aggregated-Service itself, both through crawling and bulk-import procedures.
  • "getNumberOfLegacyPayloads" endpoint: http://<IP>:<PORT>/api/stats/getNumberOfLegacyPayloads
    This endpoint returns the number of payloads which were aggregated by methods other than the PDF Aggregation Service.
  • "getNumberOfPayloadsForDatasource" endpoint: http://<IP>:<PORT>/api/stats/getNumberOfPayloadsForDatasource?datasourceId=<givenDatasourceId>
    This endpoint returns the number of payloads which belong to the datasource specified by the given datasourceID.
  • "getNumberOfRecordsInspectedByServiceThroughCrawling" endpoint: http://<IP>:<PORT>/api/stats/getNumberOfRecordsInspectedByServiceThroughCrawling
    This endpoint returns the number of records inspected by the PDF-Aggregation-Service through crawling.

Shutdown Service API:

  • "shutdownService" endpoint: http://localhost:<PORT>/api/shutdownService
    This endpoint sends "shutdownWorker" requests to all the Workers which are actively participating in the Service. The Workers will shut down after finishing their work-in-progress and all full-texts have been either transferred to the Controller or deleted, in case an error has appeared.
    Once the Workers are about to shut down, they send a "shutdownReport" to the Controller. A scheduling task runs in the Controller, every 2 hours, and if the user has specified that the Controller must shut down and all the Workers participating in the Service have shutdown, then it gently shuts down the Controller.
  • "cancelShutdownService" endpoint: http://localhost:<PORT>/api/cancelShutdownService
    This endpoint specifies that the Controller will not shut down, and sends "cancelShutdownWorker" requests to all the Workers which are actively participating in the Service (have not shut down yet), so that they can continue to request assignments.

Note: The Shutdown Service API is accessible by the Controller's host machine.

Prometheus Metrics:

  • "numOfAllPayloads"
  • "numOfPayloadsAggregatedByServiceThroughCrawling"
  • "numOfPayloadsAggregatedByServiceThroughBulkImport"
  • "numOfPayloadsAggregatedByService"
  • "numOfLegacyPayloads"
  • "numOfRecordsInspectedByServiceThroughCrawling"
  • "getAssignments_time_seconds_max": Time taken to return the assignments.
  • "addWorkerReport_time_seconds": Time taken to add the WorkerReport.

To install and run the application:

  • Run git clone and then cd UrlsController.
  • Set the preferable values inside the application.yml file.
  • Execute the installAndRun.sh script which builds and runs the app.
    If you want to just run the app, then run the script with the argument "1": ./installAndRun.sh 1.
    If you want to build and run the app on a Docker Container, then run the script with the argument "0" followed by the argument "1": ./installAndRun.sh 0 1.
    Additionally, if you want to test/visualize the exposed metrics on Prometheus and Grafana, you can deploy their instances on docker containers, by enabling the "runPrometheusAndGrafanaContainers" switch, inside the "./installAndRun.sh" script.

Implementation notes:

  • For transferring the full-text files, we use Facebook's Zstandard compression algorithm, which brings very big benefits in compression rate and speed.
  • The uploaded full-text files follow this naming-scheme: "datasourceID/recordID::fileHash.pdf"