trino-storage
Storage connector for Trino
File Explorer
Download Latest Version (.zip)- main.yml
- release.yml
- dependabot.yml
- problem-matcher.json
- violations.xml
- maven-wrapper.properties
- jvm.config
- docker-compose.yml
- AvroColumnDecoder.java
- AvroPlugin.java
- AvroSchemaConverter.java
- CsvPlugin.java
- ExcelPlugin.java
- FilePlugin.java
- JsonPlugin.java
- OrcPageSource.java
- OrcPlugin.java
- OrcTypeTranslator.java
- ParquetPageSource.java
- ParquetPlugin.java
- ParquetTypeTranslator.java
- PluginFactory.java
- RawPlugin.java
- TextPlugin.java
- ListTableFunction.java
- ReadFileTableFunction.java
- ByteResponseHandler.java
- FileType.java
- ForStorage.java
- ListPageSource.java
- StorageClient.java
- StorageColumnHandle.java
- StorageConfig.java
- StorageConnector.java
- StorageConnectorFactory.java
- StorageMetadata.java
- StorageModule.java
- StoragePageSourceProvider.java
- StoragePlugin.java
- StorageRecordSetProvider.java
- StorageSplit.java
- StorageSplitManager.java
- StorageTable.java
- StorageTableHandle.java
- StorageTransactionHandle.java
- StorageQueryRunner.java
- TestingHadoopServer.java
- TestingMinioServer.java
- TestingStorageServer.java
- TestRestrictedStorageConnector.java
- TestStorageConnector.java
- TestStoragePlugin.java
- apache-lz4.orc
- array-of-objects.json
- avro-data.avro
- example-metadata.json
- lineitem-1.csv
- lineitem-2.csv
- newlines.json
- numbers-1.csv
- numbers-2.csv
- numbers-2.ssv
- numbers.tsv
- orders-1.csv
- orders-2.csv
- parquet_data.parquet
- quoted_fields_with_newlines.csv
- quoted_fields_with_newlines.ssv
- quoted_fields_with_newlines.tsv
- quoted_fields_with_separator.csv
- quoted_fields_with_separator.ssv
- quoted_fields_with_separator.tsv
- sample.xlsx
- hive-core-site.xml
- .gitignore
- LICENSE
- mvnw
- pom.xml
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/ebyhr/trino-storage
Downloads the entire project code from GitHub to your computer.
cd trino-storage
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f docker/docker-compose.yml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Maven (Java)
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java projects.
- Maven The build tool used for the mvn command.
mvn clean install
Installs dependencies and builds the project using Maven.
A BUILD SUCCESS message means it worked. The output is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
