Home

Awesome

<a href="http://www.parallec.io"><img alt="Parallec-logo" src="http://www.parallec.io/images/parallec-logo.png" width="325"></a>

build status Build Status Coverage Status Apache V2.0 License

latest 0.10.x latest beta  maven central Gitter

Javadoc Documentation Samples Chinese

[ Get-Started | Features | Use Cases | Samples | Change Log / What's New / Versions | User Group | Motivation | Demos | Performance | Compare | Contributors | About | News | Plugin | 中文介绍 ]

[ API Overview | Generate & Submit Task | Track Status & Examine Responses | Configurations ]

Tweeted by the Creator of Akka & Featured in [ This Week in #Scala | OSChina - 2015 Top 100 ]

Overview

Parallec is a fast parallel async HTTP(S)/SSH/TCP/UDP/Ping client java library based on Akka. Scalably aggregate and handle API responses anyway and send it anywhere by writing 20 lines of code. A super convenient response context let you pass in/out any object when handling the responses. Now you can conduct scalable API calls, then effortlessly pass aggregated data anywhere to elastic search, kafka, MongoDB, graphite, memcached, etc. Flexible task level concurrency control without creating a 1,000 threads thread pool. Parallec means Parallel Client (pronounced as "Para-like"). Visit www.parallec.io

Watch Demo: 8,000 web server HTTP response aggregation to memory in 12 seconds / to ElasticSearch in 16 seconds.

Aggregated error messages - Debug friendly with full visibility: Having trouble debugging in concurrent environment? Not any more! All exceptions, timeout, stack traces, request sent and response received time are captured and aggregated in the response map. It is available in ParallelTask for polling right after you execute a task asynchronously. Multi-level (worker/manager) timeout guarantees tasks return even for 100,000s of requests.

Production Use Cases: widely used in infrastructure software as the polling and aggregation engine

  1. Application Deployment / PaaS: Parallec has been integrated in eBay main production application deployment system (PaaS). Parallec orchestrates 10+ API tasks, with each task targeting 10s to 1,000s servers over 1,000+ application pools in production. Parallec has been used with work flow engine Winder to handle work flows more complex but similar to this one.
  2. Data Extraction / ETL: Parallec has been used by eBay Israel's web intelligence team for executing 10k-100k API parallel calls to a single 3rd party server with dramatic improved performance and reduced resources.
  3. Network Troubleshooting via Probing: In eBay's network / cloud team, Parallec is instrumental to ensure an extremely low false alert rates to accurately detect switch soft failures. Parallec serves as the core polling engine in the master component to check agent healths and mark down agents to effectively and timely eliminate noises.
  4. Agent Management / Agent Master: In eBay's site operation / tools team, Parallec serves as the core engine to manage and monitor a puppet agent/salt minion/kubernetes kubelet like agent on 100,000+ production servers to ensure scalable operations.

Workflow Overview

Get Started

Donwload the latest JAR or grab from Maven:

<dependency>
	<groupId>io.parallec</groupId>
	<artifactId>parallec-core</artifactId>
	<version>0.10.6</version>
</dependency>

Snapshots of the development version are available in Sonatype's snapshots repository.

or Gradle:

compile 'io.parallec:parallec-core:0.10.6'

6 Line Example

In the example below, simply changing prepareHttpGet() to prepareSsh(), prepareTcp(), prepareUdp(), preparePing() enables you to conduct parallel SSH/TCP/Ping. Details please refer to the Java Doc and Example Code.

import io.parallec.core.*;
import java.util.Map;

ParallelClient pc = new ParallelClient(); 
pc.prepareHttpGet("").setTargetHostsFromString("www.google.com www.ebay.com www.yahoo.com")
.execute(new ParallecResponseHandler() {
    public void onCompleted(ResponseOnSingleTask res,
        Map<String, Object> responseContext) {
        System.out.println( res.toString() );  }
});

20 Line Example

Now that you have learned the basics, check out how easy to pass an elastic search client using the convenient response context to aggregate data anywhere you like. You can also pass a hash map to the responseContext, save the processed results to the map during onCompleted, and use the map outside for further work.

...
import org.elasticsearch.client.Client;
import static org.elasticsearch.node.NodeBuilder.*;

ParallelClient pc = new ParallelClient();
org.elasticsearch.node.Node node = nodeBuilder().node(); //elastic client initialize
HashMap<String, Object> responseContext = new HashMap<String, Object>();
responseContext.put("Client", node.client());
pc.prepareHttpGet("")
        .setConcurrency(1000).setResponseContext(responseContext)
        .setTargetHostsFromLineByLineText("http://www.parallec.io/userdata/sample_target_hosts_top100_old.txt", HostsSourceType.URL)
        .execute( new ParallecResponseHandler() {
            public void onCompleted(ResponseOnSingleTask res,
                    Map<String, Object> responseContext) {
                Map<String, Object> metricMap = new HashMap<String, Object>();
                metricMap.put("StatusCode", res.getStatusCode().replaceAll(" ", "_"));
                metricMap.put("LastUpdated",PcDateUtils.getNowDateTimeStrStandard());
                metricMap.put("NodeGroupType", "Web100");
                Client client = (Client) responseContext.get("Client");
                client.prepareIndex("local", "parallec", res.getHost()).setSource(metricMap).execute();
            }
        });
node.close(); pc.releaseExternalResources();

Different Requests to the Same Target

Now see how easy to use the request template to send multiple different requests to the same target. Variable replacement is allowed in post body, url and headers. Read more..

pc.prepareHttpGet("/userdata/sample_weather_$ZIP.txt")
    .setReplaceVarMapToSingleTargetSingleVar("ZIP",
        Arrays.asList("95037","48824"), "www.parallec.io")
    .execute(new ParallecResponseHandler() {...}...

What's New

More details please check the Change Log.

Versions

More Readings

User Group

Use Cases

  1. Scalable web server monitoring, management, and configuration push, ping check.
  2. Asset / server status discovery, remote task execution in agent-less(parallel SSH) or agent based (parallel HTTP/TCP) method.
  3. Scalable API aggregation and processing with flexible destination with your favorate message queue / storage / alert engine.
  4. Orchestration and work flows on multiple web servers.
  5. Parallel different requests with controlled concurrency to a single server: as a parallec client for REST API enabled Database / Web Server CRUD operations. Variable replacement allowed in post body, url and headers.
  6. Load testing with request template.
  7. Network monitoring with active probing via UDP/Ping etc.

Features<a name="features"></a>

Parallec is built on Akka actors and Async HTTP Client / Netty / Jsch. The library focuses on HTTP while also enables scalable communication over SSH/Ping/TCP.

90%+ Test coverage assures you always find an example of each of feature.

  1. Exceedingly intuitive interface with builder pattern similar to that in Async HTTP Client, but handles concurrency behind the scenes.
  2. Generic response handler with context. Special response context enables total freedom and convenience of processing each response your way. Process and aggregate data anywhere to Kafka, Redis, Elastic Search, mongoDB, CMS and etc.
  3. Flexible on when to invoke the handler: before (in worker thread) or after the aggregation (in master/manager thread).
  4. Flexible Input of target hosts: Input target hosts from a list, string, JSON Path from local files or a remote URL
  5. Scalable and fast, infinitely scalable with built-in Concurrency control.
  6. Auto-progress polling to enable task level concurrency with Async API for long jobs and orchestrations.
  7. Request template to handle non-uniform requests.
  8. Convenient single place handling success and failure cases. Handle in a single function where you can get the response including the actual response if success; or stacktrace and error details if failures.
  9. Capacity aware task scheduler helps you to auto queue up and fire tasks when capacity is insufficient. (e.g. submit consecutively 5 tasks each hitting 100K websites with default concurrency will result in a queue up)
  10. Fine-grained task progress tracking helps you track the the progress each individual task status. Of a parallel task on 1000 target hosts, you may check status on any single host task, and percentage progress on how many are completed.
  11. Fine-grained task cancelation on whole/individual request level. Of a parallel task on 1000 target hosts, you may cancel a subset of target hosts or cancel the whole parallel task anytime.
  12. Status-code-aggregation is provided out of the box.
  13. Parallel Ping supports both InetAddress.reachable ICMP (requires root) and Process based ping with retries. Performance testing shows it is 2x the speed of than best-effort tuned FPing on pinging on 1500 targets. (2.2 vs 4.5 sec)
  14. Parallel SSH supports both key and password based login and task cancellation.
  15. Parallel TCP/UDP supports idle timeout based channel closes.

Motivation

With the feedbacks, lessons, and improvements from the past year of internal usage and open source of REST Commander, we now made the core of REST Commander as an easy to use standalone library. We added 15+ new features, rewritten 70%+ of the code, with 90%+ test coverage for confident usage and contribution. This time we also structure it better so that most internal development can be directly made here.

Watch Parallec in Action<a name="demos"></a>

[Watch Demo](https://www.youtube.com/watch?v=QcavegPMDms"Parallec demo - Click to Watch!"): Parallec Aggregates 100 websites status to elastic search and visualized with 20 lines of code.

<a title="Click to Watch HD version in Youtube" href="https://www.youtube.com/watch?v=QcavegPMDms"><img alt="20 lines parallec to elastic search demo" src="http://www.parallec.io/demos/elastic-web100-v3.gif" /></a>

Watch Demo on HTTP Calls on 8000 Servers: 8,000 web server HTTP response aggregation to memory in 12 seconds / to ElasticSearch in 16 seconds.

[Watch Ping Demo](https://www.youtube.com/watch?v=9m1TFuO1Mys"Parallec Ping vs FPing demo - Click to Watch!"): Parallec is 2x Speed of best-efforted tuned FPing with same accurate results and pings 8000 servers within 11.1 seconds, details check here.

<a title="Click to Watch HD version in Youtube" href="https://www.youtube.com/watch?v=9m1TFuO1Mys"><img alt="parallec pings 8000 servers in 11.1 seconds" src="http://www.parallec.io/demos/parallec-vs-fping-v1.gif" /></a>

Performance

Note that speed varies based on network speed, API response time, the slowest servers, timeout, and concurrency settings.

HTTP

We conducted remote task execution API on 3,000 servers with response aggregated to elastic search, visualized within 15 seconds, by writing 25 lines of code.

With another faster API, calls to 8,000 servers in the same datacenter with response aggregated in memory in 12 seconds.

Ping

Parallec 2.2 seconds vs FPing 4.5 seconds on 1500 servers. Parallec is 2x the speed of FPing (after best-effort tuning : -i 1 -r 0 v3.12) of pinging 1500 servers while getting the same ping results. Parallec pings 8000 servers within 11.1 seconds with breeze.

As usual, don't rely on these numbers and perform your own benchmarks.

Compare Parallec vs REST Commander vs ThreadPools+Async Client<a name="compare"></a>

In Parallec, you may handle response either in Worker (before aggregation: in parallel) or in Manager (after aggregation: single thread). Read More..

For more related work review, please visit here.

FeaturesParallecREST CommanderThread Pools + Async Client
Embedded library with intuitive builder pattern interface<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Ready to use application with GUI wizard based request submission and response aggregation<img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Simple concurrency control not limited by thread size<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Immediate response handler without waiting all response return<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" >
Capacity aware task scheduler and global capacity control<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Total freedom of response processing and API aggregation: Pluggable and generic response handler and response context<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
1 line plugin to enable SSL Client auth<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
90% Test Coverage<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Load target hosts from CMS query, JSON Path, text, list, string from URL/local<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Task level concurrency and orchestration for Async APIs: auto polling task progress<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Task level configuration on timeout and replacing Async HTTP Client<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Async and sync task control with progress polling and cancellation<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Scalable Parallel SSH with password and key based login<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Proven scalability and speed on 100,000+ target hosts in Production environment<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Generic request template with variable replacement for sending different requests to same/different target hosts<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Scalable Ping with Retries<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Scalable TCP/UDP with idle timeout<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Flexible handler location at either worker (in parallel) or manager thread<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Out-of-the-box two-level response aggregation on status code<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Configurable response log trimming on intervals<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >
Cancel task on a list of target hosts<img alt="Parallec-logo" src="http://www.parallec.io/images/yes.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" ><img alt="Parallec-logo" src="http://www.parallec.io/images/no.png" >

Plugins

SSL Client Auth Plugin

Change Log

Contributors

We deeply thank all contributors for their effort.

Authors

Parallec is served to you by Yuanteng (Jeff) Pei and Teng Song, Cloud Infrastructure & Platform Services (CIPS) at eBay Inc. (original authors)

Credits & Acknowledgement

Contributions

<div style="text-align:right"> <img src="https://github.com/eBay/Winder/blob/master/docs/ebaysf-open-x.png" width="150px"/> </div> Any helpful feedback is more than welcome. This includes feature requests, bug reports, pull requests, constructive feedback, and etc. You must agree on [this](https://github.com/eBay/parallec/blob/master/CONTRIBUTING.md) before submitting a [pull](https://github.com/eBay/parallec/pulls) request.

Licenses

Code licensed under Apache License v2.0

© 2015-2017 eBay Software Foundation