Aryant01 commented on issue #430:
URL: 
https://github.com/apache/incubator-wayang/issues/430#issuecomment-2271293404

   Hey @zkaoudi , I have added two more plugins: Hadoop and GraphChi. 
   `// Add all plugins
       val javaPluginName = Java.basicPlugin().getClass.getName
       val sparkPluginName = Spark.basicPlugin().getClass.getName
       val postgresPluginName = Postgres.plugin().getClass.getName
       val sqlite3PluginName = Sqlite3.plugin().getClass.getName
       val flinkPluginName = Flink.basicPlugin().getClass.getName
       val hadoopPluginName = Hadoop.basicPlugin().getClass.getName
       val graphchiPluginName = GraphChi.basicPlugin().getClass.getName
   
       plugins.foreach {
         case pluginName if pluginName == javaPluginName => 
multiContext.register(Java.basicPlugin())
         case pluginName if pluginName == sparkPluginName => 
multiContext.register(Spark.basicPlugin())
         case pluginName if pluginName == postgresPluginName => 
multiContext.register(Postgres.plugin())
         case pluginName if pluginName == sqlite3PluginName => 
multiContext.register(Sqlite3.plugin())
         case pluginName if pluginName == flinkPluginName => 
multiContext.register(Flink.basicPlugin())
         case pluginName if pluginName == hadoopPluginName => 
multiContext.register(Hadoop.basicPlugin())
         case pluginName if pluginName == graphchiPluginName => 
multiContext.register(GraphChi.basicPlugin())
         case _ => println("Unknown plugin detected")
       }`
   
   Am I missing something? If that's all i had to do, can you please tell how 
do I get a approval to make the pool request. I am new to open source 
contributions. Thankyou.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to