Hi, Please properly subscribe to the mailing list so that the community can receive email notifications for your messages. To subscribe, send empty email to user-subscr...@ignite.apache.org and follow simple instructions in the reply.
vpmavuri wrote > Hi > I am new to Apache Ignite. Looking for data fabric solutions for one of > my projects. I am trying to do POC to create CacheJDBCStore using one of > the examples from the installation. Only modification that I am > attempting to do is to change the datasource from H2 driver to MySQL. I > am getting the following error when I ran my example. Can someone help > what am I missing? Any clue or help is highly appreciated. This happens because you're creating the data source for the session listener outside of the factory. This means that the data source will be serialized which you should avoid. You should create the data source within the Factory.create() method. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/CacheJDBCStore-creation-failing-using-MySQL-Datasource-tp7716p7757.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.