Re: Submit Flink Jobs to YARN running on AWS

2016-06-07 Thread Ashutosh Kumar
If you use open vpn for accessing aws then you can use private IP of ec2 machine from your laptop. Thanks Ashutosh On Tue, Jun 7, 2016 at 11:00 PM, Shannon Carey wrote: > We're also starting to look at automating job deployment/start to Flink > running on EMR. There are a few options: > >-

Re: Facing error while running Hands-in training example “writing to Apache Kafka”

2016-06-01 Thread Ashutosh Kumar
How are you packaging and deploying your jar ? I have tested with flink and kafka .9 . It works fine for me . Thanks Ashutosh On Wed, Jun 1, 2016 at 3:37 PM, ahmad Sa P wrote: > I did test it with Kafka 0.9.0.1, still the problem exists! > > On Wed, Jun 1, 2016 at 11:50 AM, Aljoscha Krettek >

Re: Apache Beam and Flink

2016-05-26 Thread Ashutosh Kumar
g) >http://www.talend.com/blog/2016/05/02/introduction-to-apache-beam > > > I hope this helps. > > Thanks > > Slim Baltagi > > On May 26, 2016, at 2:20 AM, Ashutosh Kumar > wrote: > > How does apache beam fits with flink ? Is it an alternative for flink or > complementary to it ? > > Thanks > Ashutosh > > >

Apache Beam and Flink

2016-05-26 Thread Ashutosh Kumar
How does apache beam fits with flink ? Is it an alternative for flink or complementary to it ? Thanks Ashutosh

Re: join performance

2016-04-28 Thread Ashutosh Kumar
Time unit can be in seconds as well. Is there specific need to get bursts hourly? On Fri, Apr 29, 2016 at 11:48 AM, Henry Cai wrote: > For the below standard stream/stream join, does flink store the results of > stream 1 and stream 2 into state store for the current hour and at the end > of the

Re: Kafka Test Error

2016-03-31 Thread Ashutosh Kumar
I am using flink 1.0.0 with kafka 0.9 . I works fine for me. I use following dependency. org.apache.flink flink-connector-kafka-0.9_2.10 1.0.0 provided Thanks Ashutosh On Fri, Apr 1, 2016 at 10:46 AM, Zhun Shen wrote: > Hi there, > > I check

Re: Access to S3 from YARN on EC2

2016-03-21 Thread Ashutosh Kumar
roblem rather than the combination > of the different libraries that are using there is a version compatibility > mismatch, so you will have to go back and check if there is any version > mismatch. Are you using scala or this is a java project ? > > On Mon, Mar 21, 2016 at 10:26 AM, Ashutosh

Re: Access to S3 from YARN on EC2

2016-03-20 Thread Ashutosh Kumar
> Hi Ashutosh, > > I believe you need to add the hadoop-aws jar to your project. > > http://mvnrepository.com/artifact/org.apache.hadoop/hadoop-aws/2.6.0 > > Thanks, > Tim > > On Sun, Mar 20, 2016 at 9:39 AM, Ashutosh Kumar < > ashutosh.disc...@gmail.com>

Re: Access to S3 from YARN on EC2

2016-03-20 Thread Ashutosh Kumar
Do I need to add some jars in lib ? Thanks Ashutosh On Sun, Mar 20, 2016 at 4:30 PM, Ashutosh Kumar wrote: > It is not there. > > Thanks > Ashutosh > > On Sun, Mar 20, 2016 at 2:58 PM, Robert Metzger > wrote: > >>

Re: Access to S3 from YARN on EC2

2016-03-20 Thread Ashutosh Kumar
It is not there. Thanks Ashutosh On Sun, Mar 20, 2016 at 2:58 PM, Robert Metzger wrote: > Hi, > > did you check if the "org.apache.hadoop.fs.s3native.NativeS3FileSystem" > class is in the flink-dist.jar in the lib/ folder? > > > On Sun, Mar 20, 2

Access to S3 from YARN on EC2

