Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (21 loc) · 2.01 KB

CONFIG.md

File metadata and controls

36 lines (21 loc) · 2.01 KB

Configuration options

Port number

In server mode, port 8080 is used by default. If you'd like to change the port number (e.g., port 80), you can use the command line parameter -port 80:

java -jar target/gtfs-realtime-validator-webapp-1.0.0-SNAPSHOT.jar -port 80

Database

We use Hibernate to manage data persistence to a database. To allow you to get the tool up and running quickly, we use the embedded HSQLDB by default. This is not recommended for a production deployment.

Hibernate configuration can be changed in src/main/resources/hibernate.cfg.xml to store data in any relational database. You might want to check out the following resources for getting started:

A list of all the dialect properties for specific database versions is shown here.

Logging

If you'd like to change the logging level, for example to see all debug statements, in src/main/resources/simplelogger.properties change the following line to say DEBUG:

org.slf4j.simpleLogger.defaultLogLevel=DEBUG

DEBUG level will show the output for all rule validation in the log.

WARN will show a smaller number of informational messages.

Batch processing

We support a command-line batch processing mode for archived GTFS-realtime files. See the gtfs-realtime-validator-lib README page for details, including command-line configuration options for the batch processing mode.