You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't have a Flink example ready to go but can give you some input.
We are going to use it soon in our data chain and when we have a decent example will also add in examples folder.
// 1) create hadoop config and set your hadoop host/stuff
Configuration hadoopConfig = new Configuration();
hadoopConfig.set("fs.defaultFS", "hdfs://yourHdfsHost:8020");
hadoopConfig.set("io.compression.codecs", "...."); // make sure to set codecs
// 2) get job conf and configure 4mc for your proto message
Job jobConf = Job.getInstance(hadoopConfig);
FourMcEbProtoInputFormat.setInputFormatClass(YOURMSG.YourProtoMessage.class, jobConf);
could you provide a 4mc example for flink when flink read 4mc data on HDFS files?
The text was updated successfully, but these errors were encountered: