Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix submit function via url #3934

Merged
merged 7 commits into from
Mar 29, 2019
Merged

Conversation

jerrypeng
Copy link
Contributor

Motivation

Submitting a function in which the function package is a url is broker right now. If a user is submitting a function with a url package, he or she will get the following exception:

Jerrys-MBP:incubator-pulsar jerrypeng$ ./bin/pulsar-admin functions create --function-config-file ~/function.yaml 
User class must be in class path

Reason: User class must be in class path

The reason is because we don't actually download the function package from the URL and load it

Modifications

Download the JAR from the function package URL.

I am not sure why in the code we only download the first 10 bytes from the URL and then delete the file. Was this just to check if the URL is valid?

Maybe @rdhabalia can chime in since he wrote most of this code originally.

Though not sure we should download the function package/JAR so that we can do some validation. The JAR can be very large.

@jerrypeng jerrypeng added this to the 2.3.1 milestone Mar 28, 2019
@jerrypeng jerrypeng self-assigned this Mar 28, 2019
@@ -385,8 +385,7 @@ public void testE2EPulsarFunction() throws Exception {

}

@Test(timeOut = 20000)
public void testPulsarSinkStats() throws Exception {
public void testPulsarSinkStats(String jarFilePathUrl) throws Exception {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

private

@merlimat
Copy link
Contributor

@jerrypeng

There seems to be genuine test failure:

java.lang.NullPointerException
	at org.apache.pulsar.io.PulsarFunctionE2ETest.testPulsarSinkStats(PulsarFunctionE2ETest.java:424)
	at org.apache.pulsar.io.PulsarFunctionE2ETest.testPulsarSinkStatsWithUrl(PulsarFunctionE2ETest.java:595)

@jerrypeng
Copy link
Contributor Author

@merlimat this just means the prometheus stats did not have the function stats in them. Its a timing issue because I am trying to download the jar from a url. I am working on a fix for this

@srkukarni srkukarni merged commit 5ea4231 into apache:master Mar 29, 2019
merlimat pushed a commit that referenced this pull request Apr 1, 2019
* fix submit function via url

* cleaning up

* add test

* make method private

* add additional tests

* cleaning up

* improving tests
@merlimat
Copy link
Contributor

merlimat commented Apr 1, 2019

Merged in 2.3.1 at
04de22e

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants