Guest User

Untitled

a guest
Jan 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. (defn names-per-domain [out usdir]
  2. (let [us (us-poi usdir)]
  3. (?<- out [!domain ?count]
  4. (us :#> 20 {2 !name 19 !url})
  5. (domain !url :> !domain)
  6. (:distinct true)
  7. (c/count :> ?count)
  8. (:sort ?count))))
  9.  
  10. ===
  11.  
  12. 11/03/30 15:36:11 INFO util.Util: using default application jar, may cause class not found exceptions on the cluster
  13. 11/03/30 15:36:11 INFO flow.MultiMapReducePlanner: using application jar: /home/aaron/workspace/canonicalize-cascalog/lib/cascading1.1-1.1.3-20100308.145053-4.jar
  14. cascading.flow.PlannerException: could not build flow from assembly: [[7d4e4daf-f642-4de7-b5a...][sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)] unable to resolve sorting selector: [{1}:'?count__gen331'], with incoming: [{2}:'!domain__gen330', '!__gen332']] (NO_SOURCE_FILE:0)
  15. canonicalize-cascalog.uspoi=> (load-file "src/clj/canonicalize_cascalog/uspoi.clj")
  16. #'canonicalize-cascalog.uspoi/chris
Add Comment
Please, Sign In to add comment