You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@beam.apache.org by "Ismaël Mejía (JIRA)" <ji...@apache.org> on 2019/01/09 13:26:00 UTC

[jira] [Updated] (BEAM-3073) Add Apache Ignite IO

     [ https://issues.apache.org/jira/browse/BEAM-3073?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ismaël Mejía updated BEAM-3073:
-------------------------------
    Summary: Add Apache Ignite IO  (was: Connect to Apache ignite via JdbcIO sdk)

> Add Apache Ignite IO
> --------------------
>
>                 Key: BEAM-3073
>                 URL: https://issues.apache.org/jira/browse/BEAM-3073
>             Project: Beam
>          Issue Type: New Feature
>          Components: io-ideas
>            Reporter: Rick Lin
>            Assignee: Jean-Baptiste Onofré
>            Priority: Minor
>
> Hi all,
> {color:#14892c}I tried to connect Apache Ignite(In-memory) via the beam's sdk:org.apache.beam.sdk.io.jdbc.JdbcIO
> Here, i am not sure if the JdbcIO sdk only is provided for some specific Database: MySQL(disk), postgreSQL(disk)?{color}
> my java test code is as follows:
> import java.sql.PreparedStatement;
> import java.sql.SQLException;
> import java.util.ArrayList;
> import java.util.List;
> import org.apache.beam.sdk.Pipeline;
> import org.apache.beam.sdk.io.jdbc.JdbcIO;
> import org.apache.beam.sdk.options.PipelineOptionsFactory;
> import org.apache.beam.sdk.transforms.Create;
> import org.apache.beam.sdk.values.KV;
> import org.apache.beam.sdk.values.PCollection;
> public class BeamtoJDBC {
> 	public static void main(String[] args) {		
> 		Integer[] value=new Integer[] {1,2,3,4,5};
> 		List<KV<Integer, Integer>> dataList = new ArrayList<>();
> 		int n=value.length;
> 		int count=0;
> 		for (int i=0; i<n; i++)
> 		{
> 			dataList.add(KV.of(count,value[i]));
> 			count=count+1;			
> 		}
> 		
> 		Pipeline p = Pipeline.create(PipelineOptionsFactory.fromArgs(args).withValidation().create());
> 		
> 		PCollection<KV<Integer, Integer>> data=p.apply("create data with time",Create.of(dataList));
> 		data.apply(JdbcIO.<KV<Integer, Integer>>write()
> 				.withDataSourceConfiguration(JdbcIO.DataSourceConfiguration
> 						.create("org.apache.ignite.IgniteJdbcDriver", "jdbc:ignite://localhost:11211/")
> 						)		
> 				.withPreparedStatementSetter(new JdbcIO.PreparedStatementSetter<KV<Integer, Integer>>() {
> 					public void setParameters(KV<Integer, Integer> element, PreparedStatement query)
> 						throws SQLException {
> 						query.setInt(1, element.getKey());
> 						query.setInt(2, element.getValue());
> 					}
> 				})
> 			);
> 		p.run();
> 	}
> }
> {color:#d04437}my error message is: 
> " InvocationTargetException: org.apache.beam.sdk.util.UserCodeException: java.sql.SQLException: Cannot create PoolableConnectionFactory 
> (Failed to establish connection.): Failed to get future result due to waiting timed out. "{color}
> {color:#14892c}I would like to know whether the connection between beam and ignite is feasible or not?{color}
> Thanks
> Rick



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)