Coder Social home page Coder Social logo

fpscala2's Introduction

fpscala2

Production-grade todo app REST API in functional scala

This is an effort to create high quality application using FP approach with cats. As this is a learning project, custom code is preferred over existing FP libraries.

Features so far

  • functional modular system
  • layered architecture (dao - service - controller - route)
  • performance: 11k req/sec on my i7 for GET /api/v1/items
  • configuration from multiple sources (including --help command line parameter)
  • pure data access layer based on JDBC
  • pure JDBC transaction management
  • separate thread pool for JDBC code
  • quality JSON handling and validation (with readable messages, including reason, line and column)
  • input validation (using Validated)
  • quality error handling (error classification, REST error messages)
  • pure logging
  • structured audit logging
  • data access layer tests using embedded postgres
  • acceptance tests using embedded postgres
  • packaging and dockerization. Try it now: docker run --rm scf37/fpscala2 --help

Architecture

Layers

Typical multi layer architecture consisting of:

  • data access layer (DAO)
  • service layer (busines logic, intended to be called from within application)
  • controller layer (includes transaction boundary, intended to be exposed to external clients via REST API)
  • route layer (converts incoming HTTP request to controller call)
  • server layer (HTTP server)

Effects

Effect is an abstraction of some computation. Every effect can be created from computation definition, usually function (lifted) and at some time later can be run, extracting computation result (evaluated)

Application uses three types of effects:

  • Generic effect F[_].
    • This is generic F used for asynchonous code with lazy evaluation, e.g. cats IO or monix Task
  • Abstract database effect DbEffect[_] concrete database effect SqlEffect[F[_], ?]
    • It wraps function java.sql.Connection => T. Usual synchronous database code takes this form. Instance of java.sql.Connection is needed to evaluate this effect.
  • application initialization effect I[_]
    • it wraps component initialization code. It is lazy so components will only be created on demand and caches its result to produce singletons

Modules

Modules system used can be seen as extension of well-known cake pattern keeping its strengths of ability to override any instance or to get any instance from assembled application.

In addition, it supports composition, precise explicit dependency management and lazy evaluation.

TODOs

  • Immutable in-memory dao using StateT
  • request context (including requestId for logging) using Kleisli[F, Context, ?] instead of F
  • application statistics: query and transaction execution timings. Finagle also provides request timing stats, make it more explicit somehow?
  • delayed logging - delay logging evaluation till end of request processing to decide log level based on response (e.g. enable debug logging for failed requests only)
  • find better way to manage Application effects (3 seems to be a bit high)
  • add scalacheck?
  • add scalafmt?
  • consider moving to http4s?
  • use Resource for I[_]? Not sure I should care about proper shutdown - well-written application should behave well in case of forced termination.
  • Add request flow control: timeouts, parallel request count limit
  • cancellation on timeout? Does it make sense on JDBC? Will it improve behavior of overloaded app?

fpscala2's People

Contributors

scf37 avatar

Watchers

 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.