minio/vendor/github.com/djherbis/atime
poornas a3e806ed61 Add disk based edge caching support. (#5182)
This PR adds disk based edge caching support for minio server.

Cache settings can be configured in config.json to take list of disk drives,
cache expiry in days and file patterns to exclude from cache or via environment
variables MINIO_CACHE_DRIVES, MINIO_CACHE_EXCLUDE and MINIO_CACHE_EXPIRY

Design assumes that Atime support is enabled and the list of cache drives is
fixed.
 - Objects are cached on both GET and PUT/POST operations.
 - Expiry is used as hint to evict older entries from cache, or if 80% of cache
   capacity is filled.
 - When object storage backend is down, GET, LIST and HEAD operations fetch
   object seamlessly from cache.

Current Limitations
 - Bucket policies are not cached, so anonymous operations are not supported in
   offline mode.
 - Objects are distributed using deterministic hashing among list of cache
   drives specified.If one or more drives go offline, or cache drive
   configuration is altered - performance could degrade to linear lookup.

Fixes #4026
2018-03-28 14:14:06 -07:00
..
atime_darwin.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_dragonfly.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_freebsd.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_linux.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_nacl.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_netbsd.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_openbsd.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_plan9.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_solaris.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
atime_windows.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
LICENSE Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
README.md Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00
stat.go Add disk based edge caching support. (#5182) 2018-03-28 14:14:06 -07:00

atime

GoDoc Release Software License Build Status Coverage Status Go Report Card Sourcegraph

Usage

File Access Times for #golang

Looking for ctime or btime? Checkout https://github.com/djherbis/times

Go has a hidden atime function for most platforms, this repo makes it accessible.

package main

import (
  "log"

  "github.com/djherbis/atime"
)

func main() {
  at, err := atime.Stat("myfile")
  if err != nil {
    log.Fatal(err.Error())
  }
  log.Println(at)
}

Installation

go get github.com/djherbis/atime