I know that in the case of ETL it can not be done with one file, but
anyway - as simple as possible. I've learned that from my tutorials
for Cubes - I thought they were simple enough and obvious. Yeah, sure,
for me and myself.
http://docs.sqlalchemy.org/en/latest/
It is mostly "how-to" based with separate class reference. I do not
need to know all the switches/parameters/methods/whatever, I just want
to play to get the idea and then apply it to my data. Best thing is
commented examples or commented whole example simple work-flow.
> - centralized place (http://www.activewarehouse.info) which will need someI do not think this should be a priority, as google yields pretty good
> SEO and links to rdoc etc
results for "ruby etl" ;-)
I think aw-etl has plenty of resources available, just needs good
"quick start" and 3-4 incremental primitive examples. Also think of
those who need ETL but do not know what ETL patterns are. "Why I
should use this instead of bunch of SQL scripts?"
-- Thibaut--
You received this message because you are subscribed to the Google Groups "ActiveWarehouse Discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/activewarehouse-discuss/-/AFgUbJPjjZ4J.
To post to this group, send email to activewareh...@googlegroups.com.
To unsubscribe from this group, send email to activewarehouse-d...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/activewarehouse-discuss?hl=en.
I think some people find activewarehouse-etl and others gens from google, it would be cool if every project at the first page send the user to the website http://www.activewarehouse.info/ that should have a link to the official documentation, so that guys can know if it reallyworks for their problems.
At the current documentation they can learn about how to install, I think there should have something about how to update gem from a not realesed gem yet, like at my case that I were using the gem not released 1.0.0rc and the one released was the 0.9.5.Must of my problems were configuring the environment, I think put some links to expected errors that happens with the pre requisits
As Stefan said before short levels of exemples make it easy to understand...Teach how to custom or rack the etl files I mean, what happens like... you can put here some ruby or rails code then you can do whatever you want.Actually im working on my own project then I dont have to much time but in a while im going to send a lot of ex that you can do with source in and out with mysql and kind of exemples with querys..
Well, I can help with front end and the website http://www.activewarehouse.info/ if you trying do something can count on me.
A little problem :Dwhen I went to this linkthe Processing text goes like (wrong version)activewarehouse-etl (0.9.1) is being processed. You'll be redirected when the pages are built, it shouldn't take much longer.
Documentation on installing the gem from the current github master is
becoming essential to me. Could you explain it?
--
You received this message because you are subscribed to the Google Groups "ActiveWarehouse Discuss" group.
To view this discussion on the web visit https://groups.google.com/d/msg/activewarehouse-discuss/-/4h26lTQNyFYJ.
To post to this group, send email to activewareh...@googlegroups.com.
To unsubscribe from this group, send email to activewarehouse-d...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/activewarehouse-discuss?hl=en.
Thibaut, Thank you for your replies, while I have not had time to sit down and go through them yet.
My initial thought on removing .ctl all together from the filename is no, I like the designation between batch and ctl files.I would also extend the .rb to batch files:Control file example: control_file.ctl.rbbatch file example: batch_file.ebf.rb
I am using OS X for development and Ubuntu 10.04 for prod deployment. I am going to document my issues and suggestions for documentation once I get the current master set up and running on my dev machine. I'm excited, it will be my first open source contribution, even though it is just some documentation, I suspect if activewarehouse etl works for me I will be trying to contribute to the actual code base, at first probably in the form of some custom transformations i'm working on.If there are any code related changes that you want or need some help with I am looking for some direction on what to work on for active warehouse etl.
I've installed the gem to my computer using 'gem install activewarehouse-etl --pre' from your most recent instruction, however, the first instructions seem like they are for rails.
When I am using bundler to run etl, do I have to start the rails server or is being in the rails app root enough?
I tried this on Windows, so for now I will chalk step 7 error up to windows. But I wanted to document my procedure and get your feedback on if my steps are correct for a rails installation, this can serve as the working instructions for Rails installation.
Chris
- 'rails new etltester -d mysql'
- gemfile added: 'gem 'activewarehouse-etl', :git => "git://github.com/activewarehouse/activewarehouse-etl.git"'
- Question: when I push my acceptable file-name changes (I think I have them figured out) to my fork of aw-etl will my gemfile line be::git => "git://github.com/chrisgogreen/activewarehouse-etl.git"?
- created folder 'etl' in rails root resulting in etl directory path of 'etltester/etl'
- placed two files: 'megamillions.csv' and 'megamillions.ctl' in directory 'etltester/etl'
- added this database configuration to the rails generated database.yml
etl_execution:
adapter: mysql2
encoding: utf8
reconnect: false
database: etl_execution
pool: 5
username: root
password: secret
host: localhost- From the root or the rails app i run 'bundle exec etl etl/megamillions.ctl'
- Here is where I get an access denied for root user, I verified my password in config/database.yml is correct.
I tried this on Windows, so for now I will chalk step 7 error up to windows. But I wanted to document my procedure and get your feedback on if my steps are correct for a rails installation, this can serve as the working instructions for Rails installation.
--
You received this message because you are subscribed to the Google Groups "ActiveWarehouse Discuss" group.