... |
Embedded provides a the {{Admin}} interface via the {{EmbeddedServer.getAdmin}} method. Not all methods are implemented for embedded - for example those that deal with data sources. Also the deploy method may only deploy VDB xml artifacts. |
h1. Logging Teiid LogManager have a default logListener, which is a wrapper of java util logger, so java logging configuration can take effect. Two ways can be used to configure java logging, one is use the system properties point to a configuration file like _\-Djava.util.logging.config.file="logging.properties"_, a sample configuration file can be found under 'JAVA_HOME/jre/lib/', the other way is configure programmability, [EmbeddedHelper.enableLogger() |https://github.com/teiid/teiid-embedded-examples/blob/master/common/src/main/java/org/teiid/example/EmbeddedHelper.java]is a example. Another recommend way to configure logging in Teiid Embedded is use JBoss Logger Manager Framework, this framework compatible with most of popular logger framework, like java logger, log4j, jboss logger, etc. To use JBoss Logger Manager first we need add '_jboss-logmanager-VERSION.Final.jar_' to classpath, If you are useing Maven based project, add jboss-logmanager dependency, below is a example: <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> </dependency> Then there also are 2 ways to configure, the first is use configuration file([teiid-logging.properties|https://github.com/teiid/teiid-embedded-examples/blob/master/common/src/main/resources/teiid-logging.properties] is a example), 3 system properties are necessary: _\-Djava.util.logging.manager=_{_}org.jboss.logmanager.LogManager, \-D{_}{_}logging.configuration=teiid-logging.properties_, _\-D{_}{_}org.jboss.logmanager.configurationLocator=_{_}configurationLocator_, [EmbeddedHelper.configureLogManager() |https://github.com/teiid/teiid-embedded-examples/blob/master/common/src/main/java/org/teiid/example/EmbeddedHelper.java]is a example. The second way is configured programmability, [EmbeddedHelper.configureLogManager()|https://github.com/teiid/teiid-embedded-examples/blob/master/common/src/main/java/org/teiid/example/EmbeddedHelper.java]also has a example. |
h1. Other Differences Between Teiid Embedded and an AS Deployment |
... |
Embedded is a light-weight version of Teiid for use in any Java 6+ JRE. JBoss AS nor any application server is not required. This feature/kit are still evolving. Please consult the source examples and even unit tests utilizing the EmbeddedServer for a more complete guide as to its use.
The primary way to configure Teiid Embedded is with the EmbeddedConfiguration class. It is provided to the EmbeddedServer at start-up and dictates much of the behavior of the embedded instance. From there the running server instance may have translators and VDBs deployed as needed. Additional modifications to the EmbeddedConfiguration after the server is started will not have an effect.
In many cases an EmbeddedConfiguration instance can just be instantiated and passed to the EmbeddedServer without the need to set additional properties. Many properties, including those used to configure the BufferManager, will be given a similar name to their server side counter part - for example setProcessorBatchSize.
Your application is responsible for having the appropriate classpath to utilize Teiid embedded. Typically you will want to include all of the jars from the embedded kit's lib directory. As needed by your deployment you should include jars from the optional folder along with any jars needed to provide source access. Hibernate core 4.1.6 or compatible is needed, but not included in the kit, if you wish to utilize the JDBC translator support for dependent joins using temp tables.
osgi All Teiid jars can also be deployed as bundles in a OSGI container like Karaf. If you are working with Karaf, a feature.xml file is available in maven repo for your convenience. Usage pattern is below features:addurl mvn:org.jboss.teiid/teiid/8.6.0.Final/xml/karaf-features features:install -v teiid |
If you are trying run Teidd Embedded with Maven based project and using maven to pull artifacts, the runtime, admin, connector, translator dependencies are necessary as below
<dependency>
<groupId>org.jboss.teiid</groupId>
<artifactId>teiid-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.teiid</groupId>
<artifactId>teiid-admin</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.teiid.connectors</groupId>
<artifactId>translator-SOURCE</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.teiid.connectors</groupId>
<artifactId>connector-SOURCE</artifactId>
<classifier>lib</classifier>
</dependency>
VDBs may be deployed in several ways in Embedded.
VDB Metadata API
VDB deployment can be done directly through VDB metadata objects that are the underpinning of vdb.xml deployment. Models (schemas) are deployed as a set to form a named vdb - see the EmbeddedServer.deployVDB method.
XML Deployment
Similar to a server based -vdb.xml deployment an InputStream may be given to a vdb.xml file - see the EmbeddedServer.deployVDB(InputStream) method.
Zip Deployment
Similar to a server based .vdb deployment a URL may be given to a zip file - see the EmbeddedServer.deployVDBZip method. The use of the zip lib for dependency loading is not enabled in Embedded. See Dynamic VDBs and Metadata Repositories for more on a typical vdb zip structure. Teiid Designer 7 and later VDBs are also supported via this method, but are subject to all of the limitations/differences highlighted in this guide.
Translators
Translators instances can be scoped to a VDB in AS using declarations in a vdb.xml file, however named instances in embedded are scoped to the entire EmbeddedServer and must be registered via the EmbeddedServer.addTranslator methods. Note that there are two addTranslator methods:
A new server instance does not assume any translators are deployed and does not perform any sort of library scanning to find translators.
Sources
The Embedded Server will still attempt to lookup the given JNDI connection factory names via JNDI. In most non-container environments it is likely that no such bindings exist. In this case the Embedded Server instance must have ConnectionFactoryProvider instances manually registered, either using the EmbeddedServer.addConnectionFactory method, or the EmbeddedServer.addConnectionFactoryProvider method to implement ConnectionFactoryProvider registering. Note that the Embedded Server does not have built-in pooling logic, so to make better use of a standard java.sql.DataSource or to enable proper use of javax.sql.XADataSource you must first configure the instance via a third-party connection pool.
EmbeddedServer es = new EmbeddedServer(); EmbeddedConfiguration ec = new EmbeddedConfiguration(); //set any configuration properties ec.setUseDisk(false); es.start(ec); //example of adding a translator by pre-initialized ExecutionFactory and given translator name H2ExecutionFactory ef = new H2ExecutionFactory() ef.setSupportsDirectQueryProcedure(true); ef.start(); es.addTranslator("translator-h2", ef); //add a Connection Factory with a third-party connection pool DataSource ds = EmbeddedHelper.newDataSource("org.h2.Driver", "jdbc:h2:mem://localhost/~/account", "sa", "sa"); es.addConnectionFactory("java:/accounts-ds", ds); //add a vdb //physical model ModelMetaData mmd = new ModelMetaData(); mmd.setName("my-schema"); mmd.addSourceMapping("my-schema", "translator-h2", "java:/accounts-ds"); //virtual model ModelMetaData mmd1 = new ModelMetaData(); mmd1.setName("virt"); mmd1.setModelType(Type.VIRTUAL); mmd1.setSchemaSourceType("ddl"); mmd1.setSchemaText("create view \"my-view\" OPTIONS (UPDATABLE 'true') as select * from \"my-table\""); es.deployVDB("test", mmd, mmd1);
Typically when Teiid is deployed as Embedded Server, and if your end user application is also deployed in the same virtual machine as the Teiid Embedded, you can use "Local JDBC Connection", to access to your virtual database. For example:
EmbeddedServer es = ... Driver driver = es.getDriver(); Connection conn = driver.connect("jdbc:teiid:<vdb-name>", null); // do work with conn; create statement and execute it conn.close();
This is the most efficient method as it does not impose any serialization of objects.
If your client application is deployed in remote VM, or your client application is not a JAVA based application then accesses to the Teiid Embedded is not possible through above mechanism. In those situations, you need to open a socket based connection from remote client application to the Embedded Teiid Server. By default, when you start the Embedded Teiid Sever it does not add any capabilities to accept remote JDBC/ODBC based connections. If you would like to expose the functionality to accept remote JDBC/ODBC connection requests, then configure necessary "transports" during the initialization of the Teiid Embedded Server. The example below shows a sample code to enable a ODBC transport
EmbeddedServer es = new EmbeddedServer() SocketConfiguration s = new SocketConfiguration(); s.setBindAddress("<host-name>"); s.setPortNumber(35432); s.setProtocol(WireProtocol.pg); EmbeddedConfiguration config = new EmbeddedConfiguration(); config.addTransport(s); es.start(config);
if you want to add a JDBC transport, follow the instructions above, however set the protocol to "WireProtocol.teiid" and choose a different port number. Once the above server is running, you can use same instructions as Teiid Server to access Embedded Teiid Server from remote client application. Note that you can add multiple transports to single Embedded Server instance, to expose different transports.
Transaction processing requires setting the TransactionManager in the EmbeddedConfiguration used to start the EmbeddedServer. A client facing javax.sql.DataSource is not provided for embedded. However the usage of provided java.sql.Driver should be sufficient as the embedded server is by default able to detect thread bound transactions and appropriately propagate the transaction to threads launched as part of request processing. The usage of local connections is also permitted.
Embedded provides a the Admin interface via the EmbeddedServer.getAdmin method. Not all methods are implemented for embedded - for example those that deal with data sources. Also the deploy method may only deploy VDB xml artifacts.
Teiid LogManager have a default logListener, which is a wrapper of java util logger, so java logging configuration can take effect. Two ways can be used to configure java logging, one is use the system properties point to a configuration file like -Djava.util.logging.config.file="logging.properties", a sample configuration file can be found under 'JAVA_HOME/jre/lib/', the other way is configure programmability, EmbeddedHelper.enableLogger() is a example.
Another recommend way to configure logging in Teiid Embedded is use JBoss Logger Manager Framework, this framework compatible with most of popular logger framework, like java logger, log4j, jboss logger, etc. To use JBoss Logger Manager first we need add 'jboss-logmanager-VERSION.Final.jar' to classpath, If you are useing Maven based project, add jboss-logmanager dependency, below is a example:
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>jboss-logmanager</artifactId>
</dependency>
Then there also are 2 ways to configure, the first is use configuration file(teiid-logging.properties is a example), 3 system properties are necessary: -Djava.util.logging.manager=org.jboss.logmanager.LogManager, -Dlogging.configuration=teiid-logging.properties, -Dorg.jboss.logmanager.configurationLocator=configurationLocator, EmbeddedHelper.configureLogManager() is a example. The second way is configured programmability, EmbeddedHelper.configureLogManager()also has a example.