1 / 14

Condor and Web Services

Condor and Web Services. Outline. Current “API” What are Web Services and SOAP? Benefits of a Condor SOAP API Functionality and examples State of the implementation Future features. Current “API”. Use command-line tools directly Applications use command-line tools via system calls.

queenie
Download Presentation

Condor and Web Services

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Condor and Web Services

  2. Outline • Current “API” • What are Web Services and SOAP? • Benefits of a Condor SOAP API • Functionality and examples • State of the implementation • Future features

  3. Current “API” • Use command-line tools directly • Applications use command-line tools via system calls

  4. What are web services? • Applications accessible typically over HTTP using SOAP and XML • Standards exist for • discovery of services • description of application interfaces (WSDL) • communication mechanisms (RPC) • and many other things

  5. What is SOAP? • Simple Object Access Protocol • Mechanism for doing RPC using XML • typically over HTTP • A World Wide Web Consortium (W3C) standard

  6. Benefits of a Condor SOAP API • Condor becomes a service • Can be accessed with standard web service tools • Condor accessible from platforms where its command-line tools are not supported • Talk to Condor with your favorite language and SOAP toolkit

  7. Condor SOAP API in the wild • Condor called from Business Process Execution Language (BPEL) workflows (LBL) • Portal providing web interface to Condor pools (Indiana University)

  8. Condor SOAP API functionality • Submit jobs • Retrieve job output • Remove/hold/release jobs • Query machine status • Query job status

  9. SOAP over HTTP Getting machine status via SOAP Your program condor_collector queryStartdAds() Machine List SOAP library

  10. Getting machine status viaSOAP (in Java with Axis) locator = new CondorCollectorLocator(); collector = locator.getcondorCollector(new URL(“http://machine:port”)); ads = collector.queryStartdAds(“Memory>512“); Because we give you WSDL information you don’t have to write any of these functions.

  11. } Wash, rinse, repeat Submitting jobs • Begin transaction • Create cluster • Create job • Send files • Describe job • Commit transaction • Two phase commit for reliability

  12. Current implementation • Working prototype exists • Expected release in 6.7 series

  13. Future features • Support for authenticated access • Support for notification • Becoming a grid service

  14. Questions?

More Related