Questions tagged [microsoft-distributed-file-system]

For programming questions about Microsoft's Distributed File System (DFS). (For questions about depth-first search, use the [depth-first-search] tag.)

176 questions
2
votes
2 answers

Does networkx support dfs traversal by label

The networkx dfs_edges() function will iterate over child nodes. As far as I can tell, the http://networkx.lanl.gov/ documentation does not specify a parameter into dfs_edges() to only traverse if edges have a specific label. Also, I looked at…
2
votes
1 answer

JGit: How to use InMemoryRepository to learn about dfs implementations

I want to learn how to implement an alternative dfs backend for jgit and am looking at https://github.com/eclipse/jgit/blob/master/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/InMemoryRepository.java as an example. How ever I am having a hard…
1
vote
4 answers

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 created. This can be run by any Project admin. …
1
vote
1 answer

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?
IAbstract
  • 19,551
  • 15
  • 98
  • 146
1
vote
0 answers

What is the appropriate way to get notified on DFS junction mount in smb server on Mac OS?

When smb volume is mounted, we are getting notification in didMount event callback of NSWorkspace. Same is not consistent for DFS volume mount on browse. Is there a way to detect DFS junction mount on browse of smb shares? We are watching for DFS…
Lakshmi
  • 176
  • 1
  • 10
1
vote
0 answers

Uncaught PHP Exception "Unknown handler dfs" in eZ Publish

I'm getting following error in my eZpublish application while fetching the content using: $wrapper->content->getFieldValue('short_name', $currentLanguage)->text; Error: CRITICAL - Uncaught PHP Exception…
1
vote
1 answer

How to keep track of node depth in DFS without recursion(using a stack)?

This is my code snippet for DFS with out recursion in python: def DFS(graph,start,end): explored=[] queue=[[start]] if start == end: return "done" while queue: path=queue.pop() node=path[-1] if node not in explored: …
shivam thakur
  • 109
  • 10
1
vote
1 answer

Issue passing a variable through a Powershell script

Trying to create a powershell script to perform the following tasks: - Asks for a username to use when creating folder and assigning permissions - Create folder on our NAS with that username for a name - Create DFS folder with same name and assign…
1
vote
3 answers

(java) weird List value in DFS traversal

I was trying to solve a problem: Print all paths of a binary tree, from root to leaf. I wrote the following code, the result is correct: public void printPath(TreeNode root) { printDFS(root, new int[1000], 0); } private void…
1
vote
1 answer

File server in container

I can see there are some implemented Web, DB servers are able to run as a container, it occurred to me that why not be able to implement as a file server with a centralized storage (e.g. SAN) Does anyone try this before, or any recommendation to…
1
vote
0 answers

Directed Graph to DAG

Does anyone have an algorithm for this problem? : "Suppose we have a directed graph with n vertices and we want to make it acyclic. How many sets of edges can we pick so that reversing the edges inside any one of those sets will make the graph…
1
vote
1 answer

Java - Incompatible types: Object cannot be converted to type variable (Stacks in DFS)

I am trying to implement a depth first search for graphs using stacks. However I keep getting errors about a type variable. Here is a section of my code: public Result depthFirstSearchFrom(String vertexId, Predicate< IVertex > pred){ …
1
vote
0 answers

hadoop-HDFS datanodes lost files after restarting HDFS

I have restart HDFS namenodes and datanodes. The ClusterID change so I configured properly, but the storageID and the datanodeUuid I don't know where I can found the properly configuration to detect the files of the DFS. I check df -h And there are…
Asier Gomez
  • 6,034
  • 18
  • 52
  • 105
1
vote
1 answer

java.lang.UnsatisfiedLinkError: org.apache.hadoop.io.nativeio.NativeIO Fails to start DFS

I have installed/configured Hadoop on windows hadoop-2.6.0 I couldn't successfully start "sbin\start-dfs" run command. I am getting below error 16/12/20 13:03:56 FATAL namenode.NameNode: Failed to start namenode. java.lang.UnsatisfiedLinkError:…
1
vote
1 answer

Mounting a Windows DFS share on Debian box

I'm trying to mount a Windows Server 2012 backed DFS, which uses a fully qualified domain name, on my Debian linux machine with limited success. So, what I first tried was: mount -t cifs //mydfsdomain/namespaceroot/sharedfolder /mnt/sharedfolder -o…
1 2
3
11 12