Tagged Questions

DFS is a distributed filesystem from Microsoft

learn more… | top users | synonyms

9
votes
6answers
5k views

Lustre, Gluster or MogileFS?? for video storage, encoding and streaming

So many options and so little time to test them all... I wonder if someone has experiences with distributed file systems for video streaming and storage/encoding. I have a lot of huge video files ...
5
votes
3answers
245 views

Is there any distributed file system which runs on Windows except Hadoop?

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 ...
3
votes
1answer
62 views

Hadoop File Splits : CompositeInputFormat : Inner Join

I am using CompositeInputFormat to provide input to a hadoop job. The number of splits generated is the total number of files given as input to CompositeInputFormat ( for joining ). The job is ...
2
votes
2answers
851 views

How do I setup WebDeploy on Windows 2003 / IIS6?

Webdeploy is an alternative to WebDav, FTP, and FrontPage extensions. It also acts as an alternative to DFS for replicating websites. I found instructions for configuring Windows 2008, but I'm ...
2
votes
4answers
1k views

Should DFS be used to sync wwwroot?

I'm wondering if it's a good idea to use DFS to sync content across a web farm? Does anyone have any experience of this? We've used Robocopy in the past but found it a little patchy and clunky. ...
1
vote
4answers
127 views

Remotely call command line application using Delphi

We're in the process of adding DFS to our network setup and have a slight groggle regarding our automation processes. We currently have a tool that creates the folder structure when a new project is ...
1
vote
1answer
104 views

Can I resolve a DFS path with DirectoryInfo?

Is there a way to resolve a DFS path directly with DirectoryInfo? I found this answer: How can I get an active UNC Path in DFS programatically ... is this really my only option?
1
vote
1answer
590 views

How can I get an active UNC Path in DFS programatically

Given a DFS path how would I know what is the active path it is currently on programatically. For exmaple I have 2 Servers shares as "\\Server1\Folder\" and "\\Server2\Folder\" and it has DFS turned ...
1
vote
1answer
124 views

DFS Locking ASP.Net DLL's through FTP

I am having an ongoing situation where when I try to upload files via FTP that I get an error that the DLL is locked and currently cannot be overwritten. This is only DLLs that this is happeneing to ...
1
vote
1answer
224 views

File sync or replication

What is the easiest way to sync or replicate files over a network? I am running a few servers in a rack for load balancing and wish to mirror content. For example, I have Server 1 where I do my FTP ...
1
vote
2answers
960 views

How do I determine the physical file server for a DFS path?

Given a DFS path, how can I programatically determine which physical file server it maps to?
0
votes
0answers
10 views

DFSRPvt folder Content deletion

Can I delete the contents under the DFSRPvt folder in Windows to free up space. When I searched the net I got the link ...
0
votes
1answer
38 views

Is the spanning tree found by the algorithm DFS always show in preorder?

I'm doing an implementation of the DFS algorithm in c + + to find a spanning tree, the output for a spanning tree using the algorithm DFS is always preorder or is it pure coincidence?.
0
votes
1answer
35 views

Strange behavior with Process.Start and dfsdiag.exe

DfsDiag.exe is located by default in C:\windows\system32. I try to start a process for it with Process.Start but I always seem to get the error The system cannot find the file specified. I don't seem ...
0
votes
1answer
36 views

Lucene index and Windows DFS replication

I want to replicate Lucene index on my web servers periodically. Apart from Solr, can I setup DFS replication on my Windows 2008 servers and use that to replicate my indexes over my load balanced web ...
0
votes
1answer
35 views

What is the number of all possible non-cyclic simple paths in a fully-connected digraph?

Let's say we have a fully connected digraph G with N vertices and M edges. How many edges does the graph have? Is it M = N^2? If we take one vertex and start visiting its neighbours in a ...
0
votes
2answers
79 views

algorithm finding an MST using DFS

I have the following algorithm: For a given (finite undirected simple) graph G=(V,E) with positive weight function on the edges: Run DFS till you find an edge going backwards or DFS stopped. If ...
0
votes
0answers
74 views

DFS - Merge diffrent Directories to one Share

I implement a DFS infrastructure to replicate from 2 master to n-slaves. It is a Hub-and-Spoke scenario. On both server there are Diffrent Folders and they should merge to 1 Directory on the Slave. ...
0
votes
1answer
95 views

Java accessing files in a DFS filesystem via URL

We are testing a system in our development environment where we are moving file system to DFS leaves. Everything is working fine except for when images are trying to be accessed via a URL instead of ...
0
votes
1answer
39 views

How can I create an href link to target a DFS location?

I have a need on an intranet project to create hyperlinks which target files on a DFS location. Now there was a time when for example file://c:\directory\filname.txt would work fine but now I need to ...
0
votes
1answer
439 views

How do I get a token needed for DFS Kerberos authentication?

I'm trying to write a client for consuming DFS (Documentum Foundation Services) and trying to use kerberos for single sign-on. In both Java and C# sample code (productivity layer) that comes with ...
0
votes
1answer
98 views

Is Appfabric w/o SQLServer as configuration repository a bad idea?

I am very interested in the replacment ASP.NET Session Manager portion of Appfabric, and somewhat interested in the distributed cache manager. We don't have a need for its hosting features. While we ...
0
votes
1answer
53 views

Please introduce some distributed file system under windows server 2003

I am doing load balancing under (windows 2003+tomcat 6), and it requires a shared folder which is exposed to each of the tomcat web application instances that may run on different host OSes. THere may ...
0
votes
1answer
285 views

Is Cassandra suitable enough for storing logs in term of disk space usage?

I've a problem storing 50Gb of logs each day in a distributed environment. I looked at Hadoop HDFS but because it has problems running on Windows infrastructure, lack of multi language filesystem API ...
0
votes
2answers
559 views

Finding a UNC Path on another server?

I'm need of some way of finding the UNC Path of a share via a script or command line or even a custom created program. I'm trying to automate deletion of users and the setup is a bit complicated. ...
0
votes
1answer
160 views

How do I remove a folder from Windows Distributed File System?

We recently moved to a webfarm and setup dfs, only to find a beta application was creating files like there was no tomorrow. 1.2 million files were replicated across the farm, and since then we have ...
-1
votes
0answers
8 views

How to get make the DFS algorithm return the path (a list of nodes)?

How to get the result of the DFS algorithm for directed graphs as a list of nodes?