ANN: Clojars one-off deploy tokens; emails on deployment

2022-03-18 Thread Toby Crawley
Howdy friends! We recently made some improvements to Clojars relating to deployment and security. If you don't ever deploy projects to https://clojars.org, you can stop reading here. ## Single-use deploy tokens You can now create a deploy token that can only be used to deploy a s

Re: Clojars deployment failing

2020-02-23 Thread Aaron D.
Thanks for working on this Toby and for the detailed post-mortem. Looks like that one was a tricky tackle. On Saturday, February 22, 2020 at 6:12:48 PM UTC-6, Toby Crawley wrote: > > A further followup - we believe we have resolved the issue. Please see > https://github.com/clojars/clojars-web/

Re: Clojars deployment failing

2020-02-22 Thread Toby Crawley
A further followup - we believe we have resolved the issue. Please see https://github.com/clojars/clojars-web/issues/744 for the details, and please comment there if you are still seeing issues with 400 Bad Request responses when deploying. I'd like to thank Aaron Dixon, Ambrose Bonnaire-Sergeant,

Re: Clojars deployment failing

2020-02-22 Thread Toby Crawley
Just to follow up on this: we still haven't been able to figure out the cause, but have collected some data at https://github.com/clojars/clojars-web/issues/744. If other folks are experiencing the issue, plus let us know on that issue or in #clojars on the Clojurians slack. - Toby On Thu, Feb 20

Re: Clojars deployment failing

2020-02-20 Thread Alan Thompson
I just did a `lein deploy clojars` and it worked fine. Alan On Wed, Feb 19, 2020 at 8:40 PM Aaron D. wrote: > Whelp -- Just another data point -- I got two releases through just now > successfully. So this is intermittent or something was fixed. > > On Wednesday, February 19, 2020 at 10:24:47 P

Re: Clojars deployment failing

2020-02-19 Thread Aaron D.
Whelp -- Just another data point -- I got two releases through just now successfully. So this is intermittent or something was fixed. On Wednesday, February 19, 2020 at 10:24:47 PM UTC-6, Aaron D. wrote: > > Hey Toby > > > What do you mean by "I disabled :checksum checking for clojars"? > > I ad

Re: Clojars deployment failing

2020-02-19 Thread Aaron D.
Hey Toby > What do you mean by "I disabled :checksum checking for clojars"? I added `:checksum :ignore` to :repositories in profile.clj -- per lein example here > $ lein version Le

Re: Clojars deployment failing

2020-02-19 Thread Toby Crawley
Also, what version of lein are you using? What is the output of `lein version`? On Wed, Feb 19, 2020 at 8:14 PM Toby Crawley wrote: > > Howdy Aaron: > > We've had a report from another user on Slack of this same issue, but > I haven't been able to recreate it. > > What do you mean by "I disabled

Re: Clojars deployment failing

2020-02-19 Thread Toby Crawley
Howdy Aaron: We've had a report from another user on Slack of this same issue, but I haven't been able to recreate it. What do you mean by "I disabled :checksum checking for clojars"? What version of java are you using? What is the output of java -version? Thanks! - Toby -- "Arrogance is quoti

Re: Clojars deployment failing

2020-02-16 Thread Aaron Dixon
update, I disabled :checksum checking for clojars and was able to get a release thru. On Sun, Feb 16, 2020 at 6:26 PM Aaron D. wrote: > My gpg creds are as usual (and verified) and I'm deploying in standard > fashion but my last attempt at lein deploy fails with 400/Bad Request at > the very ene

Clojars deployment failing

2020-02-16 Thread Aaron D.
My gpg creds are as usual (and verified) and I'm deploying in standard fashion but my last attempt at lein deploy fails with 400/Bad Request at the very ened trying to retrieve maven-metadata.xml -- is anyone / has anyone seen this? My last deploy was 10 days ago... The log to error: Created

Clojars deployment policy change

2016-12-30 Thread Toby Crawley
Clojars now rejects deployments where the group name and artifact name match a project that is already available from Maven Central. # Why? Artifact resolution tools (used by Leiningen, Boot, Maven, etc) iterate through a list of repositories, asking each for an artifact until it is found. So if

Re: Automate Lein-Exec Deployment

2015-11-03 Thread Daniel Compton
Hi Asim You can add the lein-exec plugin to the :plugins section in your project.clj, people who don't have it in their m2 will download it like any other dependency. Your use case may be better handled by building an Uberjar. What you're describing is one of the primary use cases for using JARs,

