Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jumpmind/metl
Metl is a simple, web-based integration platform that allows for several different styles of data integration including messaging, file based Extract/Transform/Load (ETL), and remote procedure invocation via Web Services. Read more at www.jumpmind.com/products/metl/overview
https://github.com/jumpmind/metl
etl integration java messaging vaadin web
Last synced: about 3 hours ago
JSON representation
Metl is a simple, web-based integration platform that allows for several different styles of data integration including messaging, file based Extract/Transform/Load (ETL), and remote procedure invocation via Web Services. Read more at www.jumpmind.com/products/metl/overview
- Host: GitHub
- URL: https://github.com/jumpmind/metl
- Owner: JumpMind
- License: gpl-3.0
- Created: 2014-07-01T13:27:14.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-11-11T19:42:53.000Z (7 days ago)
- Last Synced: 2024-11-11T20:30:17.917Z (7 days ago)
- Topics: etl, integration, java, messaging, vaadin, web
- Language: Java
- Homepage:
- Size: 40.5 MB
- Stars: 208
- Watchers: 46
- Forks: 82
- Open Issues: 213
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
This is the development site for Metl. To run the latest and greatest use the following instructions. The latest release can be downloaded here:
Please use the forum for general discussion and questions. It is location here: https://sourceforge.net/p/metl/discussion/general/
Metl is a simple, web-based integration platform that allows for several different styles of data integration including messaging, file based Extract/Transform/Load (ETL), and remote procedure invocation via Web Services.
Metl was built to solve fairly simple day to day integration tasks without the need for custom coding, heavy infrastructure or high costs. It can be deployed in the cloud or in an internal data center, and was built to allow developers to extend it to fit their needs by writing their own components that can be included and leveraged by the existing Metl infrastructure.
## Build Me, Run Me
This project requires the Java JDK to build and run. The build currently generates a war file
which can be deployed to an application server like [Apache Tomcat](http://tomcat.apache.org). The war file can also be run as a standalone application, in which case it uses an embedded [Jetty](http://www.eclipse.org/jetty) web server.### Build
~~~~~
cd metl-assemble
./gradlew assemble
~~~~~### Run
~~~~~
cd ../metl-war/build/libs
java -jar metl.war
~~~~~### Deploy
To Tomcat:
~~~~~
cp ../metl-war/build/libs/metl.war /opt/apache-tomcat-8.0.14/webapps/.
/opt/apache-tomcat-8.0.14/bin/catalina restart
~~~~~Or install as a standalone service on Linux or Windows:
~~~~~
java -jar metl.war install
~~~~~### Develop
To develop in [Eclipse](http://eclipse.org) run the following and import the generated projects:
~~~~~
cd metl-assemble
./gradlew develop
~~~~~To run in Eclipse, use the "Show Your Metl" launch shortcut.