Skip to content
Snippets Groups Projects
index.html 2.67 KiB
Newer Older
<br/> 
<hr/> 
<a name="net"></a> 
<h3>Networking Libraries</h3>
Fons Rademakers's avatar
Fons Rademakers committed
A new class TS3WebFile has been introduced. The new class TS3WebFile is an
extension of TWebFile and belongs to the net module.
The name TS3WebFile reflects better the fact that this solution
is intended to be generic to several S3 servers and not limited to Amazon's,
in addition to the fact that it actually extends the capabilities of TWebFile.
</p>
<p>
Compared to the current support of S3 in ROOT (basically the class TAS3File),
Fons Rademakers's avatar
Fons Rademakers committed
the modifications include the improvements below:
</p>
<ul>
<li>
   add support for using HTTPS : you can use different schemas for specifying
   the underlying transport protocol to use "s3:", "s3http:", "s3https:" 
   ["s3" uses HTTPS]. The current schema, namely "as3:", is supported for
   backwards compatibility.
</li>
<li>
   extend support for other S3 service providers that do not offer the
   virtual hosting functionality (currently only Amazon offers this).
</li>
<li>
   support the possibility of specifying user credentials on a per-file
   basis or for all S3 files via environment variables.
</li>
<li>
   honor the "NOPROXY" option when specified in the constructor.
</li>
<li>
   exploit the capability of the S3 file server to provide partial
   content responses to multi-range HTTP requests.
</li>
</ul>
<p>
Here are some examples of usages from the end user perspective:
</p>
<pre>
Fons Rademakers's avatar
Fons Rademakers committed
   TFile* f = TFile::Open("s3://s3.amazonaws.com/mybucket/path/to/my/file", "AUTH=&lt;accessKey&gt;:&lt;secretKey&gt; NOPROXY")
   TFile* f = TFile::Open("s3://s3.amazonaws.com/mybucket/path/to/my/file")   // Uses environmental variables for retrieving credentials
</pre>
<p>
Limitations:
</p>
<ul>
<li>
   we cannot efficiently detect that a S3 server is able to respond to
   multi-range HTTP GET requests. Some servers, such as Amazon's, respond
   to such kind of requests with the whole file contents. Other servers,
   such as Huawei's, respond with the exact partial content requested.
   Therefore, I added the possibility of configuring the behavior via the
   ROOT configuration file: the identity of the servers known to correctly
   support multi-range requests is configurable. If the server is known to
   support this feature, ROOT will send multi-range requests, otherwise it
   will issue multiple single-range GET requests, which is also the default
   behavior.
</li>
<li>
   currently the virtual host syntax:
      "s3://mybucket.s3.amazonaws.com/path/to/my/file"
   is not supported but can be added if this is considered useful.
</li>
</ul>
Fons Rademakers's avatar
Fons Rademakers committed
<p>
The TAS3File class will be removed and should not have been used directly by
users anyway as it was only accessed via the plugin manager in TFile::Open().
</p>