English 中文(简体)
Is there any distributed file system which runs on Windows except Hadoop? [closed]
原标题:

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 7 years ago.

I m desperate to find any DFS which supports Windows. The only such DFS is Hadoop HDFS but it s very hard to deploy it other big number of Windows machines because it requires Cygwin + SSH.

Almost all DFS systems work only on Linux and only one (HDFS) runs on Windows.

I would be very grateful if somebody will be able to point me to other DFS with Windows support.

From DFS I need ability to load balance files across DFS nodes, compression and multi language API to work with DFS (I don t need to mount DFS).

最佳回答

There is DFS from Microsoft itself, it s in Windows Server (if it s good or bad I don t know)

问题回答

GPFS is a worthy consideration. It is IBM proprietary, but does have very good scalability, is a full-fledged network file system, and has decent Windows support. NTFS ACLs are preserved, though mapping them to NFSv4 ACLs, which works quite well (so long as you don t shoot your foot off trying to use POSIX permissions as well; chmod will blow away your NFSv4 ACLs.)

Lustre is worth a mention, but Windows support is generally considered very poor and green.

You might want to check out CloudIQ Storage from Appistry.
(They have closed shop.)

It allows you to take the drives in commodity based machines (linux or windows) and have them appear as a single namespace accessible via a REST based API. When you write files to the system, you can define the number of copies you want saved. So if you had 5 machines in your distributed system, you could specify that a file be saved on 2 or 3 (or N) machines for redundancy. If a machine/hard drive crashes, its not an issue, because other machines hold copies of those files.

Check out the Downloads and Community links for a trial version as well as documentation.

Microsoft has something like Azure, but I have not learned more about their solution.

OpenAFS is another DFS solution that runs on Windows.





相关问题
Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Programmatically detect Windows cluster configuration?

Does anyone know how to programatically detect that a Windows server is part of a cluster? Further, is it possible to detect that the server is the active or passive node? [Edit] And detect it from ...

get file icon for Outlook appointment (.msg)

I ve read Get File Icon used by Shell and the other similar posts - and already use SHFileInfo to get the associated icon for any given extension, and that works great. However, Outlook uses ".msg" ...

Identifying idle state on a windows machine

I know about the GetLastInputInfo method but that would only give me the duration since last user input - keyboard or mouse. If a user input was last received 10 minutes ago, that wouldn t mean the ...

Terminating a thread gracefully not using TerminateThread()

My application creates a thread and that runs in the background all the time. I can only terminate the thread manually, not from within the thread callback function. At the moment I am using ...

热门标签