org.apache.flink.runtime.rest.FileUploadHandler Java Examples

The following examples show how to use org.apache.flink.runtime.rest.FileUploadHandler. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JobSubmitHeaders.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
@Override
public String getDescription() {
	return "Submits a job. This call is primarily intended to be used by the Flink client. This call expects a " +
		"multipart/form-data request that consists of file uploads for the serialized JobGraph, jars and " +
		"distributed cache artifacts and an attribute named \"" + FileUploadHandler.HTTP_ATTRIBUTE_REQUEST + "\" for " +
		"the JSON payload.";
}
 
Example #2
Source File: JobSubmitHeaders.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
public String getDescription() {
	return "Submits a job. This call is primarily intended to be used by the Flink client. This call expects a " +
		"multipart/form-data request that consists of file uploads for the serialized JobGraph, jars and " +
		"distributed cache artifacts and an attribute named \"" + FileUploadHandler.HTTP_ATTRIBUTE_REQUEST + "\" for " +
		"the JSON payload.";
}
 
Example #3
Source File: JobSubmitHeaders.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
public String getDescription() {
	return "Submits a job. This call is primarily intended to be used by the Flink client. This call expects a " +
		"multipart/form-data request that consists of file uploads for the serialized JobGraph, jars and " +
		"distributed cache artifacts and an attribute named \"" + FileUploadHandler.HTTP_ATTRIBUTE_REQUEST + "\" for " +
		"the JSON payload.";
}