hadooplaravel-5

How to use hadoop with laravel 5.2


I tried to search but still there is not much examples out. Can anyone please give me some tutorial for the laravel hadoop integration.

As in my development i want both the connections mysql and hadoop.


Solution

  • Now i got the working laravel 5.2 with hive and hadoop. I have used the below package https://packagist.org/packages/tck/odbc and made some changes to work with my laravel version.

    In my development i want both the connections mysql and hadoop, so for that i have used mysql as a default connection and for hadoop i used odbc drive below is my code snippet :

    DB::connection('odbc')->table('database_name.table_name')->select('*')->get();