Automate Lein-Exec Deployment

2015-10-30 Thread Asim Jalis
I have been using lein-exec a lot for writing quick Clojure scripts. I like it because: - It lets me use deps to pull in dependencies from the REPL. - It makes it easy to get started without creating a lot of stuff. The problem I am running into is this. I want to share these scripts with people

Part 6 of building a Compojure address book: Deployment

2015-01-17 Thread Jarrod Taylor
The last installment in a blog series covering developing and testing a Compojure web app. This wraps it up by address deployment. http://www.jarrodctaylor.com/posts/Compojure-Address-Book-Part-6/ -- You received this message because you are subscribed to the Google Groups "Clojure"

Re: Deployment choices WAR or lein or java -jar for web apps?

2014-10-28 Thread David Powell
Oh I also embed the jre in the installer, so everything is completely standalone (see < http://www.oracle.com/technetwork/java/javase/jdk-8-readme-2095712.html#redistribution >) On Tue, Oct 28, 2014 at 10:52 AM, Colin Yates wrote: > Thanks for the pointer to innosetup. > > On 28 October 2014 09

Re: Deployment choices WAR or lein or java -jar for web apps?

2014-10-28 Thread Colin Yates
Thanks for the pointer to innosetup. On 28 October 2014 09:39, David Powell wrote: > I use uberjar + procrun + innosetup. It works great. Starts and stops > fairly quickly. And you don't need to worry that something somewhere is > misconfigured in the Tomcat. > For dev, I just use "lein run" +

Re: Deployment choices WAR or lein or java -jar for web apps?

2014-10-28 Thread Colin Yates
aah, nirvana. On Tuesday, 28 October 2014 09:47:42 UTC, Mikera wrote: > > Ah that one is easy - while I develop and do some testing on Windows I > always deploy on Linux :-) > > I've not used it, but procrun looks like a reasonable choice if you are > constrained to deploying on Windows. > > On

Re: Deployment choices WAR or lein or java -jar for web apps?

2014-10-28 Thread Mikera
Ah that one is easy - while I develop and do some testing on Windows I always deploy on Linux :-) I've not used it, but procrun looks like a reasonable choice if you are constrained to deploying on Windows. On Tuesday, 28 October 2014 17:40:49 UTC+8, Colin Yates wrote: > > Hi Mikera, > > How do

Re: Deployment choices WAR or lein or java -jar for web apps?

2014-10-28 Thread Colin Yates
Hi Mikera, How do you cope with reboots - procrun I guess? On Tuesday, 28 October 2014 09:30:42 UTC, Mikera wrote: > > To keep things simple I have found it easy to use "lein uberjar" and "java > -jar myapp.jar". This removes the need for a separate container / app > server and it is probably t

Re: Deployment choices WAR or lein or java -jar for web apps?

2014-10-28 Thread David Powell
I use uberjar + procrun + innosetup. It works great. Starts and stops fairly quickly. And you don't need to worry that something somewhere is misconfigured in the Tomcat. For dev, I just use "lein run" + nrepl. On Tue, Oct 28, 2014 at 9:30 AM, Mikera wrote: > To keep things simple I have foun

Re: Deployment choices WAR or lein or java -jar for web apps?

2014-10-28 Thread Mikera
To keep things simple I have found it easy to use "lein uberjar" and "java -jar myapp.jar". This removes the need for a separate container / app server and it is probably the easiest choice when you are running an embedded server such as http-kit. Configuration is virtually zero, and this has t

Deployment choices WAR or lein or java -jar for web apps?

2014-10-28 Thread Colin Yates
Hi all, How do you delight the world with your beautiful works of art once you have finished lovingly crafting them from the joy that is Clojure? I have a legacy in J2EE so I use ring uberwar and deploy to a servlet container (Tomcat as it is the most seamless on Windows), but I notice more an

Re: Optimizing lein profile for Heroku deployment

2014-08-26 Thread Lucas Bradstreet
A quick fix would be to increase the repl timeout time: :repl-options {:timeout 12} I believe you can also run the repl with a different profile: e.g. lein with-profile production repl Lucas On 26 August 2014 19:28, Jonathon McKitrick wrote: > I'm able to deploy my project, but 'lein rep

Optimizing lein profile for Heroku deployment

2014-08-26 Thread Jonathon McKitrick
I'm able to deploy my project, but 'lein repl' constantly times out. Yet this profile still loads all dependencies for 'lein repl'. Is there a way to prevent this? {:user {:dependencies [[pjstadig/humane-test-output "0.6.0"] [ring-mock "0.1.5"] [or

