I'm trying the Storm analysis presents here
CallLogCounterBolt.java:4: error: package backtype.storm.tuple does not exist
import backtype.storm.tuple.Fields;
I ran into similar problems with another old Apache Storm tutorial. It turned out to simply be because of the tutorial using deprecated classes from previous versions (0.9.6), while I was using newer ones (1.1.0). Therefore my suggestion is to either look through the newer libraries for corresponding resources in those and changing your library load statements accordingly, or checking that the dependencies that you are using are not masked by similarly named libraries.