Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] Jetty, HDFS and PHP

that link shows the use of CGI on jetty 6 to access php.

Jetty 9 has a FastCGI layer, and there are many projects using to wire up PHP already.

As for accessing an HDFS directory, you could either mount it to your filesystem to serve as a regular filesystem.
Or you can install an HDFS URL handler for your Java environment, at which point accessing something like "hdfs:/www" would be possible everywhere in Java.


Joakim Erdfelt / joakim@xxxxxxxxxxx

On Tue, Mar 14, 2017 at 12:02 PM, Scott Morgan <scott@xxxxxxxxxx> wrote:
Hi,

  Has anyone developed code to host static files directly off of HDFS like this;

But instead of using a local directory (i.e.);
/var/www
Using a HDFS directory (i.e.);

(hdfs:)   /www

Just Curious today :)
--

_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


Back to the top