Skip to content

Commit

Permalink
release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erickpintor committed Nov 17, 2017
1 parent 83c3941 commit 809e3a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2.0.0-SNAPSHOT
2.0.0
* Improvements for I/O bounded parallelism
* Replace option "max-requests-per-endpoint" with "concurrent-streams"

1.0.0
* First official release
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,17 +326,13 @@ Default: 50 records per batch.
### Managing concurrency
Concurrency is configured using the `--max-requests-per-endpoint` parameter.
Concurrency is configured using the `--concurrent-streams` parameter.
In practice, the number of concurrent requests is the number of
`max-requests-per-endpoint` multiplied by the number of endpoints configured by
the `endpoints` parameter.
A large number of concurrent requests can cause timeouts. When timeouts happen,
A large number of concurrent streams can cause timeouts. When timeouts happen,
the import tool will retry failing requests applying exponential backoff to each
request.
Default: 4 concurrent requests per endpoint.
Default: the number of available processors * 2
### Backoff configuration
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lazy val root = (project in file("."))
.configs(E2ETest)
.settings(
name := "faunadb-importer",
version := "1.0.1-SNAPSHOT",
version := "2.0.0",
scalaVersion := "2.12.2",
scalacOptions ++= Seq(
"-unchecked",
Expand Down

0 comments on commit 809e3a8

Please sign in to comment.