Project

General

Profile

Actions

Create and Maintain S3 feature list for compatibility tracking

Summary

Create a detailled page, listing each feature of S3, with the link to the S3 documentation, it's implementation status in Ceph, and links to the code and the tests of this features, would give a better visibility to developpers what's missing, but also to users what's working.

Owners

  • Name (Affiliation)
  • Name (Affiliation)
  • Name

Interested Parties

Current Status

As of now, the documentation page about S3 Api ( http://eu.ceph.com/docs/next/radosgw/s3/ ) is not accurate, and only contains a very brief list of feature, and if it is supported or not.

Detailed Description

The main idea is to maintain a list of S3 Features, with links to the amazon documentation, the status of the ceph implementation, links to the code and the tests that implements it.
A draft page live here : https://github.com/kri5/ceph/blob/wip-s3-compliance-doc/doc/radosgw/s3_compliance.rst
It is divided in multiple parts, which one reflects the Amazon S3 API documentation : http://docs.aws.amazon.com/AmazonS3/...I/APIRest.html . To track the evolution of the API, a static mirror of the web pages is updated on a regular basis and published as soon as a diff shows. A custom script is likely to be needed to get rid of the page cosmetic elements. Based on the diff, someone would have to copy paste the differences so that they can be acted upon later on.
Each part of the documentation is represented by a table, in which we will have the following columns :

- Header (For HTTP Header documentation only)

- Type (For HTTP Request only) -> GET / POST / PUT / DELETE / HEAD / OPTIONS

- Operation (For HTTP Request only)

- Supported -> Yes / No / Partial / N/A

- Code Links -> Links to the implementation of the feature

- Tracker Links -> Links to the http://tracker.ceph.com/ issue matching the implementation

- Tests Links -> Links to the tests related to the feature

For each Operation ( for instance List Multipart Uploads ) the list of parameters should also be listed with a checkbox showing if it is supported or not. A link to a relevant part of the code helps check the actual implementation when it's there and helps implement the missing parameters that should probably be implemented in the same area of the code base.
Bucket restrictions and limitations and other transversal rules / behavior should be listed and matched against code such as the one stating that a bucket name can only start with a number, letter and underscore and highlight that underscore is not allowed by S3 to start a bucket name.
In order to help with the maintenance, the permalink to the table entry matching the S3 feature would have to be inserted as a comment in the code. For instance
// https://github.com/kri5/ceph/blob/wi...ons-on-buckets
Would allow the developer to run the following to quickly find the entry point as well as the history:
git log --stat --patch -S 's3_compliance.rst#operations-on-buckets'

A use case of this list could be:
  • a casual developer sees the list
  • (s)he sees response element KeyMarker of List multipart bucket is missing. Clicks on the link describing it, in the table.
  • it looks achievable and (s)he clicks on the link to the area where it should probably be implemented. Gives it a try and submit a pull request.

As mentionned earlier, this is a draft, and the format might evolve.
Tip: A Very useful plugin for vim to edit rst tables : https://github.com/nvie/vim-rst-tables

Work items

Coding tasks

  1. script to track the S3 api changes
  2. Add tests to s3-tests for unsupported features (https://github.com/ceph/s3-tests)

Documentation tasksEdit section

  1. Create a page which list all S3 Feature
  2. Check S3 feature implementation status in RGW.
  3. For each task, link to the implementation code, and the tests.
  4. Replace http://eu.ceph.com/docs/next/radosgw/s3/ with the new document
  5. mark the entry points of each feature in the code

Updated by Jessica Mack almost 9 years ago · 1 revisions