Sending JSON data to a Rapidminer Service through a POST REST API call
This article deals with JSON files.
For a CSV upload, please see:
For XML:
When we want to sent a whole list of records as a file or as a json data stream to the server to get scored, or for training; we need a POST call.
Before we get started on this, it may be a bit daunting finding out how to do a POST call because it is not as simple as passing a single value through a web browser and a lot of articles out there approach making POST calls through programming languages. We will use cURL, a command line tool for sending and receiving files through URL syntax. It has many parameters but we only need two for now, further details can be found by typing "curl -h" in the command line or through https://en.wikipedia.org/wiki/CURL
Let us get started with a very simple process which trains a decision tree to classify customers. It is meant to be able to predict the "Response" attribute.
A sample of the data is as follows:
For deployment, we have another process which imports the model built above on the data we have with known responses and applies it to data with unknown responses.
Please note how the "Read Document" operator is connected to the imput port of the process canvas. This is so that it can receive data through the POST upload from the service we are going to create. This operator is not currently pointed to any file.
There is also a "Cut Document" operator which is necessary for partitioning the JSON file to JSON documents per record so that the "JSON to Data" operator can parse them. The "JSON to Data" operator is meant to ingest collections of JSON documents, not a single file, that is why we cut the document into a collection using the following parameters:
Please note that in steps 1 to 4 above, we use the JsonPath notation to parse the file and the "$." argument. With other files, this argument can get more complicated.
It may be worth the time to research JsonPath notation online as well as regular expressions.
Before we create the service, bear in mind that the data we are going to pass for scoring does not have values in the response attribute, those values are going to be predicted.
Let us now create the service in Rapidminer Server:
There are no special parameters or macros, as long as it points to the correct process for deployment. We then test the service to get the URL which, in this case, is:
http://RMUK-KBONIKOS:8080/api/rest/process/POSTtes
We can use curl from the command line, which in Windows can be started from the Start menu by typing "cmd" and then we can enter the follwoing curl command:
curl --user admin --upload-file C:\test.json http://<your server>:8080/api/rest/process/POSTtes
Or, curl --user admin --data {json data} http://<your server>:8080/api/rest/process/POSTtes
The user in this case is "admin" and the file is test.json and is saved in the C: drive, the path for the file can change. When this is executed, you will be asked for your password for the user and then you should get a list of scored records in XML in this case, this depends on the output format chosen when defining the service.
With the above help, you should be able to create a process and expose it as a service in Rapidminer Server and then test that is is able to receive JSON data or files through a POST upload and score and return the output.
Comments
OoOo, this is nice. Thank you!
it is showing following error
Please help
"The process execution has failed: 'No input for port 'Read Document.file (connected)'.'. Detailed error message: 'The specified port did not receive any input. Either the port is not connected or the preceding operator did not deliver any output. '"