summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-12-19[test] account for first timers in outlier calculationdrebs
When it's the first time a test is run, there'll not be previous results to compare against. The script that calculates outliers was not prepared for this situation. This commit just fixes that.
2017-12-19[doc] small improvements in server docdrebs
2017-12-19[test] use producer in all fs backend testsdrebs
2017-12-19[benchmarks] multiply by 10 the number of blobs in fs backend benchmarksdrebs
2017-12-18[doc] add write_blob exceptions to interface docstringdrebs
2017-12-18[feature] cache user quota on blobs filesystem backenddrebs
Closes: 9016
2017-12-13[refactor] use producer/consumer on write/read_blob respectivellydrebs
2017-12-13[test] fix incoming test with the new async blobs backenddrebs
2017-12-13[bug] handle path exceptions using twisted failuresdrebs
2017-12-13[bug] fix exception catching with new blobs backend interfacedrebs
2017-12-13[doc] improve documentation on IBlobsBackenddrebs
2017-12-13[refactor] make read_blob() return a deferreddrebs
2017-12-13[refactor] make set_flags() return a deferreddrebs
2017-12-13[refactor] make get_flags() return a deferreddrebs
2017-12-13[refactor] make get_tag() return a deferreddrebs
2017-12-13[refactor] make get_total_storage() return a deferreddrebs
2017-12-13[refactor] make list_blobs() return a deferreddrebs
2017-12-13[refactor] make count() return a deferreddrebs
2017-12-13[refactor] make get_blob_size() return a deferreddrebs
2017-12-13[refactor] make delete_blob() return a deferreddrebs
2017-12-13[refactor] make blobs backend delete_blob() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend write_blob() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend set_flags() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend read_blob() agnostic of twisted.webdrebs
2017-12-13[refactor] make blobs backend list_blobs() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend get_flags() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend count() agnostic of twisted.web requestsdrebs
2017-12-13[refactor] make blobs backend get_tag() agnostic of twisted.web requestsdrebs
2017-12-13[feature] add an exception for blobs not founddrebs
2017-12-13[refactor] remove unneeded classdrebs
2017-12-13[doc] add api doc for blobs backenddrebs
2017-12-12[bug] use namespace when uploading blobsdrebs
2017-12-12[test] fix bug in blobs fs backend benchmark testdrebs
The new benchmark test for blobs fs backend was rebased from a merge request in which it was written using the new interface for blobs backend. After rebase, the test was not reverted to old interface, and was just failing bad. This commit fixes it.
2017-12-11[benchmark] add read/write benchmark for blobs fs backenddrebs
2017-12-05[bug] transfer maximum allowed number of blobsdrebs
-- Closes: #9004
2017-12-04[bug] escape tag and sizeVictor Shyba
It was generating spaces, causing split to fail sometimes.
2017-12-04[style] fixes from code reviewVictor Shyba
2017-12-01[feature] stream blobs from a CooperativeTaskVictor Shyba
Adds a CooperativeTask to stream blobs to client as the transport is able to handle it, pausing and resuming as necessary. -- Related: #8809
2017-12-01[feature] adds a stream downloaderVictor Shyba
First version, still missing consumer/producer model and some tweaks, but working. -- Related: #8809
2017-12-01[feature] add implementation for get_blob_sizeVictor Shyba
2017-12-01[test] init StreamingResource on test_blobs_serverVictor Shyba
-- Related: #8809
2017-12-01[refactor] get namespace as an optional query argVictor Shyba
2017-12-01[bug] missing self parameter on class methodVictor Shyba
2017-12-01[feature] add a streaming resourceVictor Shyba
-- Related: #8809
2017-12-01[style] fix typoVictor Shyba
2017-11-30[style] remove public get/set blob priority methodsdrebs
2017-11-30[bug] avoid overwriting priorities on sync status batch updatedrebs
2017-11-30[style] some sugar for setting the priorityKali Kaneko
2017-11-30[feature] add priorities for blob transfersdrebs
Closes: #8691
2017-11-29[feature] add bandwidth throttling to the clientdrebs
Intercept the creation of the protocol factory in the HTTP connection pool to use twisted.protocols.policies.ThrottlingFactory and control the incoming and outgoing bandwidth. The factory only controls one connection, so when throttling we limit the number of connections of the pool to one per host. This way, throttling happens in a per-host basis. Closes: #8931