pushing a node app to cloud foundry
play

pushing a node app to Cloud Foundry You won't believe what really - PowerPoint PPT Presentation

pushing a node app to Cloud Foundry You won't believe what really happens! Patrick Mueller - IBMer - @pmuellr - muellerware.org http://pmuellr.github.io/slides/2014/04-what-happens-when-you-push-a-node-app 1 / 42 Patrick Mueller developer


  1. pushing a node app to Cloud Foundry You won't believe what really happens! Patrick Mueller - IBMer - @pmuellr - muellerware.org http://pmuellr.github.io/slides/2014/04-what-happens-when-you-push-a-node-app 1 / 42

  2. Patrick Mueller developer advocate at IBM BlueMix Platform-as-a-Service and node.js Raleigh, NC more of my slides: http://pmuellr.github.io/slides 2 / 42

  3. what is BlueMix? IBM Platform-as-a-Service product Runs node apps! Runs any apps! Based on the Cloud Foundry open source project. For more info: https://bluemix.net 3 / 42

  4. attribution JS Logo from https://github.com/voodootikigod/logo.js Slide framework from http://remarkjs.com/ GlyphIcons Free from http://glyphicons.com/ Cloud Foundry icon from somewhere. 4 / 42

  5. overview 1. the process 2. the files 5 / 42

  6. the process 6 / 42

  7. the process 1. determine files to upload 2. upload files to staging machine 3. select buildpack 4. run buildpack on staging machine 5. store buildpack output as a droplet 6. start app with the new droplet 7 / 42

  8. the cf push command notes on usage run cf help push on the command-line for help we will be running the command cf push in the directory with the node app, with no other command line arguments or options. 8 / 42

  9. determine files to upload By default cf push will collect all the files in your current directory, recursively. Prevent files from being uploaded by specifying them in your .cfignore file - more on that in later slides. You will want to make sure you don't upload: files that aren't used when the app is running files with sensitive data, unless you know what you are doing 9 / 42

  10. upload files to staging machine The files are placed in a compressed archive, and uploaded to a staging machine for further processing. 10 / 42

  11. select buildpack Once the files are uploaded to a staging machine, a buildpack is selected. The existance of a package.json is what the node buildpack uses to identify these files as a node application. 11 / 42

  12. run buildpack on staging machine The buildpack compile step is run, which will: download an appropriate version of the node runtime, and npm run npm install --production to ensure the required modules are loaded run npm rebuild to recompile native node modules, if required 12 / 42

  13. store buildpack output as a droplet The buildpack output will consist of: a node runtime your application files node packages in the node_modules directory, built for the correct platform This will be placed in a compressed archive as a "droplet" 13 / 42

  14. start app with the new droplet A Droplet Execution Agent (DEA) is assigned to run the droplet. The droplet is unpacked, and the start command is used to start the application. 14 / 42

  15. staging optimizations For node, a significant amount of time is spent on the staging machine to run the npm install command. And it turns out, it's usually installing the same packages, each time. To optimize this, the modules installed by the staging machine are saved between cf push invocations, and reused for subsequent cf push invocations. A fresh npm install will be run if on a subsequent cf push , the contents of your package.json file changes. 15 / 42

  16. common problems during staging or application start did you create a Procfile to indicate the start command? is npm down? this could cause staging to fail; check on your local machine did you check for errors / failures in your startup code? is there lots of logging in your startup code? 16 / 42

  17. the files 17 / 42

  18. the files sample hello world program .gitignore .cfignore Procfile manifest.yml node_modules/... package.json server.js 18 / 42

  19. .cfignore 19 / 42

  20. .cfignore like a .gitignore file indicates files to NOT upload to Cloud Foundry .git , .svn , and .darcs files ignored by default 20 / 42

  21. .cfignore sample node_modules bower_components tmp for more info, see the cf docs 21 / 42

  22. Procfile 22 / 42

  23. Procfile patterned off of Heroku's Procfile will make your app more compatible with Heroku won't need to use the "start command" option only ever contains one line web: node [main program here] 23 / 42

  24. manifest.yml 24 / 42

  25. rules of pushing apps 25 / 42

  26. rules of pushing apps 1. always use a manifest.yml file 26 / 42

  27. rules of pushing apps 1. always use a manifest.yml file 2. always use a manifest.yml file 27 / 42

  28. manifest.yml provides initial settings for your app, including app name, as cf knows it host name, for the final URL to the app RAM requirements cf services to bind to etc 28 / 42

  29. manifest.yml sample --- applications: - name: hello-node host: hello-node-${random-word} memory: 128M for more info, see the cf docs Sample applications use often use ${random-word} in the host property, so that your app's URL doesn't collide with someone else's. 29 / 42

  30. manifest.yml generator Some YAML-challenged folks, such as myself, might want to use the cfmanigen web application (running on BlueMix) to generate your manifest.yml files. This app gives you a fill-in-the-blank form, for entries in the manifest, and then generates the manifest for you in a click of a button. For more information, see the DeveloperWorks blog post which discusses the cfmanigen app. 30 / 42

  31. node_modules/... 31 / 42

  32. node_modules/... The node_modules directory is where npm installs packages for your application. You can choose to upload your node_modules directory, along with your app, or to NOT upload them. 32 / 42

  33. node_modules/... uploading pros: more control over the modules used in the app faster "staging" since modules are already available cons: longer upload for staging process, for each cf push 33 / 42

  34. node_modules/... uploading recommend: not uploading controlled via: node_modules entry in .cfignore file 34 / 42

  35. package.json 35 / 42

  36. rules of pushing apps 1. always use a manifest.yml file 2. always use a manifest.yml file 36 / 42

  37. rules of pushing apps 1. always use a manifest.yml file 2. always use a manifest.yml file 3. always use a package.json file 37 / 42

  38. rules of pushing apps 1. always use a manifest.yml file 2. always use a manifest.yml file 3. always use a package.json file 4. always use a package.json file 38 / 42

  39. package.json nothing special needed for Cloud Foundry! file MUST exist, or app will not be recognized as a "node" application during staging may need/want to tweak for running on Cloud Foundry machines: set specific version of node to use; see the note at Pivotal concerning use of some native modules for node. 39 / 42

  40. server.js 40 / 42

  41. server.js Your application code. For the sample hello world server, that is just this single file. You will likely have other files and directories containing the code for your app. 41 / 42

  42. fin 42 / 42

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend