up vote 12 down vote favorite
8
share [g+] share [fb]

What characteristics do you find more valuable in a software architect? How to evaluate one?

For example:

  • Is in-depth knowledge of a stack more important than a good overall knowledge of different stacks?
  • How important are coding skills in comparison to other skills?
  • How important are documentation skills considering agile methodologies?
link|improve this question

65% accept rate
feedback

14 Answers

up vote 19 down vote accepted

A good software architect is able to

  • modularize / reduce dependencies
  • distinguish concepts from technology
  • think on different levels of abstraction
  • understand and formalize user requirements
  • implement (design & code) a proposed architecture

Regards, tamberg

link|improve this answer
Great summary. +1 – Jas Panesar May 9 '09 at 20:06
Thank you. Regards – tamberg May 11 '09 at 14:32
This doesn't actually answer the question though, does it (at least in the case of an interview candidate)? How do you actually evaluate whether the candidate fulfils these criteria? – oxbow_lakes Jul 3 '09 at 12:24
feedback

Make sure they are not an "Architecture Astronaut"

I've been involved in many a project where the architect has got to where he is by talking in acronyms and over complicating the solution so as to obfuscate their shortcomings from everyone else.

A good architect will above all stick to Einstein's principle:

"Make everything as simple as possible, but not simpler."

link|improve this answer
feedback

I think it depends on how large and/or mature your team is. Obviously the architect needs to have an extensive development background, but does it matter which languages? They need to be strong in buzzwords, not that they follow every new fad, but so they can separate the wheat from the chaff. Do they need extensive project management experience? If you have a large mature team with a project manager or scrummaster, then no, probably not.

In addition, they also need to know the business. A software architect needs to be the interface not between business users and developers (that's what your PMs are for) but rather between the business processes and the codebase. It's an inelegant analogy between PM duties and architect duties, but your SA needs to make sure that your code fits what the business needs.

Of course, on smaller teams your SA is going to be functioning like your PM anyway, so they will need to be cognizant of what your users require at a level other SAs might not, so perhaps his analysis and people skills are going to be paramount?

So, to summarize:

  • extensive technical skill
  • hip to the latest fads, with the wherewithal not to follow every one
  • understanding of project methodology
  • understanding of the business needs and processes
  • understanding of documentation and markup languages (UML, etc.)
link|improve this answer
feedback

1) Has to be a good coder
2) Better to have a wider knowledge of tools and techniques rather than a narrow one
3) Has to be able to communicate well both in writing and in speech

IMHO.

link|improve this answer
feedback

The most important thing to me is that the candidate not only is a good coder, but has at least coded until recently.

Hopefully your company will let architects code as well and hopefully your architect will want to lead by example, coding as appropriate.

Asking the candidate what would the ideal work duties be should get coding as part of the answer.

link|improve this answer
feedback

For an architect, I would say the most important two things are:

  • They are smart.
  • They get stuff done.

[ref: Joel's Guerrilla Guide to Interviewing]

Apart from those, you want someone who has programmed relatively recently, and who can learn new languages, methodologies, skills, etc, easily.

This will ensure that they are flexible enough to adapt and change as the software they're architecting invariably will.

link|improve this answer
feedback

I'd look to knowledge about tools, such as the benefit of unit testing and version control. It's really hard to judge how good someone is with the "big picture", but good answers on these topics should be a symptom of an approach that is beneficial to being a software architect.

link|improve this answer
feedback

One of the most important skills is that they understand and can relate to people in the business. Architecture decisions, even more than coding decisions, are influenced by the priorities and requirements of the organisation.

Then, since the architect has to communicate their designs to other people, communication and people skills within their team are crucial.

Also useful are rapid prototyping skills because prototyping is one of the best ways to communicate any programming concept - both to developers and business users.

link|improve this answer
feedback

Some of more essential characteristics of ideal software architect are:

  • He should be a good programmer.
  • Have experience with many languages from different paradigms.
  • Not stuck to specific technology or methodology or trend (you will be dissatisfied with very determined people).
  • Good team player (probably the most essential). Should have mastered written and oral communication skills and be social.
  • If you see something like IQ in his CV or see that guy show-off that he is smart, you will be dissatisfied, because you hiring very self-oriented guy, that does not see nothing outside himself.
link|improve this answer
feedback

Look for a blogger! A good blogger should be an excellent communicator (especially with the written word). Most bloggers also keep pretty up to date with the industry they're blogging about, meaning they'll be aware of what technologies and tools are available to solve a specific problem. A great blogger will also have a large body of work on their blog for you to evaluate if their skills and/or personality will fit within your organization.

link|improve this answer
feedback
  • Knows the problem domain (and the problems working in that domain poses)
  • Knows technologies that can be used within that problem domain to offer a solution
  • Can effectively reason about and come up with an explanation why the set of concepts and technologies will lead to a soultion to the problem

my 2 cents

link|improve this answer
feedback

There is great deal of info in MSDN Architecture Center. Exactly these kind of questions are being asked there.

Another interesting post The Title "Architect" is illegal in Texas and may be as well in other states.

link|improve this answer
feedback

A few things to look for:

  • Quick ability to learn. This person will have to learn your coding style, department processes, and so much more. Plus, as programs grow and change there are always new and better ways to do things. Often times this has to do with changes in the languages. All of this needs to be learned.
  • Test Driven Developer. Bugs are a problem. If someone has a test driven development mentality they will, hopefully, produce less bugs in the final product because the bugs will be caught in testing.
  • Concerned with producing excellent code. This is different that producing quality code. This is the mentality to always try to produce a better product. This includes trying to produce higher quality code than previously, trying to find ways to increase performance, concern with meeting the customers needs, and so much more.
link|improve this answer
These are things you should expect from any developer, the question was about an architect. – Sklivvz Oct 13 '08 at 8:27
feedback

A person who will pick the right tool for the job.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.