NetApp Interview Question for Software Engineer / Developers






Comment hidden because of low score. Click to expand.
1
of 1 vote

Reader Writer synch problem!!!

- sg May 23, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Now you are talking. You are asking bullshit questions before.

- Anonymous February 23, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Hi,
I can verify all the questions raised by ON are true. I recently got a reject from netapp but was asked similar questions. Please do not criticize "ON".

- netappreject April 18, 2010 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

using semaphore I guess.

- Anonymous February 23, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

In accessing a large file, you could potentially stripe its access to multiple threads. For examining directories, you could switch to a single thread, but distribute the load of multiple directories to threads appropriately.

This is how you could potentially create a parallel access filesystem.

- Anonymous March 23, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Writers follow a copy-on-write protocol / or a log-journaling protocol. The moment they modify a file, the modifications are done on a copy of the original file. And the modifications are committed to the original file when there are no readers.
Readers read the file available at the start of their request.

In accessing a large file, you could potentially stripe its access to multiple threads. And for committing the modifications in the log you could wait only till there are no readers of that particular chunk of the file the writer is modifying.

- Anonymous April 12, 2010 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More