Console API Examples¶
The console API is accessed by specifying the api
subcommand with the jetstream command.
Connecting To A Server¶
Each invocation of an API command through the console automatically connects to the server when executed, and disconnects on exit.
The --host
and --api-control-port
parameters are used to specify the JetStream server to which
the console API will be connected. These parameters are specified after the api
subcommand,
but before the API command.
The --user
parameter is used to authenticate the user on the JetStream server to which
the console API will be connected. Password will be read from environment variable JETSTREAM_API_PASSWORD
if
set. Otherwise an interactive password input prompt will be displayed.
- Example:
jetstream api --host <host> --user <user> <command> [options]
Tip
- Default Host
- If you do not specify the
--host
parameter, the default used islocalhost
. - Default Port
- If you do not specify the
--api-control-port
parameter, the default used is8886
.
If the JetStream Server was setup to use non-default API port, you will have to specify it using the --api-control-port
option. For Example:
# jetstream api --api-control-port=57110 getServerInfo
{
"allowRemoteControl": true,
"apiControlPort": 57110,
"apiVersion": 26,
[...]
"version": "1.7.999"
}
Creating a Manifest¶
The createManifest()
command will initialize a manifest that, when attached to a transfer, will send
the local file /local/home/readme.txt
to a destination, saving it at the path /data/docs/readme.txt
. It returns a Manifest Structure.
# jetstream api --user user createManifest --fileMappings="/local/home/readme.txt:/data/docs/readme.txt"
{
"errorMessage": "",
"manifestId": "3bc6f6c9b5a0aa221000000000000000",
"owner": "user",
"processing": true,
"status": "pending",
"totalFiles": null,
"totalSize": null,
"userData": {}
}
Tip
When running on Windows and both the source and destination paths include a drive letter, you can use ::
as the file separator in the fileMappings
parameter.
Monitoring a Manifest¶
The createManifest()
command returns immediately, with a reference to a manifestId
. We can use getManifest()
to check on the manifest asynchronously, or waitForManifest()
to block until the server has finished processing the manifest. Simiar to createManifest
, both commands return a Manifest Structure.
# jetstream api --user user waitForManifest --manifestId=3bc6f6c9b5a0aa221000000000000000
{
"errorMessage": "",
"manifestId": "3bc6f6c9b5a0aa221000000000000000",
"owner": "user",
"processing": false,
"status": "complete",
"totalFiles": 1,
"totalSize": 100,
"userData": {}
}
On completion, the manifest will report its status
as one of the following:
complete
: The manifest has been completed successfully.error
: The manifest failed. TheerrorMessage
field will contain a description of the error.
When a manifest has initialized successfully, its totalFiles
and totalSize
fields will
reflect the size of the manifest.
Note
Creating a manifest does not begin sending its files. For this, you need to attach the manifest to a transfer, which is sent to a destination.
Creating a Destination¶
Before you can start a file transfer, you must create a destination using the createDestination`()
command, which returns a Destination Structure.
# jetstream api createDestination --destinationAddress="localhost" --destinationPort=8886
{
"connectionId": "3bc6f6c9b5a0aa224000000000000000",
"destinationAddress": "localhost",
"destinationIP": "127.0.0.1",
"destinationId": "3bc6f6c9b5a0aa223000000000000000",
[...]
"userData": {}
}
Creating a Transfer¶
We’ll use the output from the createManifest
and createDestiantion
commands prepared above. For the transfer to start, we will need to authenticate with the remote server. For this example, we’ll use a user datamover
, which is used for authentication at the remote server. Password for --userName
can be passed in by setting by JETSTREAM_TRANSFER_PASSWORD
environment variable. Otherwise an interactive password input prompt will be displayed.
The createTransfer()
command returns a Transfer Structure:
# jetstream api createTransfer --destinationId=3bc6f6c9b5a0aa223000000000000000 --manifestId=3bc6f6c9b5a0aa221000000000000000 --userName=datamover
{
"blockSize": 256,
"blocksAcked": 0,
"blocksRetransmitted": 0,
"blocksSent": 0,
"bytesRecv": 0,
"bytesSent": 0,
[...]
"processing": true,
"status": "pending",
"transferId": "3bc6f6c9b5a0aa222000000000000000",
"userData": {}
}
Monitoring A Transfer¶
The createTransfer()
command returns immediately, with a reference to a transferId
. We can use the getTransfer()
function to check on the transfer asynchronously, or waitForTransfer()
to block until the server has finished transferring. Simiar to createTransfer
, both commands return Transfer Structure.
# jetstream api --user user waitForTransfer --transferId=3bc6f6c9b5a0aa222000000000000000
{
[...]
"processing": false,
"status": "complete",
"transferId": "3bc6f6c9b5a0aa222000000000000000",
"userData": {}
}
On completion, the transfer will report its status as one of the following:
complete
: The transfer has been completed successfully.suspended
: The transfer was suspended. UseresumeTransfer
to resume transmitting.error
: The transfer failed. TheerrorMessage
field will contain a description of the error.