need help automating continuous deployment

2014-05-29 Thread Cody Ruby
A colleague of mine owns an established software company and is looking to expand his team for moving an analytics product to the cloud; all new development for automating continuous deployment. Subsequently, he’s asked for my help in getting the word out to those interested in joining him

[ANN] - lein-repack 0.1.0 - Repack your project for deployment and distribution

2014-04-02 Thread zcaudate
lein-repack Repack your project for deployment and distribution <https://github.com/zcaudate/lein-repack#motivation>Motivation lein-repack was written to solve a problem I had with utilities and general purpose libraries. In my experience, clojure libraries are much better when th

Re: Clojure deployment questions w.r.t. jars, clojure source files, compiled class files

2014-01-08 Thread Softaddicts
rimary testing > > > (on build.clojure.org) and packaging - and Clojure plus its contrib > > > libraries are hosted on Maven Central (where they are retrieved > > > primarily by Leiningen into other Clojure projects). > > > > > > > 3) When the clojur

Re: Clojure deployment questions w.r.t. jars, clojure source files, compiled class files

2014-01-08 Thread Dave Tenny
g - and Clojure plus its contrib > > libraries are hosted on Maven Central (where they are retrieved > > primarily by Leiningen into other Clojure projects). > > > > > 3) When the clojure 'compile' function comes into play in your typical > > > clojure pro

Re: Clojure deployment questions w.r.t. jars, clojure source files, compiled class files

2014-01-07 Thread Softaddicts
y by Leiningen into other Clojure projects). > > > 3) When the clojure 'compile' function comes into play in your typical > > clojure project deployments? (vs. :aot targets or other leiningen deployment > > techniques). > > At World Singles, we AOT compile very

Re: Clojure deployment questions w.r.t. jars, clojure source files, compiled class files

2014-01-07 Thread Softaddicts
e it'll > persist. > > > > 2) Why there is no project.clj in the org.clojure jar file? > > > > Clojure itself isn't built with leiningen, hence no project.clj. > > > > 3) When the clojure 'compile' function comes into play in your typical

Re: Clojure deployment questions w.r.t. jars, clojure source files, compiled class files

2014-01-07 Thread Sean Corfield
clojure 'compile' function comes into play in your typical > clojure project deployments? (vs. :aot targets or other leiningen deployment > techniques). At World Singles, we AOT compile very little of our code. We only AOT namespaces that generate Java-compatible classes for situati

Re: Clojure deployment questions w.r.t. jars, clojure source files, compiled class files

2014-01-07 Thread Gary Trakhman
into play in your typical > clojure project deployments? (vs. :aot targets or other leiningen > deployment techniques). > > Any pointers or enlightenment on the above questions appreciated. > I read the clojure "compilation" page, but I haven't quite put together >

Clojure deployment questions w.r.t. jars, clojure source files, compiled class files

2014-01-07 Thread Dave Tenny
l clojure project deployments? (vs. :aot targets or other leiningen deployment techniques). Any pointers or enlightenment on the above questions appreciated. I read the clojure "compilation" page, but I haven't quite put together what that's telling me about *how* to comjpil

Re: Hosting clojure web app ( deployment strategies)

2013-09-23 Thread Antonio Terreno
On Mon, Sep 23, 2013 at 10:52 AM, Michael Klishin < michael.s.klis...@gmail.com> wrote: > > 2013/9/23 Roman Yakovlev > >> So as i plan to make pretty heavy app (say 1000-3000+ hits a day) what >> best strategy i should choose for now ? >> > > As long as you have enough RAM for the app not to swap

Re: Hosting clojure web app ( deployment strategies)

2013-09-23 Thread Waldemar
In my master thesis I used compojure/ring with a jetty adapter. It's a recommender engine that runs completely in memory, so no need for external services calls or DB connections. Deployed it as a jar to a amazon c1.large instance. It is hit with 800+ request per second from 9 to 23 -> 40,320,00

Re: Hosting clojure web app ( deployment strategies)

2013-09-23 Thread Michael Klishin
2013/9/23 Roman Yakovlev > So as i plan to make pretty heavy app (say 1000-3000+ hits a day) what > best strategy i should choose for now ? > As long as you have enough RAM for the app not to swap in/out all the time, 3000 requests per day is child's play for JVM-based services. > What's your