2016-03-20 Thread Ashutosh Kumar
I have setup a 3 node YARN based cluster on EC2. I am running flink in cluster mode. I added these lines in core-site.xml fs.s3n.awsAccessKeyId accesskey fs.s3n.awsSecretAccessKey secret key fs.s3n.impl org.apache.hadoop.f

Re: DataSet -> DataStream

2016-03-10 Thread Ashutosh Kumar
As data is already collected, why do you want add one more layer of Kafka. Instead you can start processing your data. Thanks Ashutosh On Mar 11, 2016 4:19 AM, "Prez Cannady" wrote: > > I’d like to pour some data I’ve collected into a DataSet via JDBC into a > Kafka topic, but I think I need to t

Running Flink 1.0.0 on YARN

2016-03-10 Thread Ashutosh Kumar
I have a yarn setup with 1 master and 2 slaves. When I run yarn session with bin/yarn-session.sh -n 2 -jm 1024 -tm 1024 and submit job with bin/flink run examples/batch/WordCount.jar , the job succeeds . It shows status on yarn UI http://x.x.x.x:8088/cluster . However it does not show anythin

Looking for co founder /partner in Bangalore

2016-02-20 Thread Ashutosh Kumar
I am planning to build a analytics platform based on Flink, Kafka , Camel, Zeppelin , Drill and Cassandra . I am looking for co founder/partner in Bangalore . I am sorry if this is not a right forum to express this. Thanks Ashutosh

Merging of streams

2016-02-04 Thread Ashutosh Kumar
I found that merge method for datastream does not exist in latest version . What is the equivalent for it ? Shall I use union or join ? Thanks Ashutosh

How to prepare data for K means clustering

2016-01-20 Thread Ashutosh Kumar
I saw example code for K means clustering . It takes input data points as pair of double values (1.2 2.3\n5.3 7.2\.). My question is how do I convert my business data to this format. I have customer data which has columns like house hold income , education and several others. I want to do clusteri

k means Clustering for images

2016-01-19 Thread Ashutosh Kumar
I am looking for steps to perform clustering on image repository. Request you to provide me few pointers. Thanks Ashutosh

Re: Machine Learning on Apache Fink

2016-01-09 Thread Ashutosh Kumar
. Thanks in advance. Ashutosh On Sat, Jan 9, 2016 at 3:32 PM, Ashutosh Kumar wrote: > I am looking for some study material and examples on machine learning . > Are classification , recommendation and clustering libraries available ? > What is the timeline for Flink as backend for Mah

Machine Learning on Apache Fink

2016-01-09 Thread Ashutosh Kumar
I am looking for some study material and examples on machine learning . Are classification , recommendation and clustering libraries available ? What is the timeline for Flink as backend for Mahout? I am building a meta data driven framework over Flink . While building data collection and transform

Re: Kafka0.8.2.1 + Flink0.9.0 issue

2015-06-22 Thread Ashutosh Kumar
I use following dependencies and it works fine . org.apache.flink flink-java 0.9-SNAPSHOT org.apache.flink flink-clients 0.9-SNAPSHOT org.apache.flink flink-streaming-core 0.9-SNAPSHOT org.apache.flink flink-connector-kafka 0.9-SNAPSHOT On Mon, Jun 22, 2015 at 10:07 PM, Hawin Jiang wrot

Re: NotSerializableException: jdk.nashorn.api.scripting.NashornScriptEngine

2015-06-05 Thread Ashutosh Kumar
ge your user function into a Rich* function, initialize the > scripting engine in the open() method and make the field transient? > > That should resolve it. > > On Fri, Jun 5, 2015 at 10:25 AM, Ashutosh Kumar < > ashutosh.disc...@gmail.com> wrote: > >> I am trying to us

NotSerializableException: jdk.nashorn.api.scripting.NashornScriptEngine

2015-06-05 Thread Ashutosh Kumar
I am trying to use java script engine to execute some rules on data set. But it is throwing NotSerializableException for jdk.nashorn.api.scripting.NashornScriptEngine.Not sure how to resolve this. Thanks Caused by: java.io.NotSerializableException: jdk.nashorn.api.scripting.NashornScriptEngine a