GithubHelp home page GithubHelp logo

c-fs / cfs Goto Github PK

View Code? Open in Web Editor NEW
8.0 8.0 8.0 1023 KB

A network file system interface for building the cloud

License: Apache License 2.0

Go 89.09% Protocol Buffer 7.61% Shell 1.64% Makefile 1.65%

cfs's People

Contributors

missmayo avatar tnachen avatar wangtuanjie avatar xiang90 avatar yichengq avatar yunxing avatar yutongp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

cfs's Issues

user level cache?

use o-direct for write and create user level cache

we want to have better control of buffer caching. for example, we can get hit rate and control the max memory we can use (each client can use).

what will happen while update partial block?

通过 writeBlock(ws io.WriteSeeker, index, bs int64, p []byte),更新一个block。
当len(p)小于block size时,是什么语义?

  1. 算错误,直接返回
  2. 更新前len(p)字节,并重新计算整个block的crc

Remove int32 support

I don't think any modern servers are using int32 anymore. I propose we change all int64 types to int so that we don't need explicit type conversions.

cgo warning msg when run go test under erasure directory

run go test under /erasure

# github.com/c-fs/cfs/erasure
./erasure.go:45:31: warning: unknown attribute '__gcc_struct__' ignored [-Wattributes]
        } __attribute__((__packed__, __gcc_struct__)) *a = v;
                                     ^
./erasure.go:65:31: warning: unknown attribute '__gcc_struct__' ignored [-Wattributes]
        } __attribute__((__packed__, __gcc_struct__)) *a = v;
                                     ^
./erasure.go:79:31: warning: unknown attribute '__gcc_struct__' ignored [-Wattributes]
        } __attribute__((__packed__, __gcc_struct__)) *a = v;
                                     ^
./erasure.go:100:31: warning: unknown attribute '__gcc_struct__' ignored [-Wattributes]
        } __attribute__((__packed__, __gcc_struct__)) *a = v;
                                     ^
./erasure.go:117:31: warning: unknown attribute '__gcc_struct__' ignored [-Wattributes]
        } __attribute__((__packed__, __gcc_struct__)) *a = v;
                                     ^
5 warnings generated.
# github.com/c-fs/cfs/erasure
clang: warning: argument unused during compilation: '-pthread'
# github.com/c-fs/cfs/erasure
clang: warning: argument unused during compilation: '-pthread'

@yunxing could you take a look?
And close this issue if we don't need to worry about it.

on Mac with:

Apple LLVM version 6.0 (clang-600.0.54) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin14.3.0
Thread model: posix

readBlock function logic

readBlock(rs io.ReadSeeker, p []byte, index, bs int64), should return err when len(p) < the block size ?

disk.ReadAt not return EOF

disk.WriteAt("cfs0/newfile", []byte("123"), 0)

buf := make([]byte, 3)
disk.ReadAt("cfs0/newfile", buf, 0)  return 3, nil
disk.ReadAt("cfs0/newfile", buf, 3)  return 0, nil   // actual expected 0, io.EOF?

When disk.Readat wrap to io.Reader interface, then as a read param for io.Copy, it will dead loop.

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.