Hosting clojure web app ( deployment strategies)

2013-09-23 Thread Roman Yakovlev
Hi Let's discuss some modern strategies to deploy clojure web app, from easiest to heavy ( for heavy traffic apps). I suggest some ways. 1. Heorku way - the easiest one. I had experience with deploy to heroku it works out of the box

Re: Current state of the art in Web deployment?

2013-08-19 Thread Phil Hagelberg
e to the fact that you are going to want to trampoline to save memory plus avoid the default plugins which place dev dependencies and test directories on the classpath. Plus you end up having to resolve all your dependencies repeatedly for each server in your cluster, which can easily lead to a

Re: Current state of the art in Web deployment?

2013-08-18 Thread James Henderson
Hi John, Building on Ray's answer to use Upstart, I've recently started using a Git-based deployment method that essentially uses a Git post-receive hook to re-deploy the application with a simple git push. To set-up, create a bare repo and a working tree on the deploy host, and th

Re: Current state of the art in Web deployment?

2013-08-18 Thread Ray Miller
On 18 August 2013 17:21, John Jacobsen wrote: > On Aug 17, 2013, at 4:52 PM, Ray Miller wrote: > >> One option is simply to write an upstart script that invokes 'lein >> ring server-headless' and sit an apache or nginx proxy in front of it. >> That's how my website is currently running. Alternat

Re: Current state of the art in Web deployment?

2013-08-18 Thread Sean Corfield
On Sun, Aug 18, 2013 at 9:21 AM, John Jacobsen wrote: > My main concern was just the need to ssh into the server and run leiningen in > the background, as opposed to setting up a "real" server which starts at boot > time. I'm OK w/ wrapping 'lein ring server-headless' with Apache/Nginx, if > t

Re: Current state of the art in Web deployment?

2013-08-18 Thread Steven Degutis
I don't think there is a such thing as a "real" server. Any process that listens on a TCP port and talks HTTP is a legitimate server, regardless of when or how it's started up. Upstart is a fine way to run your server and make sure it's restarted if it dies. It's not hacky or unconventional, in fa

Re: Current state of the art in Web deployment?

2013-08-18 Thread John Jacobsen
Many thanks to everyone who replied about deploying a Web server to production. Specific replies: On Aug 17, 2013, at 6:51 PM, Mark Mandel wrote: > > On Sun, Aug 18, 2013 at 6:52 AM, John Jacobsen wrote: >> After some prototyping and development, we are now getting to the stage >> where "le

Re: Current state of the art in Web deployment?

2013-08-18 Thread Norman Richards
ty > will be a plus (am worried that e.g. Immutant / JBoss are too heavyweight). > If simplicity is the goal, then Immutant makes things pretty extremely easy while giving you some infrastructure to build on going forward. Our non-immutant deployment uses a custom jetty startup along with an u

Re: Current state of the art in Web deployment?

2013-08-17 Thread Mark Mandel
On Sun, Aug 18, 2013 at 6:52 AM, John Jacobsen wrote: > After some prototyping and development, we are now getting to the stage > where "lein run" and a Jetty server running from -main aren't going to cut > it. At the risk of asking a dumb question, but being quite new to Clojure, I don't mind -

Re: Current state of the art in Web deployment?

2013-08-17 Thread Ray Miller
On 17 August 2013 21:52, John Jacobsen wrote: > > So, what do all y'all do? What is a good lightweight but robust way to get > a fairly simple Compojure/Ring app backed by Datomic facing the outside > world? Not too worried about massive scalability at this point; simplicity > will be a plus (am

Current state of the art in Web deployment?

2013-08-17 Thread John Jacobsen
Hi folks, I'm starting work on a Clojure Web app and would like to get a sense for the current "standard" (if any) for deploying to production. In my case, I have an AWS Ubuntu instance, set up via Vagrant and Puppet, which mirrors some developer VMs. Datomic, leiningen etc. are running every

Re: deployment

2012-08-24 Thread George Oliver
egarding #3, if you're going to run Jetty standalone then Josh's link to Immutant seems like a good choice to consider. There's a couple of other interesting links I've found that might shed some light on .war's, Jetty, and other means of deployment: https://groups.google

Re: deployment

2012-08-24 Thread Dave Della Costa
https://github.com/ddellacosta/Clojure-under-Jetty-and-Apache Cheers, Dave 2012/8/18 George Oliver : hi, I'm a Clojure beginner working on a web project and starting to think about deployment. Currently I host my project in a local VM and have a small VPS for public testing. Looking down

