The Artima Developer Community
Sponsored Link

Articles Forum
Concurrency as an Externalized Aspect

5 replies on 1 page. Most recent reply: May 30, 2007 9:27 AM by Patrick Leonard

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 5 replies on 1 page
Frank Sommers

Posts: 2642
Nickname: fsommers
Registered: Jan, 2002

Concurrency as an Externalized Aspect Posted: May 25, 2007 3:00 PM
Reply to this message Reply
Advertisement
Patrick Leonard discusses the challenges of scaling an application on multicore CPUs, automatically applying concurrency to a business application, software pipelines, and why good design dictates the separation of an application's concurrency model from the rest of an application's code.

http://www.artima.com/lejava/articles/javaone_2007_patrick_leonard.html

What do you think about Patrick Leonard's views on externalizing concurrency?


Morgan Conrad

Posts: 307
Nickname: miata71
Registered: Mar, 2006

Re: Concurrency as an Externalized Aspect Posted: May 25, 2007 5:47 PM
Reply to this message Reply
"Thirty years ago, it was very common to embed the data model in application logic. Then we figured out that it was a good idea to have a database that was outside the application. That way, you separate the data model from the application logic"

Not sure I understand. If you are saying that the data persistance should be outside of the application logic, I can accept that. If you are saying that the domain model of the data should be separated from the logic, then you are saying that Object Oriented Programming is wrong and we should go back to COBOL, and you'll get a lot of disagreement.

Next, I need to listen to the MP3...

Achilleas Margaritis

Posts: 674
Nickname: achilleas
Registered: Feb, 2005

Re: Concurrency as an Externalized Aspect Posted: May 28, 2007 5:25 AM
Reply to this message Reply
> What do you think about Patrick Leonard's views on
> externalizing concurrency?

I think that he needs to look at the Actor model and spend some time with Erlang.

The concurrency model of threads and mutexes should be abandoned, because it does not scale well with program complexity. The Actor model is a vastly better approach that allows for highly complex concurrency models with minimal effort.

Morgan Conrad

Posts: 307
Nickname: miata71
Registered: Mar, 2006

Re: Concurrency as an Externalized Aspect Posted: May 28, 2007 10:26 AM
Reply to this message Reply
Having listened to the MP3, I somewhat agree with Achilleas. If you use threading & synchronization etc. it requires precision, thought, mini design reviews, and a programmer who knows what they are doing, not somebody else writing XML configuration files, should handle that.

I can imagine configuration working for higher lever concurrency aspects. Today we make things Runnable and run them and let the JVM try to figure it all out to make things fast. But error handling, events / progress / cancel, etc. get very very messy. Achilleas - do Actors help there?

Patrick Leonard

Posts: 2
Nickname: pleonard
Registered: May, 2007

Re: Concurrency as an Externalized Aspect Posted: May 30, 2007 9:26 AM
Reply to this message Reply
> I think that he needs to look at the Actor model and spend
> some time with Erlang.
>
> The concurrency model of threads and mutexes should be
> abandoned, because it does not scale well with program
> complexity. The Actor model is a vastly better approach
> that allows for highly complex concurrency models with
> minimal effort.

The Actor model is interesting, and can be instructive to this conversation. I think that you will find some conceptual similarities between the Actor model and Software Pipelines. In Software Pipelines, the Distributor (actor) manages messages across Pipelines (addresses).

Patrick Leonard

Posts: 2
Nickname: pleonard
Registered: May, 2007

Re: Concurrency as an Externalized Aspect Posted: May 30, 2007 9:27 AM
Reply to this message Reply
> "Thirty years ago, it was very common to embed the data
> model in application logic. Then we figured out that it
> was a good idea to have a database that was outside the
> application. That way, you separate the data model from
> the application logic"
>
> Not sure I understand. If you are saying that the data
> persistance should be outside of the application
> logic, I can accept that. If you are saying that the
> domain model of the data should be separated from the
> logic, then you are saying that Object Oriented
> Programming is wrong and we should go back to COBOL, and
> you'll get a lot of disagreement.
>
> Next, I need to listen to the MP3...

I do certainly agree that externalizing the data model from the application is primarily focused on persistence, and that object oriented programming principles are sound. However, with SOA we now have a new take on abstraction of data model from business logic with the Schema/WSDL interface to services.

Flat View: This topic has 5 replies on 1 page
Topic: Network.com's Rohit Valia on On-Demand Batch Applications Previous Topic   Next Topic Topic: Traits of a Security-Conscious Developer

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use