Apache Ignite · Capability

Apache Ignite REST module — compute

Apache Ignite REST module — compute. 4 operations. Lead operation: Apache Ignite Retrieve All Job States. Self-contained Naftiko capability covering one Apache Ignite business surface.

Run with Naftiko Apache Ignitecompute

What You Can Do

GET
Jobstates — Apache Ignite Retrieve All Job States
/v1/management/v1/compute/jobs
GET
Jobstate — Apache Ignite Retrieve Job State
/v1/management/v1/compute/jobs/{jobid}
DELETE
Canceljob — Apache Ignite Cancel Job
/v1/management/v1/compute/jobs/{jobid}
PUT
Updatepriority — Apache Ignite Update Job Priority
/v1/management/v1/compute/jobs/{jobid}/priority

MCP Tools

apache-ignite-retrieve-all-job

Apache Ignite Retrieve All Job States

read-only idempotent
apache-ignite-retrieve-job-state

Apache Ignite Retrieve Job State

read-only idempotent
apache-ignite-cancel-job

Apache Ignite Cancel Job

idempotent
apache-ignite-update-job-priority

Apache Ignite Update Job Priority

idempotent

Capability Spec

rest-compute.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache Ignite REST module — compute
  description: 'Apache Ignite REST module — compute. 4 operations. Lead operation: Apache Ignite Retrieve All Job States.
    Self-contained Naftiko capability covering one Apache Ignite business surface.'
  tags:
  - Apache Ignite
  - compute
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_IGNITE_API_KEY: APACHE_IGNITE_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-compute
    baseUri: http://localhost:10300
    description: Apache Ignite REST module — compute business capability. Self-contained, no shared references.
    resources:
    - name: management-v1-compute-jobs
      path: /management/v1/compute/jobs
      operations:
      - name: jobstates
        method: GET
        description: Apache Ignite Retrieve All Job States
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: management-v1-compute-jobs-jobId
      path: /management/v1/compute/jobs/{jobId}
      operations:
      - name: jobstate
        method: GET
        description: Apache Ignite Retrieve Job State
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jobId
          in: path
          type: string
          description: The unique identifier of the compute job.
          required: true
      - name: canceljob
        method: DELETE
        description: Apache Ignite Cancel Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jobId
          in: path
          type: string
          description: The unique identifier of the compute job.
          required: true
    - name: management-v1-compute-jobs-jobId-priority
      path: /management/v1/compute/jobs/{jobId}/priority
      operations:
      - name: updatepriority
        method: PUT
        description: Apache Ignite Update Job Priority
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jobId
          in: path
          type: string
          description: The unique identifier of the compute job.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.APACHE_IGNITE_USER}}'
      password: '{{env.APACHE_IGNITE_PASS}}'
  exposes:
  - type: rest
    namespace: rest-compute-rest
    port: 8080
    description: REST adapter for Apache Ignite REST module — compute. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/management/v1/compute/jobs
      name: management-v1-compute-jobs
      description: REST surface for management-v1-compute-jobs.
      operations:
      - method: GET
        name: jobstates
        description: Apache Ignite Retrieve All Job States
        call: rest-compute.jobstates
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/v1/compute/jobs/{jobid}
      name: management-v1-compute-jobs-jobid
      description: REST surface for management-v1-compute-jobs-jobId.
      operations:
      - method: GET
        name: jobstate
        description: Apache Ignite Retrieve Job State
        call: rest-compute.jobstate
        with:
          jobId: rest.jobId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: canceljob
        description: Apache Ignite Cancel Job
        call: rest-compute.canceljob
        with:
          jobId: rest.jobId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/v1/compute/jobs/{jobid}/priority
      name: management-v1-compute-jobs-jobid-priority
      description: REST surface for management-v1-compute-jobs-jobId-priority.
      operations:
      - method: PUT
        name: updatepriority
        description: Apache Ignite Update Job Priority
        call: rest-compute.updatepriority
        with:
          jobId: rest.jobId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-compute-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache Ignite REST module — compute. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apache-ignite-retrieve-all-job
      description: Apache Ignite Retrieve All Job States
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-compute.jobstates
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-ignite-retrieve-job-state
      description: Apache Ignite Retrieve Job State
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-compute.jobstate
      with:
        jobId: tools.jobId
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-ignite-cancel-job
      description: Apache Ignite Cancel Job
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: rest-compute.canceljob
      with:
        jobId: tools.jobId
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-ignite-update-job-priority
      description: Apache Ignite Update Job Priority
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: rest-compute.updatepriority
      with:
        jobId: tools.jobId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.