Re: deployment

2012-08-24 Thread David Della Costa
thub.com/ddellacosta/Clojure-under-Jetty-and-Apache Cheers, Dave 2012/8/18 George Oliver : > hi, > > I'm a Clojure beginner working on a web project and starting to think about > deployment. Currently I host my project in a local VM and have a small VPS > for public testing. Loo

Re: deployment

2012-08-18 Thread Joshua Ballanco
On Fri, Aug 17, 2012 at 05:29:50PM -0700, George Oliver wrote: > hi, > > I'm a Clojure beginner working on a web project and starting to think about > deployment. Currently I host my project in a local VM and have a small VPS > for public testing. Looking down the road I&#x

deployment

2012-08-17 Thread George Oliver
hi, I'm a Clojure beginner working on a web project and starting to think about deployment. Currently I host my project in a local VM and have a small VPS for public testing. Looking down the road I'd like a more flexible hosting solution. It seems like the hosting landscape i

Re: Question on Clojure/Heroku deployment

2012-08-08 Thread Shantanu Kumar
> I don't think it's possible to get that error if you have a top-level > project.clj file, but if you send a tarball of the project to > phil.hagelb...@heroku.com I can take a look. Thanks Phil, I sent you a mail. Shantanu -- You received this message because you are subscribed to the Google G

Re: Question on Clojure/Heroku deployment

2012-08-08 Thread Phil Hagelberg
On Wed, Aug 8, 2012 at 1:58 PM, Shantanu Kumar wrote: > When I try to run `git push heroku master` I am getting this: > > -> Heroku receiving push > ! Heroku push rejected, no Cedar-supported app detected > > Can anybody help me with how to diagnose the problem? Is there a > checklist I c

Question on Clojure/Heroku deployment

2012-08-08 Thread Shantanu Kumar
Hi, When I try to run `git push heroku master` I am getting this: -> Heroku receiving push ! Heroku push rejected, no Cedar-supported app detected Can anybody help me with how to diagnose the problem? Is there a checklist I can try to verify from? I have a project.clj (works with Lein 1

Re: [ANN] Clojars deployment over https

2012-08-06 Thread Mikera
Thanks very much for checking this out! On Tuesday, 7 August 2012 12:31:32 UTC+8, Nelson Morris wrote: > > Are you using `mvn deploy` or does m2e have a button/gui for > deployment? I tried to find out if it had one, but the m2e website > leaves much to be desired, and searching g

Re: [ANN] Clojars deployment over https

2012-08-06 Thread Nelson Morris
ttp://stackoverflow.com/questions/11837961/maven-deployment-timeout-failure-to-generate-checksums > > Not sure if it is a clojars issue or a mistake of mine on the Maven side - > any tips? > >Mike. Are you using `mvn deploy` or does m2e have a button/gui for deployment? I tried

Re: [ANN] Clojars deployment over https

2012-08-06 Thread Mikera
Great stuff! I'm trying to use this functionality to deploy a library using Maven/Eclipse Juno on Windows and keep getting a timeout (but interestingly the jar and pom do make it up there) - see this SO question : http://stackoverflow.com/questions/11837961/maven-deployment-timeout-failu

[ANN] Clojars deployment over https

2012-06-16 Thread Nelson Morris
It is now possible to deploy to clojars through the standard maven deploy mechanism. The url is https://clojars.org/repo. There are instructions at https://github.com/ato/clojars-web/wiki/Pushing for configuring the various build tools. One highlight, if you are using lein 2.0.0-preview6 then `l

Re: {ANN} clojure-control---DSL for system admin and deployment with many remote machines

2011-07-24 Thread dennis
mith/node- > control). > Define clusters and tasks for system administration or code > deployment, then execute them on one or many remote machines. > Clojure-control depends only on OpenSSH and clojure on the local > control machine.Remote machines simply need a standard sshd daemon. >

{ANN} clojure-control---DSL for system admin and deployment with many remote machines

