Coder Social home page Coder Social logo

flow's Introduction

Flow Build Status

Flow allows developers to express computations on collections, similar to the Enum and Stream modules, although computations will be executed in parallel using multiple GenStages.

Here is a quick example on how to count words in a document in parallel with Flow:

File.stream!("path/to/some/file")
|> Flow.from_enumerable()
|> Flow.flat_map(&String.split(&1, " "))
|> Flow.partition()
|> Flow.reduce(fn -> %{} end, fn word, acc ->
  Map.update(acc, word, 1, & &1 + 1)
end)
|> Enum.to_list()

See documentation for Flow or José Valim's keynote at ElixirConf 2016 introducing the main concepts behind GenStage and Flow.

Installation

Flow requires Elixir v1.7 and Erlang/OTP 22+. Add :flow to your list of dependencies in mix.exs:

def deps do
  [{:flow, "~> 1.0"}]
end

Usage in Livebook

Flow pipelines starts several processes linked to the current process. This means that, if there is an error in your Flow, it will shut down the Livebook runtime. You can avoid this in your notebooks in two different ways:

  1. Use Flow.stream(flow, link: false) to explicitly convert a Flow to a non-linked stream. You can them invoke Enum and Stream functions regularly:

    Flow.from_enumerable([1, 2, 3])
    |> Flow.map(& &1 * 2)
    |> Flow.stream(link: false)
    |> Enum.to_list()
  2. By trapping exits once before the Flow computation starts:

    Process.flag(:trap_exit, true)

License

Copyright 2017 Plataformatec
Copyright 2020 Dashbit

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

flow's People

Contributors

josevalim avatar lackac avatar zeeshanlakhani avatar adrianomitre avatar wojtekmach avatar jeroenvisser101 avatar kianmeng avatar lmarlow avatar emilsoman avatar asummers avatar whatyouhide avatar arkham avatar mhinz avatar neilw avatar philss avatar costaraphael avatar rkushnir avatar simonmcconnell avatar sirwerto avatar sunaku avatar tschmidleithner avatar supersimple avatar optikfluffel avatar wpcarro avatar wrgoldstein avatar axelson avatar isaacsanders avatar husseinmorsy avatar gj avatar davidsulc avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.