Home
Softono

Bigslice

Open source Apache-2.0 Go
556
Stars
35
Forks
24
Issues
24
Watchers
3 years
Last Commit

 About Bigslice

A serverless cluster computing system for the Go programming language

Platforms

Web Self-hosted

Languages

Go

Need Help Installing Bigslice?

We provide expert installation service for this software. Our team will install, configure, and secure Bigslice on your server. plans start at just $30.

Bigslice

Bigslice is a serverless cluster data processing system for Go. Bigslice exposes composable API that lets the user express data processing tasks in terms of a series of data transformations that invoke user code. The Bigslice runtime then transparently parallelizes and distributes the work, using the Bigmachine library to create an ad hoc cluster on a cloud provider.

Developing Bigslice

Bigslice uses Go modules to capture its dependencies; no tooling other than the base Go install is required.

$ git clone https://github.com/grailbio/bigslice
$ cd bigslice
$ GO111MODULE=on go test

If tests fail with socket: too many open files errors, try increasing the maximum number of open files.

$ ulimit -n 2000