2011-07-24 Thread dennis
1.What is clojure-control? The idea came from node-control(https://github.com/tsmith/node- control). Define clusters and tasks for system administration or code deployment, then execute them on one or many remote machines. Clojure-control depends only on OpenSSH and clojure on the local control

Re: A large Clojure deployment

2009-04-08 Thread dysinger
zon EC2.  Just one server for > now, but designed to scale to more.  No RDBMS! > > I'm not using any Amazon services besides EC2 and S3, but I'm looking > at SQS and SimpleDB. > > Deployment was pretty easy; my only problems have been non-Clojure- > related.  For exampl

Re: A large Clojure deployment

2009-04-08 Thread Luc Prefontaine
Yep, looks like we where the first of hopefully many production implementations... It's quite funny, we are expanding the bus logic presently and without Clojure, I wonder how much effort and Java code it would have required us. We store rules in a database (hey Stuart, we really need one !:))),

Re: A large Clojure deployment

2009-04-08 Thread Abhishek Reddy
On 4/8/09, Baishampayan Ghose wrote: > > Excuse my ignorance, but which one is the first famous Clojure app? > That could be a reference to Luc Prefontaine's veterinarian hospital application. It got some press at InfoQ: http://www.infoq.com/news/2009/01/clojure_production -- Abhishek Reddy h

Re: A large Clojure deployment

2009-04-08 Thread Baishampayan Ghose
>> It's deployed on an Ubuntu server on Amazon EC2.  Just one server for >> now, but designed to scale to more.  No RDBMS! >> > > Awesome, Congratulations. I was hoping to be the 2nd "famous" Clojure > app, but it looks you beat me to it. :-) Excuse my ignorance, but which one is the first famous

Re: A large Clojure deployment

2009-04-07 Thread Stuart Sierra
There isn't an RDBMS mostly because I have an irrational prejudice against them. In this case, the content is mostly static. The Hadoop jobs process collection of source documents -- a few dozen GB, a big ol' mess of PDF, XML, JSON, even WordPerfect! -- and, many hours later, output two things:

Re: A large Clojure deployment

2009-04-07 Thread Allen Rohner
> It's deployed on an Ubuntu server on Amazon EC2.  Just one server for > now, but designed to scale to more.  No RDBMS! > Awesome, Congratulations. I was hoping to be the 2nd "famous" Clojure app, but it looks you beat me to it. :-) Can you go into detail about what/how you are persisting sinc

Re: A large Clojure deployment

2009-04-07 Thread Stuart Sierra
The java files were just stuff I'd already written in Java that I didn't feel like rewriting. -Stuart On Apr 7, 12:35 pm, Laurent PETIT wrote: > Waooh, congrats ! > > Surely an important step towards demonstrated to our employers the power and > presence of clojure ! > > Could you elaborate on

Re: A large Clojure deployment

2009-04-07 Thread Laurent PETIT
Waooh, congrats ! Surely an important step towards demonstrated to our employers the power and presence of clojure ! Could you elaborate on the rationale behind using java or clojure files ? In particular, was it more due to a (some) limitation(s) in the current abilities to generate java from cl

Re: A large Clojure deployment

2009-04-07 Thread Stuart Sierra
Hi Sean, It's deployed on an Ubuntu server on Amazon EC2. Just one server for now, but designed to scale to more. No RDBMS! I'm not using any Amazon services besides EC2 and S3, but I'm looking at SQS and SimpleDB. Deployment was pretty easy; my only problems have been non-C

Re: A large Clojure deployment

2009-04-07 Thread Michael Wood
On Tue, Apr 7, 2009 at 5:40 PM, David Nolen wrote: > Congrats! > Perhaps soon there should be a Projects Using Clojure section on the main > site? > Good way to get the word out that people are using Clojure in the "real > world" Sounds like a good idea to me. Maybe a "Powered by Clojure" logo

Re: A large Clojure deployment

2009-04-07 Thread David Nolen
reciate this. > > Can you comment on your hardware stack? How many servers are you > using? Is there an RDBMS in there somewhere? > > How was deployment? > > Looks awesome, thanks for sharing! > > On Apr 7, 10:41 am, Stuart Sierra wrote: > > Here: http://www.altl

Re: A large Clojure deployment

2009-04-07 Thread Sean
Okay wow... it'll take some time to fully appreciate this. Can you comment on your hardware stack? How many servers are you using? Is there an RDBMS in there somewhere? How was deployment? Looks awesome, thanks for sharing! On Apr 7, 10:41 am, Stuart Sierra wrote: > Her

A large Clojure deployment

2009-04-07 Thread Stuart Sierra
Here: http://www.altlaw.org/ About 4000 lines of Clojure code, 2500 of Java, powering a web site with well over a million pages, averaging around 10,000 visitors a day. Some of what I'm using: Restlet StringTemplate Solr Hadoop Apache Java Commons markdownj cpdetector JRuby Most of the code is